From bbd6e953cf3831738c071b6b5c33496c8ce8b14d Mon Sep 17 00:00:00 2001 From: Calum Smith Date: Wed, 3 Jan 2024 18:43:54 -0500 Subject: [PATCH 1/7] feat: support HTML entities in JSX text/attributes JSX text and attributes support HTML character references (a.k.a. entities), and don't support ECMAScript string escape sequences. Although the [spec] calls it "historical" and threatens to change it, it _is_ in the spec, and the spec is pretty stable at this point. In changing this, I landed back on an idea that @maxbrunsfeld suggested in a [PR review] some time ago: having separate `string` and `jsx_string` nodes, and aliasing `jsx_string` to `string` for consumers' convenience. At that time, having two different node types was deemed unnecessary, but this adds a second, more substantive difference between the two, so I've brought the idea back, and stopped allowing invalid newlines in JS string literals, which is invalid in both JS and TS. [spec]: https://facebook.github.io/jsx/#sec-jsx-string-characters [PR review]: https://github.com/tree-sitter/tree-sitter-javascript/pull/140#discussion_r503399344 --- grammar.js | 48 ++++++++++++++++++++++++++++++-------- test/corpus/literals.txt | 50 +++++++++++++++++++++++++++------------- 2 files changed, 72 insertions(+), 26 deletions(-) diff --git a/grammar.js b/grammar.js index fc5291e4..4217be23 100644 --- a/grammar.js +++ b/grammar.js @@ -607,10 +607,15 @@ module.exports = grammar({ // Should not contain new lines and should not start or end with a space jsx_text: _ => choice( - /[^{}<>\n ]([^{}<>\n]*[^{}<>\n ])?/, + /[^{}<>\n& ]([^{}<>\n&]*[^{}<>\n& ])?/, /\/\/[^\n]*/, ), + // An entity can be named, numeric (decimal), or numeric (hexadecimal). The + // longest entity name is 29 characters long, and the HTML spec says that + // no more will ever be added. + html_character_reference: _ => /&(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30});/, + jsx_expression: $ => seq( '{', optional(choice( @@ -623,6 +628,7 @@ module.exports = grammar({ _jsx_child: $ => choice( $.jsx_text, + $.html_character_reference, $._jsx_element, $.jsx_expression, ), @@ -682,8 +688,36 @@ module.exports = grammar({ )), ), + _jsx_string: $ => choice( + seq( + '"', + repeat(choice( + alias($.unescaped_double_jsx_string_fragment, $.string_fragment), + $.html_character_reference, + )), + '"', + ), + seq( + '\'', + repeat(choice( + alias($.unescaped_single_jsx_string_fragment, $.string_fragment), + $.html_character_reference, + )), + '\'', + ), + ), + + // Workaround to https://github.com/tree-sitter/tree-sitter/issues/1156 + // We give names to the token() constructs containing a regexp + // so as to obtain a node in the CST. + // + unescaped_double_jsx_string_fragment: _ => token.immediate(prec(1, /[^"&]+/)), + + // same here + unescaped_single_jsx_string_fragment: _ => token.immediate(prec(1, /[^'&]+/)), + _jsx_attribute_value: $ => choice( - $.string, + alias($._jsx_string, $.string), $.jsx_expression, $._jsx_element, ), @@ -909,12 +943,6 @@ module.exports = grammar({ // Primitives // - // Here we tolerate unescaped newlines in double-quoted and - // single-quoted string literals. - // This is legal in typescript as jsx/tsx attribute values (as of - // 2020), and perhaps will be valid in javascript as well in the - // future. - // string: $ => choice( seq( '"', @@ -938,10 +966,10 @@ module.exports = grammar({ // We give names to the token() constructs containing a regexp // so as to obtain a node in the CST. // - unescaped_double_string_fragment: _ => token.immediate(prec(1, /[^"\\]+/)), + unescaped_double_string_fragment: _ => token.immediate(prec(1, /[^"\\\r\n]+/)), // same here - unescaped_single_string_fragment: _ => token.immediate(prec(1, /[^'\\]+/)), + unescaped_single_string_fragment: _ => token.immediate(prec(1, /[^'\\\r\n]+/)), escape_sequence: _ => token.immediate(seq( '\\', diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index 251a8f5d..b5a54456 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -108,22 +108,6 @@ world'; (expression_statement (string (string_fragment) (escape_sequence) (string_fragment)))) -============================================================ -Non-standard unescaped newlines legal in TSX attributes -============================================================ - -"hello -world"; - -'hello -world'; - ---- - -(program - (expression_statement (string (string_fragment))) - (expression_statement (string (string_fragment)))) - ========================================================= JSX strings with unescaped newlines for TSX attributes ========================================================= @@ -151,3 +135,37 @@ JSX strings with unescaped newlines for TSX attributes (jsx_attribute (property_identifier) (string (string_fragment)))) (jsx_closing_element (identifier))))) + +=============================================== +JSX with HTML character references (entities) +=============================================== + +foo   bar; + +foo; + +---- + +(program + (expression_statement + (jsx_element + (jsx_opening_element + (identifier)) + (jsx_text) + (html_character_reference) + (jsx_text) + (jsx_closing_element + (identifier)))) + (expression_statement + (jsx_element + (jsx_opening_element + (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (html_character_reference) + (string_fragment)))) + (jsx_text) + (jsx_closing_element + (identifier))))) From cf4efb166a5506ab7a9a216ab180ac5f3475e229 Mon Sep 17 00:00:00 2001 From: Julian Rosse Date: Sat, 26 Aug 2023 00:03:39 -0400 Subject: [PATCH 2/7] feat: add field names to nested_identifier rule --- grammar.js | 4 +- test/corpus/expressions.txt | 144 ++++++++++++++++++------------------ 2 files changed, 74 insertions(+), 74 deletions(-) diff --git a/grammar.js b/grammar.js index 4217be23..02f505a3 100644 --- a/grammar.js +++ b/grammar.js @@ -650,9 +650,9 @@ module.exports = grammar({ ), nested_identifier: $ => prec('member', seq( - choice($.identifier, alias($.nested_identifier, $.member_expression)), + field('object', choice($.identifier, alias($.nested_identifier, $.member_expression))), '.', - alias($.identifier, $.property_identifier), + field('property', alias($.identifier, $.property_identifier)), )), jsx_namespace_name: $ => seq($._jsx_identifier, ':', $._jsx_identifier), diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 12da64f7..c9750228 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -2132,120 +2132,120 @@ i = {...children} (program (variable_declaration (variable_declarator - (identifier) - (jsx_element - (jsx_opening_element - (identifier)) - (jsx_closing_element - (identifier))))) + name: (identifier) + value: (jsx_element + open_tag: (jsx_opening_element + name: (identifier)) + close_tag: (jsx_closing_element + name: (identifier))))) (expression_statement (assignment_expression - (identifier) - (jsx_element - (jsx_opening_element - (member_expression - (identifier) - (property_identifier))) - (jsx_closing_element - (member_expression - (identifier) - (property_identifier)))))) + left: (identifier) + right: (jsx_element + open_tag: (jsx_opening_element + name: (member_expression + object: (identifier) + property: (property_identifier))) + close_tag: (jsx_closing_element + name: (member_expression + object: (identifier) + property: (property_identifier)))))) (expression_statement (assignment_expression - (identifier) - (jsx_element - (jsx_opening_element) + left: (identifier) + right: (jsx_element + open_tag: (jsx_opening_element) (jsx_self_closing_element - (identifier)) - (jsx_closing_element)))) + name: (identifier)) + close_tag: (jsx_closing_element)))) (expression_statement (assignment_expression - (identifier) - (jsx_element - (jsx_opening_element - (identifier)) + left: (identifier) + right: (jsx_element + open_tag: (jsx_opening_element + name: (identifier)) (jsx_self_closing_element - (identifier)) - (jsx_closing_element - (identifier))))) + name: (identifier)) + close_tag: (jsx_closing_element + name: (identifier))))) (expression_statement (assignment_expression - (identifier) - (jsx_self_closing_element - (identifier) - (jsx_attribute + left: (identifier) + right: (jsx_self_closing_element + name: (identifier) + attribute: (jsx_attribute (property_identifier))))) (expression_statement (assignment_expression - (identifier) - (jsx_self_closing_element - (identifier) - (jsx_attribute + left: (identifier) + right: (jsx_self_closing_element + name: (identifier) + attribute: (jsx_attribute (property_identifier) (string (string_fragment))) - (jsx_attribute + attribute: (jsx_attribute (property_identifier) (jsx_expression (number))) - (jsx_attribute + attribute: (jsx_attribute (property_identifier) (string (string_fragment))) - (jsx_attribute + attribute: (jsx_attribute (property_identifier))))) (expression_statement (assignment_expression - (identifier) - (jsx_self_closing_element - (identifier) - (jsx_attribute + left: (identifier) + right: (jsx_self_closing_element + name: (identifier) + attribute: (jsx_attribute (property_identifier) (jsx_expression (member_expression - (identifier) - (property_identifier))))))) + object: (identifier) + property: (property_identifier))))))) (expression_statement (assignment_expression - (identifier) - (jsx_element - (jsx_opening_element - (identifier) - (jsx_attribute + left: (identifier) + right: (jsx_element + open_tag: (jsx_opening_element + name: (identifier) + attribute: (jsx_attribute (property_identifier) (jsx_expression (binary_expression - (binary_expression - (member_expression - (member_expression - (this) - (property_identifier)) - (property_identifier)) - (string + left: (binary_expression + left: (member_expression + object: (member_expression + object: (this) + property: (property_identifier)) + property: (property_identifier)) + right: (string (string_fragment))) - (unary_expression - (member_expression - (member_expression - (this) - (property_identifier)) - (property_identifier))))))) - (jsx_closing_element - (identifier))))) + right: (unary_expression + argument: (member_expression + object: (member_expression + object: (this) + property: (property_identifier)) + property: (property_identifier))))))) + close_tag: (jsx_closing_element + name: (identifier))))) (expression_statement (assignment_expression - (identifier) - (jsx_element - (jsx_opening_element - (jsx_namespace_name + left: (identifier) + right: (jsx_element + open_tag: (jsx_opening_element + name: (jsx_namespace_name (identifier) (identifier)) - (jsx_attribute + attribute: (jsx_attribute (property_identifier) (jsx_expression))) (jsx_expression (spread_element (identifier))) - (jsx_closing_element - (jsx_namespace_name + close_tag: (jsx_closing_element + name: (jsx_namespace_name (identifier) (identifier))))))) From 91c30ca9b20539facaf2e57c91a5b790f3e25ea8 Mon Sep 17 00:00:00 2001 From: Mark Skelton Date: Mon, 20 Nov 2023 19:54:00 -0600 Subject: [PATCH 3/7] feat: add support for import attributes --- grammar.js | 3 +++ test/corpus/statements.txt | 5 +++++ test/highlight/imports.js | 4 ++++ 3 files changed, 12 insertions(+) create mode 100644 test/highlight/imports.js diff --git a/grammar.js b/grammar.js index 02f505a3..2dcf64e3 100644 --- a/grammar.js +++ b/grammar.js @@ -192,6 +192,7 @@ module.exports = grammar({ seq($.import_clause, $._from_clause), field('source', $.string), ), + optional($.import_attribute), $._semicolon, ), @@ -234,6 +235,8 @@ module.exports = grammar({ ), ), + import_attribute: $ => seq('with', $.object), + // // Statements // diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index f856bb55..c1083935 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -70,6 +70,7 @@ import defaultMember, { member1, member2 as alias2 } from "module-name"; import defaultMember, * as name from "module-name"; import "module-name"; import { member1 , member2 as alias2, } from "module-name"; +import pkg from "./package.json" with { type: "json" }; import("a"); import("a").then((m) => {}); import.meta.url; @@ -157,6 +158,10 @@ import { b } from (identifier)))) (string (string_fragment))) + (import_statement + (import_clause (identifier)) (string (string_fragment)) + (import_attribute (object + (pair (property_identifier) (string (string_fragment)))))) (expression_statement (call_expression (import) diff --git a/test/highlight/imports.js b/test/highlight/imports.js new file mode 100644 index 00000000..f1db2176 --- /dev/null +++ b/test/highlight/imports.js @@ -0,0 +1,4 @@ +import pkg from "./package.json" with { type: "json" }; +// <- keyword +// ^ string +// ^ keyword From a2318d2be7641e558349d38960a9596b2c641870 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 20:04:35 -0500 Subject: [PATCH 4/7] chore: don't greedily parse automatic semis if an `=` is present --- src/scanner.c | 6 +++--- test/corpus/statements.txt | 22 ++++++++++++++++++---- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/src/scanner.c b/src/scanner.c index fca8d3a5..a25af2fe 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -100,7 +100,7 @@ static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, boo if (!scan_whitespace_and_comments(lexer, scanned_comment)) { return false; } - if (comment_condition && lexer->lookahead != ',') { + if (comment_condition && lexer->lookahead != ',' && lexer->lookahead != '=') { return true; } } @@ -225,7 +225,7 @@ static bool scan_ternary_qmark(TSLexer *lexer) { return false; } -static bool scan_closing_comment(TSLexer *lexer) { +static bool scan_html_comment(TSLexer *lexer) { while (iswspace(lexer->lookahead) || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { skip(lexer); } @@ -284,7 +284,7 @@ bool tree_sitter_javascript_external_scanner_scan(void *payload, TSLexer *lexer, } if (valid_symbols[HTML_COMMENT] && !valid_symbols[LOGICAL_OR] && !valid_symbols[ESCAPE_SEQUENCE]) { - return scan_closing_comment(lexer); + return scan_html_comment(lexer); } return false; diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index c1083935..8e6f23c4 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -159,9 +159,16 @@ import { b } from (string (string_fragment))) (import_statement - (import_clause (identifier)) (string (string_fragment)) - (import_attribute (object - (pair (property_identifier) (string (string_fragment)))))) + (import_clause + (identifier)) + (string + (string_fragment)) + (import_attribute + (object + (pair + (property_identifier) + (string + (string_fragment)))))) (expression_statement (call_expression (import) @@ -901,6 +908,8 @@ let foo = bar // this is a comment ? 'baz' : 'thud'; +let a /* >_< */ = 1 + --- (program @@ -938,7 +947,12 @@ let foo = bar (string (string_fragment)) (string - (string_fragment)))))) + (string_fragment))))) + (lexical_declaration + (variable_declarator + (identifier) + (comment) + (number)))) ============================================ Comments with asterisks From 30eb93051cdce79966d690a795a3b2b2fea30458 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 20:44:19 -0500 Subject: [PATCH 5/7] fix: windows newline escapes --- grammar.js | 1 + 1 file changed, 1 insertion(+) diff --git a/grammar.js b/grammar.js index 2dcf64e3..6b2c3cc2 100644 --- a/grammar.js +++ b/grammar.js @@ -982,6 +982,7 @@ module.exports = grammar({ /x[0-9a-fA-F]{2}/, /u[0-9a-fA-F]{4}/, /u{[0-9a-fA-F]+}/, + /[\r?][\n\u2028\u2029]/, ), )), From 03e0a0a96016d850fc77aabc75da22be5090c3f3 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 20:25:10 -0500 Subject: [PATCH 6/7] chore: generate --- src/grammar.json | 195 +- src/node-types.json | 55 +- src/parser.c | 147798 +++++++++++++++++++++-------------------- 3 files changed, 75113 insertions(+), 72935 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index f78e2766..fb83f44f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -359,6 +359,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "import_attribute" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_semicolon" @@ -547,6 +559,19 @@ } ] }, + "import_attribute": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "with" + }, + { + "type": "SYMBOL", + "name": "object" + } + ] + }, "statement": { "type": "CHOICE", "members": [ @@ -2438,7 +2463,7 @@ "members": [ { "type": "PATTERN", - "value": "[^{}<>\\n ]([^{}<>\\n]*[^{}<>\\n ])?" + "value": "[^{}<>\\n& ]([^{}<>\\n&]*[^{}<>\\n& ])?" }, { "type": "PATTERN", @@ -2446,6 +2471,10 @@ } ] }, + "html_character_reference": { + "type": "PATTERN", + "value": "&(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30});" + }, "jsx_expression": { "type": "SEQ", "members": [ @@ -2491,6 +2520,10 @@ "type": "SYMBOL", "name": "jsx_text" }, + { + "type": "SYMBOL", + "name": "html_character_reference" + }, { "type": "SYMBOL", "name": "_jsx_element" @@ -2579,35 +2612,43 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "ALIAS", - "content": { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "nested_identifier" + "name": "identifier" }, - "named": true, - "value": "member_expression" - } - ] + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" + } + ] + } }, { "type": "STRING", "value": "." }, { - "type": "ALIAS", + "type": "FIELD", + "name": "property", "content": { - "type": "SYMBOL", - "name": "identifier" - }, - "named": true, - "value": "property_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + } } ] } @@ -2773,12 +2814,112 @@ } ] }, + "_jsx_string": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_double_jsx_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "html_character_reference" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_single_jsx_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "html_character_reference" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + } + ] + }, + "unescaped_double_jsx_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\"&]+" + } + } + }, + "unescaped_single_jsx_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^'&]+" + } + } + }, "_jsx_attribute_value": { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "string" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_string" + }, + "named": true, + "value": "string" }, { "type": "SYMBOL", @@ -4876,7 +5017,7 @@ "value": 1, "content": { "type": "PATTERN", - "value": "[^\"\\\\]+" + "value": "[^\"\\\\\\r\\n]+" } } }, @@ -4887,7 +5028,7 @@ "value": 1, "content": { "type": "PATTERN", - "value": "[^'\\\\]+" + "value": "[^'\\\\\\r\\n]+" } } }, @@ -4922,6 +5063,10 @@ { "type": "PATTERN", "value": "u{[0-9a-fA-F]+}" + }, + { + "type": "PATTERN", + "value": "[\\r?][\\n\\u2028\\u2029]" } ] } diff --git a/src/node-types.json b/src/node-types.json index 798bb75a..ec93c93c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1694,6 +1694,21 @@ "named": true, "fields": {} }, + { + "type": "import_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "object", + "named": true + } + ] + } + }, { "type": "import_clause", "named": true, @@ -1763,9 +1778,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "import_attribute", + "named": true + }, { "type": "import_clause", "named": true @@ -1861,6 +1880,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "html_character_reference", + "named": true + }, { "type": "jsx_element", "named": true @@ -2061,7 +2084,7 @@ "fields": { "object": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "expression", @@ -2085,7 +2108,7 @@ }, "property": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "private_property_identifier", @@ -2097,24 +2120,6 @@ } ] } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "member_expression", - "named": true - }, - { - "type": "property_identifier", - "named": true - } - ] } }, { @@ -2614,6 +2619,10 @@ "type": "escape_sequence", "named": true }, + { + "type": "html_character_reference", + "named": true + }, { "type": "string_fragment", "named": true @@ -3409,6 +3418,10 @@ "type": "hash_bang_line", "named": true }, + { + "type": "html_character_reference", + "named": true + }, { "type": "html_comment", "named": true diff --git a/src/parser.c b/src/parser.c index 8704ce6d..f48fd50d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2816 +#define STATE_COUNT 2861 #define LARGE_STATE_COUNT 464 -#define SYMBOL_COUNT 260 +#define SYMBOL_COUNT 267 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 133 +#define TOKEN_COUNT 136 #define EXTERNAL_TOKEN_COUNT 6 #define FIELD_COUNT 38 #define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 107 +#define PRODUCTION_ID_COUNT 106 enum ts_symbol_identifiers { sym_identifier = 1, @@ -36,22 +36,22 @@ enum ts_symbol_identifiers { anon_sym_RBRACE = 9, anon_sym_import = 10, anon_sym_from = 11, - anon_sym_var = 12, - anon_sym_let = 13, - anon_sym_const = 14, - anon_sym_else = 15, - anon_sym_if = 16, - anon_sym_switch = 17, - anon_sym_for = 18, - anon_sym_LPAREN = 19, - anon_sym_RPAREN = 20, - anon_sym_await = 21, - anon_sym_in = 22, - anon_sym_of = 23, - anon_sym_while = 24, - anon_sym_do = 25, - anon_sym_try = 26, - anon_sym_with = 27, + anon_sym_with = 12, + anon_sym_var = 13, + anon_sym_let = 14, + anon_sym_const = 15, + anon_sym_else = 16, + anon_sym_if = 17, + anon_sym_switch = 18, + anon_sym_for = 19, + anon_sym_LPAREN = 20, + anon_sym_RPAREN = 21, + anon_sym_await = 22, + anon_sym_in = 23, + anon_sym_of = 24, + anon_sym_while = 25, + anon_sym_do = 26, + anon_sym_try = 27, anon_sym_break = 28, anon_sym_continue = 29, anon_sym_debugger = 30, @@ -71,223 +71,230 @@ enum ts_symbol_identifiers { anon_sym_LT_SLASHtemplate_GT = 44, aux_sym_jsx_text_token1 = 45, aux_sym_jsx_text_token2 = 46, - anon_sym_LT = 47, - anon_sym_GT = 48, - sym_jsx_identifier = 49, - anon_sym_DOT = 50, - anon_sym_LT_SLASH = 51, - anon_sym_SLASH_GT = 52, - anon_sym_class = 53, - anon_sym_extends = 54, - anon_sym_async = 55, - anon_sym_function = 56, - anon_sym_EQ_GT = 57, - sym_optional_chain = 58, - anon_sym_new = 59, - anon_sym_PLUS_EQ = 60, - anon_sym_DASH_EQ = 61, - anon_sym_STAR_EQ = 62, - anon_sym_SLASH_EQ = 63, - anon_sym_PERCENT_EQ = 64, - anon_sym_CARET_EQ = 65, - anon_sym_AMP_EQ = 66, - anon_sym_PIPE_EQ = 67, - anon_sym_GT_GT_EQ = 68, - anon_sym_GT_GT_GT_EQ = 69, - anon_sym_LT_LT_EQ = 70, - anon_sym_STAR_STAR_EQ = 71, - anon_sym_AMP_AMP_EQ = 72, - anon_sym_PIPE_PIPE_EQ = 73, - anon_sym_QMARK_QMARK_EQ = 74, - anon_sym_DOT_DOT_DOT = 75, - anon_sym_AMP_AMP = 76, - anon_sym_PIPE_PIPE = 77, - anon_sym_GT_GT = 78, - anon_sym_GT_GT_GT = 79, - anon_sym_LT_LT = 80, - anon_sym_AMP = 81, - anon_sym_CARET = 82, - anon_sym_PIPE = 83, - anon_sym_PLUS = 84, - anon_sym_DASH = 85, - anon_sym_SLASH = 86, - anon_sym_PERCENT = 87, - anon_sym_STAR_STAR = 88, - anon_sym_LT_EQ = 89, - anon_sym_EQ_EQ = 90, - anon_sym_EQ_EQ_EQ = 91, - anon_sym_BANG_EQ = 92, - anon_sym_BANG_EQ_EQ = 93, - anon_sym_GT_EQ = 94, - anon_sym_QMARK_QMARK = 95, - anon_sym_instanceof = 96, - anon_sym_BANG = 97, - anon_sym_TILDE = 98, - anon_sym_typeof = 99, - anon_sym_void = 100, - anon_sym_delete = 101, - anon_sym_PLUS_PLUS = 102, - anon_sym_DASH_DASH = 103, - anon_sym_DQUOTE = 104, - anon_sym_SQUOTE = 105, - sym_unescaped_double_string_fragment = 106, - sym_unescaped_single_string_fragment = 107, - sym_escape_sequence = 108, - aux_sym_comment_token1 = 109, - anon_sym_BQUOTE = 110, - anon_sym_DOLLAR_LBRACE = 111, - anon_sym_SLASH2 = 112, - sym_regex_pattern = 113, - sym_regex_flags = 114, - sym_number = 115, - sym_private_property_identifier = 116, - anon_sym_target = 117, - sym_this = 118, - sym_super = 119, - sym_true = 120, - sym_false = 121, - sym_null = 122, - sym_undefined = 123, - anon_sym_AT = 124, - anon_sym_static = 125, - aux_sym_method_definition_token1 = 126, - anon_sym_get = 127, - anon_sym_set = 128, - sym__automatic_semicolon = 129, - sym__template_chars = 130, - sym__ternary_qmark = 131, - sym_html_comment = 132, - sym_program = 133, - sym_export_statement = 134, - sym_namespace_export = 135, - sym_export_clause = 136, - sym_export_specifier = 137, - sym__module_export_name = 138, - sym_declaration = 139, - sym_import = 140, - sym_import_statement = 141, - sym_import_clause = 142, - sym__from_clause = 143, - sym_namespace_import = 144, - sym_named_imports = 145, - sym_import_specifier = 146, - sym_expression_statement = 147, - sym_variable_declaration = 148, - sym_lexical_declaration = 149, - sym_variable_declarator = 150, - sym_statement_block = 151, - sym_else_clause = 152, - sym_if_statement = 153, - sym_switch_statement = 154, - sym_for_statement = 155, - sym_for_in_statement = 156, - sym__for_header = 157, - sym_while_statement = 158, - sym_do_statement = 159, - sym_try_statement = 160, - sym_with_statement = 161, - sym_break_statement = 162, - sym_continue_statement = 163, - sym_debugger_statement = 164, - sym_return_statement = 165, - sym_throw_statement = 166, - sym_empty_statement = 167, - sym_labeled_statement = 168, - sym_switch_body = 169, - sym_switch_case = 170, - sym_switch_default = 171, - sym_catch_clause = 172, - sym_finally_clause = 173, - sym_parenthesized_expression = 174, - sym_expression = 175, - sym_primary_expression = 176, - sym_yield_expression = 177, - sym_object = 178, - sym_object_pattern = 179, - sym_assignment_pattern = 180, - sym_object_assignment_pattern = 181, - sym_array = 182, - sym_array_pattern = 183, - sym_glimmer_template = 184, - sym_glimmer_opening_tag = 185, - sym_glimmer_closing_tag = 186, - sym_jsx_element = 187, - sym_jsx_text = 188, - sym_jsx_expression = 189, - sym_jsx_opening_element = 190, - sym_nested_identifier = 191, - sym_jsx_namespace_name = 192, - sym_jsx_closing_element = 193, - sym_jsx_self_closing_element = 194, - sym_jsx_attribute = 195, - sym_class = 196, - sym_class_declaration = 197, - sym_class_heritage = 198, - sym_function_expression = 199, - sym_function_declaration = 200, - sym_generator_function = 201, - sym_generator_function_declaration = 202, - sym_arrow_function = 203, - sym_call_expression = 204, - sym_new_expression = 205, - sym_await_expression = 206, - sym_member_expression = 207, - sym_subscript_expression = 208, - sym_assignment_expression = 209, - sym__augmented_assignment_lhs = 210, - sym_augmented_assignment_expression = 211, - sym__initializer = 212, - sym__destructuring_pattern = 213, - sym_spread_element = 214, - sym_ternary_expression = 215, - sym_binary_expression = 216, - sym_unary_expression = 217, - sym_update_expression = 218, - sym_sequence_expression = 219, - sym_string = 220, - sym_comment = 221, - sym_template_string = 222, - sym_template_substitution = 223, - sym_regex = 224, - sym_meta_property = 225, - sym_arguments = 226, - sym_decorator = 227, - sym_decorator_member_expression = 228, - sym_decorator_call_expression = 229, - sym_class_body = 230, - sym_field_definition = 231, - sym_formal_parameters = 232, - sym_class_static_block = 233, - sym_pattern = 234, - sym_rest_pattern = 235, - sym_method_definition = 236, - sym_pair = 237, - sym_pair_pattern = 238, - sym__property_name = 239, - sym_computed_property_name = 240, - aux_sym_program_repeat1 = 241, - aux_sym_export_statement_repeat1 = 242, - aux_sym_export_clause_repeat1 = 243, - aux_sym_named_imports_repeat1 = 244, - aux_sym_variable_declaration_repeat1 = 245, - aux_sym_switch_body_repeat1 = 246, - aux_sym_object_repeat1 = 247, - aux_sym_object_pattern_repeat1 = 248, - aux_sym_array_repeat1 = 249, - aux_sym_array_pattern_repeat1 = 250, - aux_sym_glimmer_template_repeat1 = 251, - aux_sym_jsx_element_repeat1 = 252, - aux_sym_jsx_opening_element_repeat1 = 253, - aux_sym_sequence_expression_repeat1 = 254, - aux_sym_string_repeat1 = 255, - aux_sym_string_repeat2 = 256, - aux_sym_template_string_repeat1 = 257, - aux_sym_class_body_repeat1 = 258, - aux_sym_formal_parameters_repeat1 = 259, - alias_sym_property_identifier = 260, - alias_sym_shorthand_property_identifier = 261, - alias_sym_shorthand_property_identifier_pattern = 262, - alias_sym_statement_identifier = 263, + sym_html_character_reference = 47, + anon_sym_LT = 48, + anon_sym_GT = 49, + sym_jsx_identifier = 50, + anon_sym_DOT = 51, + anon_sym_LT_SLASH = 52, + anon_sym_SLASH_GT = 53, + anon_sym_DQUOTE = 54, + anon_sym_SQUOTE = 55, + sym_unescaped_double_jsx_string_fragment = 56, + sym_unescaped_single_jsx_string_fragment = 57, + anon_sym_class = 58, + anon_sym_extends = 59, + anon_sym_async = 60, + anon_sym_function = 61, + anon_sym_EQ_GT = 62, + sym_optional_chain = 63, + anon_sym_new = 64, + anon_sym_PLUS_EQ = 65, + anon_sym_DASH_EQ = 66, + anon_sym_STAR_EQ = 67, + anon_sym_SLASH_EQ = 68, + anon_sym_PERCENT_EQ = 69, + anon_sym_CARET_EQ = 70, + anon_sym_AMP_EQ = 71, + anon_sym_PIPE_EQ = 72, + anon_sym_GT_GT_EQ = 73, + anon_sym_GT_GT_GT_EQ = 74, + anon_sym_LT_LT_EQ = 75, + anon_sym_STAR_STAR_EQ = 76, + anon_sym_AMP_AMP_EQ = 77, + anon_sym_PIPE_PIPE_EQ = 78, + anon_sym_QMARK_QMARK_EQ = 79, + anon_sym_DOT_DOT_DOT = 80, + anon_sym_AMP_AMP = 81, + anon_sym_PIPE_PIPE = 82, + anon_sym_GT_GT = 83, + anon_sym_GT_GT_GT = 84, + anon_sym_LT_LT = 85, + anon_sym_AMP = 86, + anon_sym_CARET = 87, + anon_sym_PIPE = 88, + anon_sym_PLUS = 89, + anon_sym_DASH = 90, + anon_sym_SLASH = 91, + anon_sym_PERCENT = 92, + anon_sym_STAR_STAR = 93, + anon_sym_LT_EQ = 94, + anon_sym_EQ_EQ = 95, + anon_sym_EQ_EQ_EQ = 96, + anon_sym_BANG_EQ = 97, + anon_sym_BANG_EQ_EQ = 98, + anon_sym_GT_EQ = 99, + anon_sym_QMARK_QMARK = 100, + anon_sym_instanceof = 101, + anon_sym_BANG = 102, + anon_sym_TILDE = 103, + anon_sym_typeof = 104, + anon_sym_void = 105, + anon_sym_delete = 106, + anon_sym_PLUS_PLUS = 107, + anon_sym_DASH_DASH = 108, + sym_unescaped_double_string_fragment = 109, + sym_unescaped_single_string_fragment = 110, + sym_escape_sequence = 111, + aux_sym_comment_token1 = 112, + anon_sym_BQUOTE = 113, + anon_sym_DOLLAR_LBRACE = 114, + anon_sym_SLASH2 = 115, + sym_regex_pattern = 116, + sym_regex_flags = 117, + sym_number = 118, + sym_private_property_identifier = 119, + anon_sym_target = 120, + sym_this = 121, + sym_super = 122, + sym_true = 123, + sym_false = 124, + sym_null = 125, + sym_undefined = 126, + anon_sym_AT = 127, + anon_sym_static = 128, + aux_sym_method_definition_token1 = 129, + anon_sym_get = 130, + anon_sym_set = 131, + sym__automatic_semicolon = 132, + sym__template_chars = 133, + sym__ternary_qmark = 134, + sym_html_comment = 135, + sym_program = 136, + sym_export_statement = 137, + sym_namespace_export = 138, + sym_export_clause = 139, + sym_export_specifier = 140, + sym__module_export_name = 141, + sym_declaration = 142, + sym_import = 143, + sym_import_statement = 144, + sym_import_clause = 145, + sym__from_clause = 146, + sym_namespace_import = 147, + sym_named_imports = 148, + sym_import_specifier = 149, + sym_import_attribute = 150, + sym_expression_statement = 151, + sym_variable_declaration = 152, + sym_lexical_declaration = 153, + sym_variable_declarator = 154, + sym_statement_block = 155, + sym_else_clause = 156, + sym_if_statement = 157, + sym_switch_statement = 158, + sym_for_statement = 159, + sym_for_in_statement = 160, + sym__for_header = 161, + sym_while_statement = 162, + sym_do_statement = 163, + sym_try_statement = 164, + sym_with_statement = 165, + sym_break_statement = 166, + sym_continue_statement = 167, + sym_debugger_statement = 168, + sym_return_statement = 169, + sym_throw_statement = 170, + sym_empty_statement = 171, + sym_labeled_statement = 172, + sym_switch_body = 173, + sym_switch_case = 174, + sym_switch_default = 175, + sym_catch_clause = 176, + sym_finally_clause = 177, + sym_parenthesized_expression = 178, + sym_expression = 179, + sym_primary_expression = 180, + sym_yield_expression = 181, + sym_object = 182, + sym_object_pattern = 183, + sym_assignment_pattern = 184, + sym_object_assignment_pattern = 185, + sym_array = 186, + sym_array_pattern = 187, + sym_glimmer_template = 188, + sym_glimmer_opening_tag = 189, + sym_glimmer_closing_tag = 190, + sym_jsx_element = 191, + sym_jsx_text = 192, + sym_jsx_expression = 193, + sym_jsx_opening_element = 194, + sym_nested_identifier = 195, + sym_jsx_namespace_name = 196, + sym_jsx_closing_element = 197, + sym_jsx_self_closing_element = 198, + sym_jsx_attribute = 199, + sym__jsx_string = 200, + sym_class = 201, + sym_class_declaration = 202, + sym_class_heritage = 203, + sym_function_expression = 204, + sym_function_declaration = 205, + sym_generator_function = 206, + sym_generator_function_declaration = 207, + sym_arrow_function = 208, + sym_call_expression = 209, + sym_new_expression = 210, + sym_await_expression = 211, + sym_member_expression = 212, + sym_subscript_expression = 213, + sym_assignment_expression = 214, + sym__augmented_assignment_lhs = 215, + sym_augmented_assignment_expression = 216, + sym__initializer = 217, + sym__destructuring_pattern = 218, + sym_spread_element = 219, + sym_ternary_expression = 220, + sym_binary_expression = 221, + sym_unary_expression = 222, + sym_update_expression = 223, + sym_sequence_expression = 224, + sym_string = 225, + sym_comment = 226, + sym_template_string = 227, + sym_template_substitution = 228, + sym_regex = 229, + sym_meta_property = 230, + sym_arguments = 231, + sym_decorator = 232, + sym_decorator_member_expression = 233, + sym_decorator_call_expression = 234, + sym_class_body = 235, + sym_field_definition = 236, + sym_formal_parameters = 237, + sym_class_static_block = 238, + sym_pattern = 239, + sym_rest_pattern = 240, + sym_method_definition = 241, + sym_pair = 242, + sym_pair_pattern = 243, + sym__property_name = 244, + sym_computed_property_name = 245, + aux_sym_program_repeat1 = 246, + aux_sym_export_statement_repeat1 = 247, + aux_sym_export_clause_repeat1 = 248, + aux_sym_named_imports_repeat1 = 249, + aux_sym_variable_declaration_repeat1 = 250, + aux_sym_switch_body_repeat1 = 251, + aux_sym_object_repeat1 = 252, + aux_sym_object_pattern_repeat1 = 253, + aux_sym_array_repeat1 = 254, + aux_sym_array_pattern_repeat1 = 255, + aux_sym_glimmer_template_repeat1 = 256, + aux_sym_jsx_element_repeat1 = 257, + aux_sym_jsx_opening_element_repeat1 = 258, + aux_sym__jsx_string_repeat1 = 259, + aux_sym__jsx_string_repeat2 = 260, + aux_sym_sequence_expression_repeat1 = 261, + aux_sym_string_repeat1 = 262, + aux_sym_string_repeat2 = 263, + aux_sym_template_string_repeat1 = 264, + aux_sym_class_body_repeat1 = 265, + aux_sym_formal_parameters_repeat1 = 266, + alias_sym_property_identifier = 267, + alias_sym_shorthand_property_identifier = 268, + alias_sym_shorthand_property_identifier_pattern = 269, + alias_sym_statement_identifier = 270, }; static const char * const ts_symbol_names[] = { @@ -303,6 +310,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_RBRACE] = "}", [anon_sym_import] = "import", [anon_sym_from] = "from", + [anon_sym_with] = "with", [anon_sym_var] = "var", [anon_sym_let] = "let", [anon_sym_const] = "const", @@ -318,7 +326,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_while] = "while", [anon_sym_do] = "do", [anon_sym_try] = "try", - [anon_sym_with] = "with", [anon_sym_break] = "break", [anon_sym_continue] = "continue", [anon_sym_debugger] = "debugger", @@ -338,12 +345,17 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT_SLASHtemplate_GT] = "", [aux_sym_jsx_text_token1] = "jsx_text_token1", [aux_sym_jsx_text_token2] = "jsx_text_token2", + [sym_html_character_reference] = "html_character_reference", [anon_sym_LT] = "<", [anon_sym_GT] = ">", [sym_jsx_identifier] = "identifier", [anon_sym_DOT] = ".", [anon_sym_LT_SLASH] = "", + [anon_sym_DQUOTE] = "\"", + [anon_sym_SQUOTE] = "'", + [sym_unescaped_double_jsx_string_fragment] = "string_fragment", + [sym_unescaped_single_jsx_string_fragment] = "string_fragment", [anon_sym_class] = "class", [anon_sym_extends] = "extends", [anon_sym_async] = "async", @@ -395,8 +407,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_delete] = "delete", [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", - [anon_sym_DQUOTE] = "\"", - [anon_sym_SQUOTE] = "'", [sym_unescaped_double_string_fragment] = "string_fragment", [sym_unescaped_single_string_fragment] = "string_fragment", [sym_escape_sequence] = "escape_sequence", @@ -438,6 +448,7 @@ static const char * const ts_symbol_names[] = { [sym_namespace_import] = "namespace_import", [sym_named_imports] = "named_imports", [sym_import_specifier] = "import_specifier", + [sym_import_attribute] = "import_attribute", [sym_expression_statement] = "expression_statement", [sym_variable_declaration] = "variable_declaration", [sym_lexical_declaration] = "lexical_declaration", @@ -487,6 +498,7 @@ static const char * const ts_symbol_names[] = { [sym_jsx_closing_element] = "jsx_closing_element", [sym_jsx_self_closing_element] = "jsx_self_closing_element", [sym_jsx_attribute] = "jsx_attribute", + [sym__jsx_string] = "string", [sym_class] = "class", [sym_class_declaration] = "class_declaration", [sym_class_heritage] = "class_heritage", @@ -545,6 +557,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_glimmer_template_repeat1] = "glimmer_template_repeat1", [aux_sym_jsx_element_repeat1] = "jsx_element_repeat1", [aux_sym_jsx_opening_element_repeat1] = "jsx_opening_element_repeat1", + [aux_sym__jsx_string_repeat1] = "_jsx_string_repeat1", + [aux_sym__jsx_string_repeat2] = "_jsx_string_repeat2", [aux_sym_sequence_expression_repeat1] = "sequence_expression_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_string_repeat2] = "string_repeat2", @@ -570,6 +584,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_import] = anon_sym_import, [anon_sym_from] = anon_sym_from, + [anon_sym_with] = anon_sym_with, [anon_sym_var] = anon_sym_var, [anon_sym_let] = anon_sym_let, [anon_sym_const] = anon_sym_const, @@ -585,7 +600,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_while] = anon_sym_while, [anon_sym_do] = anon_sym_do, [anon_sym_try] = anon_sym_try, - [anon_sym_with] = anon_sym_with, [anon_sym_break] = anon_sym_break, [anon_sym_continue] = anon_sym_continue, [anon_sym_debugger] = anon_sym_debugger, @@ -605,12 +619,17 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT_SLASHtemplate_GT] = anon_sym_LT_SLASHtemplate_GT, [aux_sym_jsx_text_token1] = aux_sym_jsx_text_token1, [aux_sym_jsx_text_token2] = aux_sym_jsx_text_token2, + [sym_html_character_reference] = sym_html_character_reference, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, [sym_jsx_identifier] = sym_identifier, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_LT_SLASH] = anon_sym_LT_SLASH, [anon_sym_SLASH_GT] = anon_sym_SLASH_GT, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [sym_unescaped_double_jsx_string_fragment] = sym__template_chars, + [sym_unescaped_single_jsx_string_fragment] = sym__template_chars, [anon_sym_class] = anon_sym_class, [anon_sym_extends] = anon_sym_extends, [anon_sym_async] = anon_sym_async, @@ -662,8 +681,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_delete] = anon_sym_delete, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, [sym_unescaped_double_string_fragment] = sym__template_chars, [sym_unescaped_single_string_fragment] = sym__template_chars, [sym_escape_sequence] = sym_escape_sequence, @@ -705,6 +722,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_namespace_import] = sym_namespace_import, [sym_named_imports] = sym_named_imports, [sym_import_specifier] = sym_import_specifier, + [sym_import_attribute] = sym_import_attribute, [sym_expression_statement] = sym_expression_statement, [sym_variable_declaration] = sym_variable_declaration, [sym_lexical_declaration] = sym_lexical_declaration, @@ -754,6 +772,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_jsx_closing_element] = sym_jsx_closing_element, [sym_jsx_self_closing_element] = sym_jsx_self_closing_element, [sym_jsx_attribute] = sym_jsx_attribute, + [sym__jsx_string] = sym_string, [sym_class] = sym_class, [sym_class_declaration] = sym_class_declaration, [sym_class_heritage] = sym_class_heritage, @@ -812,6 +831,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_glimmer_template_repeat1] = aux_sym_glimmer_template_repeat1, [aux_sym_jsx_element_repeat1] = aux_sym_jsx_element_repeat1, [aux_sym_jsx_opening_element_repeat1] = aux_sym_jsx_opening_element_repeat1, + [aux_sym__jsx_string_repeat1] = aux_sym__jsx_string_repeat1, + [aux_sym__jsx_string_repeat2] = aux_sym__jsx_string_repeat2, [aux_sym_sequence_expression_repeat1] = aux_sym_sequence_expression_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_string_repeat2] = aux_sym_string_repeat2, @@ -873,6 +894,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_with] = { + .visible = true, + .named = false, + }, [anon_sym_var] = { .visible = true, .named = false, @@ -933,10 +958,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_with] = { - .visible = true, - .named = false, - }, [anon_sym_break] = { .visible = true, .named = false, @@ -1013,6 +1034,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [sym_html_character_reference] = { + .visible = true, + .named = true, + }, [anon_sym_LT] = { .visible = true, .named = false, @@ -1037,6 +1062,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [sym_unescaped_double_jsx_string_fragment] = { + .visible = true, + .named = true, + }, + [sym_unescaped_single_jsx_string_fragment] = { + .visible = true, + .named = true, + }, [anon_sym_class] = { .visible = true, .named = false, @@ -1241,14 +1282,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, [sym_unescaped_double_string_fragment] = { .visible = true, .named = true, @@ -1414,6 +1447,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_import_attribute] = { + .visible = true, + .named = true, + }, [sym_expression_statement] = { .visible = true, .named = true, @@ -1612,6 +1649,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__jsx_string] = { + .visible = true, + .named = true, + }, [sym_class] = { .visible = true, .named = true, @@ -1845,6 +1886,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__jsx_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__jsx_string_repeat2] = { + .visible = false, + .named = false, + }, [aux_sym_sequence_expression_repeat1] = { .visible = false, .named = false, @@ -1987,11 +2036,11 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [16] = {.index = 20, .length = 2}, [20] = {.index = 22, .length = 1}, [21] = {.index = 23, .length = 2}, - [22] = {.index = 25, .length = 1}, - [23] = {.index = 26, .length = 2}, + [22] = {.index = 25, .length = 2}, + [23] = {.index = 27, .length = 1}, [24] = {.index = 28, .length = 2}, - [25] = {.index = 30, .length = 6}, - [26] = {.index = 36, .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}, @@ -2031,46 +2080,46 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [63] = {.index = 99, .length = 3}, [64] = {.index = 102, .length = 2}, [65] = {.index = 104, .length = 2}, - [67] = {.index = 106, .length = 1}, - [68] = {.index = 107, .length = 2}, - [69] = {.index = 109, .length = 2}, - [70] = {.index = 111, .length = 2}, - [71] = {.index = 113, .length = 4}, - [72] = {.index = 117, .length = 2}, - [73] = {.index = 119, .length = 2}, - [74] = {.index = 121, .length = 2}, - [75] = {.index = 119, .length = 2}, - [76] = {.index = 123, .length = 2}, - [77] = {.index = 125, .length = 3}, - [78] = {.index = 128, .length = 2}, - [79] = {.index = 130, .length = 2}, - [80] = {.index = 132, .length = 2}, - [81] = {.index = 134, .length = 3}, - [82] = {.index = 137, .length = 2}, - [83] = {.index = 139, .length = 2}, - [84] = {.index = 141, .length = 4}, - [85] = {.index = 145, .length = 2}, - [86] = {.index = 147, .length = 2}, - [87] = {.index = 149, .length = 3}, - [88] = {.index = 152, .length = 2}, - [89] = {.index = 154, .length = 3}, - [90] = {.index = 157, .length = 3}, - [91] = {.index = 160, .length = 3}, - [92] = {.index = 163, .length = 2}, - [93] = {.index = 165, .length = 3}, - [94] = {.index = 168, .length = 4}, + [66] = {.index = 106, .length = 1}, + [67] = {.index = 107, .length = 2}, + [68] = {.index = 109, .length = 2}, + [69] = {.index = 111, .length = 2}, + [70] = {.index = 113, .length = 4}, + [71] = {.index = 117, .length = 2}, + [72] = {.index = 119, .length = 2}, + [73] = {.index = 121, .length = 2}, + [74] = {.index = 119, .length = 2}, + [75] = {.index = 123, .length = 2}, + [76] = {.index = 125, .length = 3}, + [77] = {.index = 128, .length = 2}, + [78] = {.index = 130, .length = 2}, + [79] = {.index = 132, .length = 2}, + [80] = {.index = 134, .length = 3}, + [81] = {.index = 137, .length = 2}, + [82] = {.index = 139, .length = 2}, + [83] = {.index = 141, .length = 4}, + [84] = {.index = 145, .length = 2}, + [85] = {.index = 147, .length = 2}, + [86] = {.index = 149, .length = 3}, + [87] = {.index = 152, .length = 2}, + [88] = {.index = 154, .length = 3}, + [89] = {.index = 157, .length = 3}, + [90] = {.index = 160, .length = 3}, + [91] = {.index = 163, .length = 2}, + [92] = {.index = 165, .length = 3}, + [93] = {.index = 168, .length = 4}, + [94] = {.index = 172, .length = 3}, [95] = {.index = 172, .length = 3}, - [96] = {.index = 172, .length = 3}, - [97] = {.index = 175, .length = 3}, - [98] = {.index = 178, .length = 3}, - [99] = {.index = 181, .length = 3}, - [100] = {.index = 184, .length = 4}, - [101] = {.index = 188, .length = 2}, - [102] = {.index = 190, .length = 4}, - [103] = {.index = 194, .length = 4}, - [104] = {.index = 198, .length = 2}, - [105] = {.index = 200, .length = 4}, - [106] = {.index = 204, .length = 5}, + [96] = {.index = 175, .length = 3}, + [97] = {.index = 178, .length = 3}, + [98] = {.index = 181, .length = 3}, + [99] = {.index = 184, .length = 4}, + [100] = {.index = 188, .length = 2}, + [101] = {.index = 190, .length = 4}, + [102] = {.index = 194, .length = 4}, + [103] = {.index = 198, .length = 2}, + [104] = {.index = 200, .length = 4}, + [105] = {.index = 204, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2113,35 +2162,35 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [22] = {field_source, 1}, [23] = + {field_body, 2}, + {field_object, 1}, + [25] = {field_name, 0}, {field_value, 1, .inherited = true}, - [25] = + [27] = {field_kind, 0}, - [26] = + [28] = {field_condition, 1}, {field_consequence, 2}, - [28] = + [30] = {field_body, 2}, {field_value, 1}, - [30] = + [32] = {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}, - [36] = + [38] = {field_body, 2}, {field_condition, 1}, - [38] = + [40] = {field_body, 1}, {field_handler, 2}, - [40] = + [42] = {field_body, 1}, {field_finalizer, 2}, - [42] = - {field_body, 2}, - {field_object, 1}, [44] = {field_label, 1}, [45] = @@ -2416,13 +2465,10 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [56] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [66] = { - [2] = alias_sym_property_identifier, - }, - [73] = { + [72] = { [1] = sym_identifier, }, - [95] = { + [94] = { [1] = sym_identifier, }, }; @@ -2447,110 +2493,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 11, + [15] = 10, [16] = 16, - [17] = 17, - [18] = 16, + [17] = 16, + [18] = 18, [19] = 16, - [20] = 17, + [20] = 18, [21] = 16, - [22] = 17, + [22] = 18, [23] = 16, - [24] = 17, - [25] = 17, + [24] = 18, + [25] = 18, [26] = 16, - [27] = 17, + [27] = 16, [28] = 16, - [29] = 17, - [30] = 17, + [29] = 18, + [30] = 16, [31] = 16, - [32] = 16, - [33] = 17, - [34] = 16, - [35] = 17, - [36] = 17, - [37] = 16, + [32] = 18, + [33] = 18, + [34] = 34, + [35] = 16, + [36] = 18, + [37] = 18, [38] = 16, - [39] = 17, - [40] = 17, - [41] = 16, - [42] = 16, - [43] = 17, - [44] = 16, + [39] = 18, + [40] = 16, + [41] = 18, + [42] = 18, + [43] = 18, + [44] = 18, [45] = 16, - [46] = 16, - [47] = 17, - [48] = 17, + [46] = 18, + [47] = 16, + [48] = 16, [49] = 16, - [50] = 17, - [51] = 17, - [52] = 16, - [53] = 17, - [54] = 16, - [55] = 17, - [56] = 16, + [50] = 18, + [51] = 18, + [52] = 18, + [53] = 16, + [54] = 18, + [55] = 16, + [56] = 18, [57] = 16, - [58] = 58, + [58] = 18, [59] = 16, - [60] = 17, + [60] = 18, [61] = 61, [62] = 16, [63] = 63, - [64] = 17, - [65] = 17, - [66] = 17, - [67] = 16, - [68] = 17, + [64] = 18, + [65] = 16, + [66] = 16, + [67] = 18, + [68] = 16, [69] = 69, [70] = 70, - [71] = 69, + [71] = 71, [72] = 72, [73] = 73, - [74] = 72, - [75] = 72, - [76] = 76, + [74] = 74, + [75] = 75, + [76] = 72, [77] = 77, [78] = 78, - [79] = 70, - [80] = 80, - [81] = 81, - [82] = 73, - [83] = 69, - [84] = 84, - [85] = 84, - [86] = 84, - [87] = 78, - [88] = 78, - [89] = 72, - [90] = 69, - [91] = 76, - [92] = 70, - [93] = 81, - [94] = 72, - [95] = 80, - [96] = 73, - [97] = 77, - [98] = 80, - [99] = 84, - [100] = 73, - [101] = 84, - [102] = 78, - [103] = 69, - [104] = 80, - [105] = 77, - [106] = 76, - [107] = 81, - [108] = 76, - [109] = 80, - [110] = 70, - [111] = 76, - [112] = 77, + [79] = 72, + [80] = 73, + [81] = 78, + [82] = 72, + [83] = 74, + [84] = 71, + [85] = 85, + [86] = 85, + [87] = 70, + [88] = 77, + [89] = 70, + [90] = 74, + [91] = 69, + [92] = 75, + [93] = 73, + [94] = 78, + [95] = 71, + [96] = 77, + [97] = 85, + [98] = 75, + [99] = 74, + [100] = 74, + [101] = 71, + [102] = 69, + [103] = 77, + [104] = 85, + [105] = 72, + [106] = 77, + [107] = 70, + [108] = 70, + [109] = 69, + [110] = 69, + [111] = 75, + [112] = 71, [113] = 73, - [114] = 81, - [115] = 81, - [116] = 77, - [117] = 70, - [118] = 78, + [114] = 78, + [115] = 78, + [116] = 73, + [117] = 75, + [118] = 85, [119] = 119, [120] = 119, [121] = 119, @@ -2560,111 +2606,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [125] = 124, [126] = 124, [127] = 124, - [128] = 128, + [128] = 124, [129] = 124, - [130] = 124, + [130] = 130, [131] = 124, [132] = 132, - [133] = 133, - [134] = 133, + [133] = 132, + [134] = 134, [135] = 135, - [136] = 135, - [137] = 132, - [138] = 133, - [139] = 132, - [140] = 135, - [141] = 133, - [142] = 133, - [143] = 143, - [144] = 135, - [145] = 132, - [146] = 135, + [136] = 136, + [137] = 134, + [138] = 136, + [139] = 136, + [140] = 136, + [141] = 134, + [142] = 132, + [143] = 132, + [144] = 134, + [145] = 136, + [146] = 134, [147] = 132, [148] = 148, - [149] = 149, + [149] = 135, [150] = 150, [151] = 151, [152] = 152, - [153] = 153, + [153] = 135, [154] = 154, - [155] = 143, + [155] = 155, [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 159, + [160] = 160, [161] = 161, [162] = 162, [163] = 163, [164] = 164, - [165] = 143, + [165] = 165, [166] = 166, - [167] = 167, - [168] = 166, - [169] = 151, - [170] = 157, - [171] = 162, - [172] = 163, - [173] = 164, - [174] = 154, - [175] = 167, - [176] = 161, - [177] = 152, - [178] = 148, - [179] = 151, - [180] = 150, - [181] = 162, - [182] = 153, - [183] = 158, - [184] = 163, - [185] = 167, - [186] = 153, - [187] = 150, - [188] = 188, - [189] = 143, - [190] = 154, - [191] = 157, - [192] = 161, - [193] = 188, - [194] = 148, - [195] = 164, - [196] = 152, + [167] = 150, + [168] = 152, + [169] = 152, + [170] = 165, + [171] = 159, + [172] = 164, + [173] = 163, + [174] = 151, + [175] = 165, + [176] = 162, + [177] = 161, + [178] = 160, + [179] = 154, + [180] = 156, + [181] = 151, + [182] = 166, + [183] = 183, + [184] = 154, + [185] = 135, + [186] = 183, + [187] = 156, + [188] = 159, + [189] = 161, + [190] = 158, + [191] = 160, + [192] = 157, + [193] = 158, + [194] = 157, + [195] = 195, + [196] = 164, [197] = 166, - [198] = 158, - [199] = 199, - [200] = 167, - [201] = 151, + [198] = 163, + [199] = 162, + [200] = 200, + [201] = 154, [202] = 202, - [203] = 150, - [204] = 202, - [205] = 205, - [206] = 157, - [207] = 148, - [208] = 153, + [203] = 202, + [204] = 161, + [205] = 160, + [206] = 206, + [207] = 152, + [208] = 156, [209] = 209, - [210] = 158, - [211] = 166, - [212] = 202, - [213] = 164, - [214] = 202, - [215] = 162, - [216] = 161, - [217] = 202, - [218] = 218, - [219] = 152, - [220] = 163, - [221] = 154, - [222] = 222, + [210] = 165, + [211] = 202, + [212] = 159, + [213] = 163, + [214] = 151, + [215] = 166, + [216] = 202, + [217] = 162, + [218] = 158, + [219] = 157, + [220] = 220, + [221] = 164, + [222] = 202, [223] = 223, [224] = 224, [225] = 225, - [226] = 225, - [227] = 225, + [226] = 226, + [227] = 223, [228] = 228, - [229] = 225, - [230] = 228, - [231] = 225, - [232] = 232, + [229] = 223, + [230] = 223, + [231] = 226, + [232] = 223, [233] = 233, [234] = 233, [235] = 233, @@ -2680,181 +2726,181 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [245] = 245, [246] = 246, [247] = 247, - [248] = 248, + [248] = 246, [249] = 249, [250] = 250, [251] = 251, - [252] = 250, - [253] = 253, + [252] = 252, + [253] = 247, [254] = 244, - [255] = 255, - [256] = 256, - [257] = 251, - [258] = 250, + [255] = 250, + [256] = 247, + [257] = 249, + [258] = 247, [259] = 259, - [260] = 251, - [261] = 255, - [262] = 250, - [263] = 253, - [264] = 264, - [265] = 249, - [266] = 264, + [260] = 244, + [261] = 250, + [262] = 249, + [263] = 244, + [264] = 246, + [265] = 250, + [266] = 251, [267] = 267, - [268] = 255, - [269] = 244, - [270] = 253, - [271] = 251, - [272] = 250, + [268] = 251, + [269] = 269, + [270] = 251, + [271] = 271, + [272] = 246, [273] = 273, - [274] = 259, - [275] = 249, - [276] = 255, - [277] = 244, - [278] = 251, - [279] = 253, - [280] = 280, - [281] = 280, - [282] = 280, - [283] = 283, + [274] = 274, + [275] = 275, + [276] = 267, + [277] = 259, + [278] = 278, + [279] = 244, + [280] = 250, + [281] = 249, + [282] = 252, + [283] = 246, [284] = 284, - [285] = 256, - [286] = 256, - [287] = 259, - [288] = 259, - [289] = 253, - [290] = 256, - [291] = 244, - [292] = 249, - [293] = 280, - [294] = 256, - [295] = 249, + [285] = 267, + [286] = 259, + [287] = 267, + [288] = 275, + [289] = 275, + [290] = 259, + [291] = 275, + [292] = 251, + [293] = 249, + [294] = 278, + [295] = 275, [296] = 267, - [297] = 255, - [298] = 280, + [297] = 247, + [298] = 298, [299] = 259, [300] = 300, [301] = 301, - [302] = 300, + [302] = 302, [303] = 303, [304] = 304, [305] = 305, [306] = 306, [307] = 307, - [308] = 305, + [308] = 308, [309] = 309, - [310] = 306, - [311] = 301, + [310] = 310, + [311] = 311, [312] = 312, [313] = 313, [314] = 314, - [315] = 307, - [316] = 301, - [317] = 317, + [315] = 300, + [316] = 300, + [317] = 313, [318] = 318, - [319] = 319, - [320] = 320, - [321] = 300, - [322] = 312, - [323] = 323, - [324] = 324, - [325] = 303, - [326] = 324, - [327] = 313, - [328] = 314, - [329] = 317, - [330] = 330, + [319] = 312, + [320] = 308, + [321] = 311, + [322] = 322, + [323] = 322, + [324] = 310, + [325] = 307, + [326] = 306, + [327] = 305, + [328] = 328, + [329] = 329, + [330] = 304, [331] = 331, - [332] = 318, - [333] = 323, - [334] = 334, + [332] = 305, + [333] = 333, + [334] = 303, [335] = 335, - [336] = 324, - [337] = 324, + [336] = 336, + [337] = 335, [338] = 338, - [339] = 339, - [340] = 319, - [341] = 338, - [342] = 342, - [343] = 331, - [344] = 330, - [345] = 335, - [346] = 303, - [347] = 334, - [348] = 334, - [349] = 300, - [350] = 334, - [351] = 334, - [352] = 305, + [339] = 308, + [340] = 340, + [341] = 341, + [342] = 328, + [343] = 336, + [344] = 308, + [345] = 345, + [346] = 331, + [347] = 340, + [348] = 336, + [349] = 306, + [350] = 335, + [351] = 328, + [352] = 352, [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 353, - [358] = 356, - [359] = 359, - [360] = 338, - [361] = 361, - [362] = 324, - [363] = 306, - [364] = 300, - [365] = 305, - [366] = 342, - [367] = 307, - [368] = 368, - [369] = 330, - [370] = 303, - [371] = 330, - [372] = 323, - [373] = 354, - [374] = 342, + [354] = 331, + [355] = 307, + [356] = 338, + [357] = 329, + [358] = 310, + [359] = 311, + [360] = 302, + [361] = 312, + [362] = 303, + [363] = 363, + [364] = 328, + [365] = 338, + [366] = 333, + [367] = 313, + [368] = 304, + [369] = 305, + [370] = 306, + [371] = 302, + [372] = 307, + [373] = 310, + [374] = 311, [375] = 312, - [376] = 306, - [377] = 303, - [378] = 307, - [379] = 313, - [380] = 380, - [381] = 330, - [382] = 301, - [383] = 342, - [384] = 342, - [385] = 312, - [386] = 359, - [387] = 314, - [388] = 388, - [389] = 323, - [390] = 323, + [376] = 313, + [377] = 377, + [378] = 336, + [379] = 338, + [380] = 329, + [381] = 300, + [382] = 335, + [383] = 318, + [384] = 318, + [385] = 318, + [386] = 322, + [387] = 304, + [388] = 322, + [389] = 341, + [390] = 303, [391] = 391, - [392] = 305, - [393] = 317, - [394] = 318, - [395] = 356, - [396] = 319, - [397] = 306, + [392] = 340, + [393] = 341, + [394] = 322, + [395] = 318, + [396] = 301, + [397] = 300, [398] = 313, - [399] = 314, - [400] = 359, - [401] = 356, - [402] = 307, - [403] = 359, - [404] = 335, - [405] = 301, - [406] = 317, - [407] = 318, - [408] = 408, - [409] = 319, - [410] = 359, - [411] = 312, - [412] = 335, - [413] = 313, - [414] = 314, - [415] = 356, - [416] = 317, - [417] = 318, - [418] = 353, - [419] = 319, - [420] = 353, - [421] = 353, - [422] = 335, + [399] = 312, + [400] = 400, + [401] = 328, + [402] = 308, + [403] = 302, + [404] = 311, + [405] = 329, + [406] = 340, + [407] = 335, + [408] = 310, + [409] = 307, + [410] = 336, + [411] = 338, + [412] = 306, + [413] = 340, + [414] = 331, + [415] = 305, + [416] = 304, + [417] = 303, + [418] = 302, + [419] = 419, + [420] = 420, + [421] = 329, + [422] = 331, [423] = 423, [424] = 423, [425] = 423, @@ -2862,141 +2908,141 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [427] = 426, [428] = 426, [429] = 429, - [430] = 426, + [430] = 429, [431] = 429, [432] = 426, - [433] = 429, + [433] = 426, [434] = 434, [435] = 435, [436] = 434, [437] = 435, - [438] = 434, - [439] = 435, + [438] = 435, + [439] = 434, [440] = 440, [441] = 440, [442] = 440, [443] = 443, - [444] = 443, - [445] = 445, + [444] = 440, + [445] = 440, [446] = 446, [447] = 447, - [448] = 440, - [449] = 446, - [450] = 443, + [448] = 443, + [449] = 449, + [450] = 450, [451] = 451, - [452] = 443, - [453] = 440, - [454] = 443, + [452] = 451, + [453] = 443, + [454] = 451, [455] = 440, - [456] = 456, - [457] = 447, - [458] = 447, - [459] = 456, - [460] = 451, - [461] = 456, - [462] = 158, - [463] = 164, - [464] = 158, - [465] = 164, - [466] = 466, - [467] = 158, - [468] = 164, - [469] = 466, - [470] = 157, - [471] = 440, - [472] = 158, - [473] = 466, - [474] = 164, - [475] = 466, - [476] = 446, - [477] = 477, - [478] = 148, - [479] = 466, - [480] = 456, - [481] = 477, - [482] = 482, + [456] = 451, + [457] = 451, + [458] = 450, + [459] = 154, + [460] = 446, + [461] = 446, + [462] = 156, + [463] = 449, + [464] = 464, + [465] = 154, + [466] = 464, + [467] = 152, + [468] = 446, + [469] = 469, + [470] = 154, + [471] = 464, + [472] = 156, + [473] = 154, + [474] = 156, + [475] = 151, + [476] = 464, + [477] = 450, + [478] = 156, + [479] = 440, + [480] = 464, + [481] = 481, + [482] = 440, [483] = 483, - [484] = 164, - [485] = 164, - [486] = 157, - [487] = 148, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 152, [488] = 488, [489] = 489, [490] = 490, - [491] = 491, - [492] = 148, + [491] = 156, + [492] = 492, [493] = 493, - [494] = 445, - [495] = 158, - [496] = 440, - [497] = 154, - [498] = 148, - [499] = 158, - [500] = 500, - [501] = 493, - [502] = 157, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 164, - [507] = 157, - [508] = 148, - [509] = 440, - [510] = 477, - [511] = 505, - [512] = 166, - [513] = 158, - [514] = 493, - [515] = 515, - [516] = 164, - [517] = 493, - [518] = 157, - [519] = 164, - [520] = 493, - [521] = 158, - [522] = 522, - [523] = 158, + [494] = 494, + [495] = 495, + [496] = 151, + [497] = 492, + [498] = 440, + [499] = 499, + [500] = 492, + [501] = 156, + [502] = 154, + [503] = 469, + [504] = 151, + [505] = 484, + [506] = 469, + [507] = 152, + [508] = 156, + [509] = 158, + [510] = 157, + [511] = 154, + [512] = 447, + [513] = 156, + [514] = 154, + [515] = 492, + [516] = 156, + [517] = 154, + [518] = 152, + [519] = 154, + [520] = 151, + [521] = 152, + [522] = 151, + [523] = 492, [524] = 524, - [525] = 164, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 148, - [530] = 158, - [531] = 158, - [532] = 522, - [533] = 533, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 537, + [525] = 525, + [526] = 485, + [527] = 481, + [528] = 499, + [529] = 495, + [530] = 494, + [531] = 156, + [532] = 156, + [533] = 493, + [534] = 490, + [535] = 489, + [536] = 488, + [537] = 486, [538] = 538, - [539] = 539, - [540] = 157, + [539] = 486, + [540] = 488, [541] = 541, [542] = 542, [543] = 543, [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, + [545] = 489, + [546] = 490, + [547] = 493, [548] = 548, - [549] = 515, - [550] = 505, + [549] = 549, + [550] = 550, [551] = 551, - [552] = 552, - [553] = 505, - [554] = 554, - [555] = 555, + [552] = 494, + [553] = 495, + [554] = 499, + [555] = 156, [556] = 556, [557] = 557, [558] = 558, - [559] = 157, + [559] = 559, [560] = 560, - [561] = 561, + [561] = 481, [562] = 562, - [563] = 563, - [564] = 564, + [563] = 151, + [564] = 485, [565] = 565, [566] = 566, [567] = 567, @@ -3005,9 +3051,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [570] = 570, [571] = 571, [572] = 572, - [573] = 164, + [573] = 573, [574] = 574, - [575] = 504, + [575] = 152, [576] = 576, [577] = 577, [578] = 578, @@ -3015,58 +3061,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [580] = 580, [581] = 581, [582] = 582, - [583] = 583, - [584] = 503, - [585] = 482, + [583] = 154, + [584] = 584, + [585] = 585, [586] = 586, [587] = 587, - [588] = 491, + [588] = 588, [589] = 589, - [590] = 490, + [590] = 590, [591] = 591, - [592] = 489, - [593] = 500, - [594] = 483, + [592] = 592, + [593] = 593, + [594] = 594, [595] = 595, - [596] = 148, - [597] = 157, + [596] = 596, + [597] = 597, [598] = 598, [599] = 599, - [600] = 164, + [600] = 600, [601] = 601, [602] = 602, [603] = 603, [604] = 604, [605] = 605, - [606] = 148, + [606] = 606, [607] = 607, - [608] = 157, + [608] = 608, [609] = 609, - [610] = 477, - [611] = 148, - [612] = 148, - [613] = 164, - [614] = 157, - [615] = 158, - [616] = 148, - [617] = 164, - [618] = 166, - [619] = 154, - [620] = 166, - [621] = 157, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 469, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 621, [622] = 622, - [623] = 158, + [623] = 623, [624] = 624, [625] = 625, [626] = 626, - [627] = 627, + [627] = 484, [628] = 628, [629] = 629, [630] = 630, - [631] = 522, - [632] = 515, + [631] = 631, + [632] = 632, [633] = 633, - [634] = 158, + [634] = 634, [635] = 635, [636] = 636, [637] = 637, @@ -3076,476 +3122,476 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [641] = 641, [642] = 642, [643] = 643, - [644] = 504, - [645] = 503, + [644] = 644, + [645] = 484, [646] = 646, [647] = 647, [648] = 648, [649] = 649, - [650] = 650, - [651] = 482, - [652] = 652, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 483, - [658] = 658, - [659] = 500, - [660] = 660, - [661] = 661, - [662] = 491, - [663] = 663, - [664] = 664, - [665] = 154, - [666] = 489, - [667] = 490, - [668] = 652, - [669] = 656, - [670] = 653, - [671] = 655, - [672] = 658, - [673] = 643, - [674] = 660, - [675] = 661, - [676] = 539, - [677] = 641, - [678] = 640, - [679] = 664, - [680] = 637, - [681] = 663, - [682] = 652, - [683] = 635, - [684] = 684, - [685] = 654, - [686] = 635, - [687] = 515, - [688] = 650, - [689] = 648, - [690] = 647, - [691] = 629, - [692] = 646, - [693] = 649, - [694] = 148, - [695] = 642, - [696] = 166, - [697] = 604, - [698] = 629, - [699] = 603, - [700] = 627, - [701] = 587, - [702] = 572, - [703] = 565, - [704] = 564, - [705] = 504, - [706] = 558, - [707] = 609, - [708] = 526, - [709] = 503, - [710] = 527, - [711] = 482, - [712] = 528, - [713] = 533, - [714] = 534, - [715] = 535, - [716] = 536, - [717] = 537, - [718] = 684, - [719] = 538, - [720] = 541, - [721] = 542, - [722] = 543, - [723] = 544, - [724] = 545, - [725] = 546, - [726] = 547, - [727] = 548, - [728] = 639, - [729] = 638, - [730] = 636, - [731] = 551, - [732] = 552, - [733] = 684, - [734] = 554, - [735] = 555, - [736] = 556, - [737] = 557, - [738] = 626, - [739] = 560, - [740] = 561, - [741] = 562, - [742] = 563, - [743] = 633, - [744] = 627, - [745] = 626, - [746] = 630, - [747] = 154, - [748] = 628, - [749] = 607, - [750] = 566, - [751] = 567, - [752] = 605, - [753] = 568, - [754] = 569, - [755] = 570, - [756] = 622, - [757] = 571, - [758] = 164, - [759] = 602, - [760] = 601, - [761] = 574, - [762] = 599, - [763] = 576, - [764] = 577, - [765] = 598, - [766] = 578, - [767] = 579, - [768] = 580, - [769] = 595, - [770] = 581, - [771] = 591, - [772] = 582, - [773] = 589, - [774] = 583, - [775] = 586, - [776] = 524, - [777] = 589, - [778] = 591, - [779] = 595, - [780] = 524, - [781] = 598, - [782] = 599, - [783] = 586, - [784] = 583, - [785] = 582, - [786] = 601, - [787] = 602, - [788] = 581, - [789] = 580, - [790] = 579, - [791] = 578, - [792] = 577, - [793] = 605, - [794] = 607, - [795] = 628, - [796] = 491, - [797] = 490, - [798] = 489, - [799] = 576, - [800] = 630, - [801] = 574, - [802] = 571, - [803] = 633, - [804] = 570, - [805] = 569, - [806] = 636, - [807] = 638, - [808] = 639, - [809] = 568, - [810] = 567, - [811] = 148, - [812] = 157, - [813] = 164, - [814] = 566, - [815] = 684, - [816] = 148, - [817] = 563, - [818] = 157, - [819] = 562, - [820] = 561, - [821] = 560, - [822] = 557, - [823] = 556, - [824] = 148, - [825] = 555, - [826] = 157, - [827] = 554, - [828] = 522, - [829] = 552, - [830] = 642, - [831] = 551, - [832] = 625, - [833] = 624, - [834] = 548, - [835] = 547, - [836] = 646, - [837] = 647, - [838] = 546, - [839] = 545, - [840] = 544, - [841] = 648, - [842] = 543, - [843] = 542, - [844] = 541, - [845] = 538, - [846] = 537, - [847] = 500, - [848] = 536, - [849] = 535, - [850] = 534, - [851] = 533, - [852] = 528, - [853] = 527, - [854] = 653, - [855] = 526, - [856] = 609, - [857] = 558, - [858] = 654, - [859] = 564, - [860] = 565, - [861] = 572, - [862] = 587, - [863] = 637, - [864] = 624, - [865] = 640, - [866] = 603, - [867] = 604, - [868] = 625, - [869] = 641, - [870] = 643, - [871] = 655, - [872] = 649, - [873] = 158, - [874] = 483, - [875] = 684, - [876] = 158, - [877] = 157, - [878] = 656, - [879] = 650, - [880] = 661, - [881] = 539, - [882] = 663, - [883] = 883, - [884] = 660, - [885] = 664, - [886] = 658, - [887] = 622, - [888] = 148, - [889] = 630, - [890] = 658, - [891] = 556, - [892] = 526, - [893] = 660, - [894] = 661, - [895] = 578, - [896] = 579, - [897] = 580, - [898] = 555, - [899] = 581, - [900] = 539, - [901] = 609, - [902] = 604, - [903] = 582, - [904] = 583, - [905] = 586, - [906] = 524, - [907] = 589, - [908] = 591, - [909] = 664, - [910] = 595, - [911] = 528, - [912] = 598, - [913] = 883, - [914] = 533, - [915] = 599, - [916] = 534, - [917] = 603, + [650] = 156, + [651] = 651, + [652] = 158, + [653] = 157, + [654] = 158, + [655] = 157, + [656] = 154, + [657] = 152, + [658] = 156, + [659] = 151, + [660] = 154, + [661] = 152, + [662] = 151, + [663] = 152, + [664] = 154, + [665] = 151, + [666] = 152, + [667] = 154, + [668] = 151, + [669] = 152, + [670] = 151, + [671] = 625, + [672] = 572, + [673] = 588, + [674] = 587, + [675] = 586, + [676] = 585, + [677] = 151, + [678] = 151, + [679] = 679, + [680] = 584, + [681] = 582, + [682] = 156, + [683] = 152, + [684] = 581, + [685] = 580, + [686] = 154, + [687] = 151, + [688] = 579, + [689] = 578, + [690] = 577, + [691] = 576, + [692] = 574, + [693] = 573, + [694] = 572, + [695] = 571, + [696] = 570, + [697] = 569, + [698] = 568, + [699] = 152, + [700] = 567, + [701] = 524, + [702] = 152, + [703] = 566, + [704] = 565, + [705] = 154, + [706] = 562, + [707] = 560, + [708] = 559, + [709] = 558, + [710] = 557, + [711] = 651, + [712] = 556, + [713] = 551, + [714] = 499, + [715] = 679, + [716] = 550, + [717] = 549, + [718] = 495, + [719] = 679, + [720] = 494, + [721] = 156, + [722] = 649, + [723] = 648, + [724] = 485, + [725] = 548, + [726] = 544, + [727] = 525, + [728] = 542, + [729] = 151, + [730] = 651, + [731] = 647, + [732] = 541, + [733] = 646, + [734] = 538, + [735] = 642, + [736] = 641, + [737] = 640, + [738] = 639, + [739] = 638, + [740] = 637, + [741] = 636, + [742] = 635, + [743] = 634, + [744] = 633, + [745] = 632, + [746] = 631, + [747] = 630, + [748] = 629, + [749] = 628, + [750] = 543, + [751] = 589, + [752] = 590, + [753] = 591, + [754] = 626, + [755] = 592, + [756] = 152, + [757] = 644, + [758] = 593, + [759] = 594, + [760] = 595, + [761] = 596, + [762] = 643, + [763] = 642, + [764] = 624, + [765] = 623, + [766] = 641, + [767] = 622, + [768] = 621, + [769] = 620, + [770] = 619, + [771] = 618, + [772] = 616, + [773] = 615, + [774] = 614, + [775] = 613, + [776] = 612, + [777] = 611, + [778] = 610, + [779] = 609, + [780] = 608, + [781] = 607, + [782] = 606, + [783] = 605, + [784] = 604, + [785] = 603, + [786] = 602, + [787] = 601, + [788] = 679, + [789] = 600, + [790] = 597, + [791] = 649, + [792] = 648, + [793] = 599, + [794] = 598, + [795] = 640, + [796] = 597, + [797] = 598, + [798] = 599, + [799] = 596, + [800] = 639, + [801] = 595, + [802] = 594, + [803] = 593, + [804] = 638, + [805] = 637, + [806] = 592, + [807] = 636, + [808] = 591, + [809] = 590, + [810] = 589, + [811] = 493, + [812] = 490, + [813] = 489, + [814] = 600, + [815] = 635, + [816] = 634, + [817] = 601, + [818] = 481, + [819] = 602, + [820] = 603, + [821] = 604, + [822] = 605, + [823] = 606, + [824] = 607, + [825] = 608, + [826] = 609, + [827] = 588, + [828] = 587, + [829] = 586, + [830] = 585, + [831] = 584, + [832] = 610, + [833] = 679, + [834] = 582, + [835] = 611, + [836] = 581, + [837] = 580, + [838] = 579, + [839] = 578, + [840] = 577, + [841] = 576, + [842] = 643, + [843] = 574, + [844] = 633, + [845] = 573, + [846] = 158, + [847] = 571, + [848] = 570, + [849] = 538, + [850] = 632, + [851] = 569, + [852] = 568, + [853] = 567, + [854] = 524, + [855] = 566, + [856] = 565, + [857] = 541, + [858] = 562, + [859] = 560, + [860] = 559, + [861] = 612, + [862] = 558, + [863] = 613, + [864] = 864, + [865] = 631, + [866] = 630, + [867] = 629, + [868] = 488, + [869] = 647, + [870] = 646, + [871] = 614, + [872] = 557, + [873] = 556, + [874] = 615, + [875] = 616, + [876] = 551, + [877] = 550, + [878] = 549, + [879] = 618, + [880] = 619, + [881] = 620, + [882] = 621, + [883] = 622, + [884] = 623, + [885] = 624, + [886] = 625, + [887] = 157, + [888] = 542, + [889] = 626, + [890] = 525, + [891] = 544, + [892] = 543, + [893] = 548, + [894] = 644, + [895] = 486, + [896] = 628, + [897] = 579, + [898] = 644, + [899] = 642, + [900] = 598, + [901] = 599, + [902] = 640, + [903] = 648, + [904] = 590, + [905] = 639, + [906] = 649, + [907] = 557, + [908] = 556, + [909] = 643, + [910] = 608, + [911] = 626, + [912] = 152, + [913] = 625, + [914] = 600, + [915] = 638, + [916] = 550, + [917] = 544, [918] = 601, - [919] = 602, - [920] = 551, - [921] = 552, - [922] = 535, - [923] = 654, - [924] = 587, - [925] = 622, - [926] = 649, - [927] = 639, - [928] = 653, - [929] = 558, - [930] = 607, - [931] = 931, - [932] = 628, - [933] = 157, - [934] = 638, - [935] = 527, - [936] = 564, - [937] = 536, - [938] = 663, - [939] = 567, - [940] = 624, - [941] = 626, - [942] = 627, - [943] = 633, - [944] = 537, - [945] = 565, - [946] = 554, - [947] = 931, - [948] = 538, - [949] = 577, - [950] = 576, - [951] = 541, - [952] = 637, - [953] = 563, - [954] = 650, - [955] = 542, - [956] = 605, - [957] = 640, - [958] = 648, - [959] = 543, - [960] = 625, - [961] = 647, - [962] = 560, - [963] = 646, - [964] = 642, - [965] = 566, - [966] = 656, - [967] = 635, - [968] = 548, - [969] = 547, - [970] = 561, - [971] = 562, - [972] = 557, - [973] = 574, - [974] = 546, - [975] = 545, - [976] = 544, - [977] = 571, - [978] = 570, - [979] = 641, - [980] = 643, - [981] = 636, - [982] = 655, - [983] = 931, - [984] = 569, - [985] = 572, - [986] = 568, - [987] = 629, - [988] = 652, - [989] = 989, - [990] = 990, - [991] = 991, - [992] = 992, - [993] = 993, - [994] = 994, - [995] = 995, - [996] = 996, - [997] = 622, - [998] = 998, - [999] = 999, - [1000] = 1000, + [919] = 637, + [920] = 609, + [921] = 864, + [922] = 922, + [923] = 624, + [924] = 548, + [925] = 525, + [926] = 542, + [927] = 636, + [928] = 635, + [929] = 623, + [930] = 634, + [931] = 633, + [932] = 632, + [933] = 631, + [934] = 630, + [935] = 151, + [936] = 651, + [937] = 629, + [938] = 922, + [939] = 628, + [940] = 606, + [941] = 596, + [942] = 595, + [943] = 551, + [944] = 594, + [945] = 593, + [946] = 538, + [947] = 602, + [948] = 592, + [949] = 591, + [950] = 588, + [951] = 587, + [952] = 586, + [953] = 585, + [954] = 584, + [955] = 582, + [956] = 581, + [957] = 580, + [958] = 641, + [959] = 597, + [960] = 578, + [961] = 577, + [962] = 589, + [963] = 576, + [964] = 574, + [965] = 573, + [966] = 572, + [967] = 622, + [968] = 621, + [969] = 620, + [970] = 619, + [971] = 618, + [972] = 616, + [973] = 615, + [974] = 614, + [975] = 571, + [976] = 570, + [977] = 569, + [978] = 568, + [979] = 567, + [980] = 603, + [981] = 613, + [982] = 612, + [983] = 611, + [984] = 524, + [985] = 566, + [986] = 565, + [987] = 562, + [988] = 560, + [989] = 559, + [990] = 558, + [991] = 647, + [992] = 922, + [993] = 549, + [994] = 541, + [995] = 610, + [996] = 543, + [997] = 646, + [998] = 607, + [999] = 605, + [1000] = 604, [1001] = 1001, [1002] = 1002, [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, - [1007] = 1006, - [1008] = 998, - [1009] = 1009, - [1010] = 1006, - [1011] = 1006, - [1012] = 998, - [1013] = 996, - [1014] = 1006, - [1015] = 995, + [1007] = 1007, + [1008] = 1008, + [1009] = 651, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1010, + [1014] = 1014, + [1015] = 1014, [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 622, - [1022] = 1016, - [1023] = 1009, - [1024] = 1009, + [1021] = 1021, + [1022] = 1022, + [1023] = 1022, + [1024] = 1024, [1025] = 1025, - [1026] = 994, - [1027] = 998, - [1028] = 1018, - [1029] = 1020, - [1030] = 1016, - [1031] = 995, - [1032] = 989, - [1033] = 998, - [1034] = 992, - [1035] = 1035, - [1036] = 998, - [1037] = 993, - [1038] = 1009, - [1039] = 991, - [1040] = 1016, - [1041] = 1009, - [1042] = 1016, - [1043] = 1006, - [1044] = 1025, - [1045] = 1035, - [1046] = 1046, - [1047] = 995, - [1048] = 995, - [1049] = 1049, + [1026] = 1008, + [1027] = 1027, + [1028] = 1028, + [1029] = 1024, + [1030] = 651, + [1031] = 1006, + [1032] = 1027, + [1033] = 1008, + [1034] = 1024, + [1035] = 1010, + [1036] = 1010, + [1037] = 1028, + [1038] = 1002, + [1039] = 1010, + [1040] = 1014, + [1041] = 1010, + [1042] = 1027, + [1043] = 1027, + [1044] = 1027, + [1045] = 1005, + [1046] = 1014, + [1047] = 1024, + [1048] = 1001, + [1049] = 1014, [1050] = 1050, - [1051] = 1046, - [1052] = 1018, - [1053] = 1006, - [1054] = 1020, - [1055] = 998, - [1056] = 1049, - [1057] = 998, - [1058] = 1017, - [1059] = 1019, - [1060] = 1006, - [1061] = 1006, - [1062] = 998, - [1063] = 1046, - [1064] = 995, - [1065] = 1050, - [1066] = 1066, - [1067] = 635, - [1068] = 1068, - [1069] = 1069, - [1070] = 629, - [1071] = 143, - [1072] = 1072, - [1073] = 1073, - [1074] = 626, - [1075] = 1075, - [1076] = 627, - [1077] = 1077, - [1078] = 1078, + [1051] = 1024, + [1052] = 1052, + [1053] = 1014, + [1054] = 1004, + [1055] = 1003, + [1056] = 1008, + [1057] = 1057, + [1058] = 1008, + [1059] = 1059, + [1060] = 1052, + [1061] = 1050, + [1062] = 1059, + [1063] = 1063, + [1064] = 1014, + [1065] = 1010, + [1066] = 1057, + [1067] = 1028, + [1068] = 1022, + [1069] = 1010, + [1070] = 1010, + [1071] = 1025, + [1072] = 1021, + [1073] = 1014, + [1074] = 1014, + [1075] = 1059, + [1076] = 1008, + [1077] = 1063, + [1078] = 135, [1079] = 1079, - [1080] = 624, - [1081] = 625, - [1082] = 158, - [1083] = 164, + [1080] = 1080, + [1081] = 643, + [1082] = 1082, + [1083] = 644, [1084] = 1084, [1085] = 1085, [1086] = 1086, - [1087] = 1087, + [1087] = 648, [1088] = 1088, - [1089] = 1089, + [1089] = 649, [1090] = 1090, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, + [1091] = 646, + [1092] = 156, + [1093] = 647, [1094] = 1094, - [1095] = 164, - [1096] = 158, - [1097] = 148, - [1098] = 148, + [1095] = 154, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, [1099] = 1099, [1100] = 1100, [1101] = 1101, - [1102] = 1102, - [1103] = 157, + [1102] = 157, + [1103] = 1103, [1104] = 1104, - [1105] = 154, + [1105] = 1105, [1106] = 1106, [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 157, - [1111] = 1068, - [1112] = 1112, - [1113] = 1069, + [1110] = 1110, + [1111] = 1111, + [1112] = 1080, + [1113] = 1113, [1114] = 1114, [1115] = 1115, [1116] = 1116, @@ -3555,25 +3601,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1120] = 1120, [1121] = 1121, [1122] = 1122, - [1123] = 1123, + [1123] = 1079, [1124] = 1124, - [1125] = 1125, - [1126] = 1066, + [1125] = 156, + [1126] = 1126, [1127] = 1127, - [1128] = 1128, - [1129] = 1129, + [1128] = 152, + [1129] = 151, [1130] = 1130, [1131] = 1131, [1132] = 1132, [1133] = 1133, - [1134] = 1134, + [1134] = 151, [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 166, + [1141] = 1141, [1142] = 1142, [1143] = 1143, [1144] = 1144, @@ -3581,27 +3627,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1146] = 1146, [1147] = 1147, [1148] = 1148, - [1149] = 1149, + [1149] = 158, [1150] = 1150, [1151] = 1151, [1152] = 1152, - [1153] = 1153, + [1153] = 152, [1154] = 1154, [1155] = 1155, - [1156] = 154, - [1157] = 1157, + [1156] = 1156, + [1157] = 154, [1158] = 1158, [1159] = 1159, - [1160] = 1160, + [1160] = 1082, [1161] = 1161, [1162] = 1162, [1163] = 1163, [1164] = 1164, [1165] = 1165, - [1166] = 1166, + [1166] = 157, [1167] = 1167, [1168] = 1168, - [1169] = 166, + [1169] = 1169, [1170] = 1170, [1171] = 1171, [1172] = 1172, @@ -3610,363 +3656,363 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1175] = 1175, [1176] = 1176, [1177] = 1177, - [1178] = 1148, + [1178] = 1178, [1179] = 1179, - [1180] = 1094, + [1180] = 1180, [1181] = 1181, - [1182] = 1123, - [1183] = 1177, - [1184] = 1175, - [1185] = 1170, - [1186] = 1167, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, [1187] = 1187, - [1188] = 1188, - [1189] = 1155, - [1190] = 1135, - [1191] = 1130, - [1192] = 1127, - [1193] = 1125, - [1194] = 1124, - [1195] = 1120, - [1196] = 1119, - [1197] = 1118, - [1198] = 1117, - [1199] = 1116, - [1200] = 1089, - [1201] = 1091, - [1202] = 1075, - [1203] = 1203, - [1204] = 1204, - [1205] = 1181, - [1206] = 1206, - [1207] = 1128, - [1208] = 1077, - [1209] = 1078, - [1210] = 1188, - [1211] = 1181, - [1212] = 1212, - [1213] = 1145, - [1214] = 1148, - [1215] = 1150, - [1216] = 1187, - [1217] = 1188, - [1218] = 1121, - [1219] = 1073, - [1220] = 1079, - [1221] = 1168, - [1222] = 1181, - [1223] = 1072, - [1224] = 1187, - [1225] = 1162, - [1226] = 1187, - [1227] = 1188, - [1228] = 1187, - [1229] = 1072, - [1230] = 1188, - [1231] = 1168, - [1232] = 1079, - [1233] = 1181, - [1234] = 1075, - [1235] = 1162, - [1236] = 143, - [1237] = 1237, - [1238] = 1150, - [1239] = 143, - [1240] = 1145, - [1241] = 1181, - [1242] = 1091, - [1243] = 1089, - [1244] = 1116, - [1245] = 1117, - [1246] = 1118, - [1247] = 1119, - [1248] = 1120, - [1249] = 1124, - [1250] = 1125, - [1251] = 1127, - [1252] = 1130, - [1253] = 1135, - [1254] = 1155, - [1255] = 1167, - [1256] = 1170, - [1257] = 1175, - [1258] = 1073, - [1259] = 1094, - [1260] = 1123, - [1261] = 1121, - [1262] = 1262, - [1263] = 1101, - [1264] = 1146, - [1265] = 1265, - [1266] = 1266, - [1267] = 1144, - [1268] = 1129, - [1269] = 1269, - [1270] = 1158, - [1271] = 1271, - [1272] = 1272, - [1273] = 1132, - [1274] = 1274, - [1275] = 1092, - [1276] = 1133, - [1277] = 1134, - [1278] = 1157, - [1279] = 1279, - [1280] = 1075, - [1281] = 1114, - [1282] = 1279, - [1283] = 1085, - [1284] = 1284, - [1285] = 1285, - [1286] = 1140, - [1287] = 1265, - [1288] = 1072, - [1289] = 1139, - [1290] = 1138, - [1291] = 1136, - [1292] = 1079, - [1293] = 1160, - [1294] = 1161, - [1295] = 1265, - [1296] = 1159, - [1297] = 1072, - [1298] = 1165, + [1188] = 158, + [1189] = 1189, + [1190] = 1190, + [1191] = 1104, + [1192] = 1109, + [1193] = 1108, + [1194] = 1107, + [1195] = 1106, + [1196] = 1105, + [1197] = 1104, + [1198] = 1103, + [1199] = 1096, + [1200] = 1100, + [1201] = 1201, + [1202] = 1202, + [1203] = 1167, + [1204] = 1154, + [1205] = 1155, + [1206] = 1159, + [1207] = 1117, + [1208] = 1119, + [1209] = 1209, + [1210] = 1201, + [1211] = 1211, + [1212] = 1136, + [1213] = 1088, + [1214] = 1159, + [1215] = 1111, + [1216] = 1201, + [1217] = 1084, + [1218] = 1155, + [1219] = 1202, + [1220] = 1220, + [1221] = 1211, + [1222] = 1211, + [1223] = 1223, + [1224] = 1211, + [1225] = 1179, + [1226] = 1098, + [1227] = 1202, + [1228] = 1201, + [1229] = 1182, + [1230] = 1182, + [1231] = 1110, + [1232] = 1136, + [1233] = 1119, + [1234] = 1211, + [1235] = 1154, + [1236] = 1100, + [1237] = 1084, + [1238] = 1211, + [1239] = 1239, + [1240] = 1085, + [1241] = 1175, + [1242] = 1173, + [1243] = 1086, + [1244] = 1170, + [1245] = 1096, + [1246] = 1103, + [1247] = 1094, + [1248] = 1131, + [1249] = 1202, + [1250] = 1105, + [1251] = 1106, + [1252] = 1133, + [1253] = 1107, + [1254] = 135, + [1255] = 1202, + [1256] = 1094, + [1257] = 1111, + [1258] = 1131, + [1259] = 1108, + [1260] = 1170, + [1261] = 1109, + [1262] = 1173, + [1263] = 1110, + [1264] = 1175, + [1265] = 1117, + [1266] = 135, + [1267] = 1201, + [1268] = 1090, + [1269] = 1088, + [1270] = 1270, + [1271] = 1133, + [1272] = 1179, + [1273] = 1090, + [1274] = 1113, + [1275] = 1275, + [1276] = 1142, + [1277] = 1147, + [1278] = 1151, + [1279] = 1165, + [1280] = 1280, + [1281] = 1281, + [1282] = 1190, + [1283] = 1116, + [1284] = 1158, + [1285] = 1099, + [1286] = 1139, + [1287] = 1132, + [1288] = 1169, + [1289] = 1114, + [1290] = 1290, + [1291] = 1084, + [1292] = 1292, + [1293] = 1292, + [1294] = 1294, + [1295] = 1171, + [1296] = 1172, + [1297] = 1174, + [1298] = 1183, [1299] = 1299, - [1300] = 1285, + [1300] = 1300, [1301] = 1301, - [1302] = 1137, - [1303] = 1142, - [1304] = 1279, - [1305] = 1115, - [1306] = 1179, + [1302] = 1290, + [1303] = 1303, + [1304] = 1304, + [1305] = 1290, + [1306] = 1306, [1307] = 1307, - [1308] = 1122, - [1309] = 1163, - [1310] = 1166, - [1311] = 1279, - [1312] = 1174, - [1313] = 1090, - [1314] = 1112, - [1315] = 1265, - [1316] = 1265, - [1317] = 1073, - [1318] = 1318, - [1319] = 153, - [1320] = 1265, - [1321] = 1321, - [1322] = 1075, - [1323] = 1073, - [1324] = 1324, - [1325] = 1176, - [1326] = 1326, - [1327] = 162, - [1328] = 1171, - [1329] = 1265, - [1330] = 1330, - [1331] = 1152, - [1332] = 1299, - [1333] = 1299, - [1334] = 1102, - [1335] = 1112, - [1336] = 1318, - [1337] = 1109, - [1338] = 1164, - [1339] = 1079, - [1340] = 1299, - [1341] = 1104, - [1342] = 1100, - [1343] = 1099, - [1344] = 1149, - [1345] = 1143, - [1346] = 1147, - [1347] = 1154, - [1348] = 150, - [1349] = 1272, - [1350] = 151, - [1351] = 152, - [1352] = 163, - [1353] = 1353, - [1354] = 1093, - [1355] = 1279, - [1356] = 161, - [1357] = 167, - [1358] = 1153, - [1359] = 1084, - [1360] = 1151, - [1361] = 1173, - [1362] = 1172, - [1363] = 1108, - [1364] = 1088, - [1365] = 1299, - [1366] = 1106, - [1367] = 1107, - [1368] = 1087, - [1369] = 1131, - [1370] = 1330, - [1371] = 1086, - [1372] = 1284, - [1373] = 1094, - [1374] = 1374, - [1375] = 1120, - [1376] = 1121, - [1377] = 1091, - [1378] = 1167, - [1379] = 1379, - [1380] = 1168, - [1381] = 1379, - [1382] = 1379, - [1383] = 1089, - [1384] = 1384, - [1385] = 1116, + [1308] = 1164, + [1309] = 1127, + [1310] = 1303, + [1311] = 1144, + [1312] = 1137, + [1313] = 1292, + [1314] = 1290, + [1315] = 1290, + [1316] = 1185, + [1317] = 1140, + [1318] = 1163, + [1319] = 1126, + [1320] = 1290, + [1321] = 1124, + [1322] = 166, + [1323] = 1088, + [1324] = 1281, + [1325] = 1325, + [1326] = 1275, + [1327] = 1101, + [1328] = 1162, + [1329] = 1176, + [1330] = 1178, + [1331] = 159, + [1332] = 1141, + [1333] = 1145, + [1334] = 1146, + [1335] = 1090, + [1336] = 1336, + [1337] = 1161, + [1338] = 1088, + [1339] = 1339, + [1340] = 1303, + [1341] = 1090, + [1342] = 1290, + [1343] = 1150, + [1344] = 1306, + [1345] = 1094, + [1346] = 1346, + [1347] = 1299, + [1348] = 1180, + [1349] = 1349, + [1350] = 1156, + [1351] = 1138, + [1352] = 1336, + [1353] = 1184, + [1354] = 165, + [1355] = 1186, + [1356] = 1168, + [1357] = 1303, + [1358] = 160, + [1359] = 1187, + [1360] = 1360, + [1361] = 1292, + [1362] = 1292, + [1363] = 1177, + [1364] = 1177, + [1365] = 1121, + [1366] = 1181, + [1367] = 161, + [1368] = 162, + [1369] = 1097, + [1370] = 1143, + [1371] = 1135, + [1372] = 1130, + [1373] = 1189, + [1374] = 1152, + [1375] = 1118, + [1376] = 1122, + [1377] = 164, + [1378] = 1084, + [1379] = 1303, + [1380] = 1094, + [1381] = 1120, + [1382] = 1148, + [1383] = 1115, + [1384] = 163, + [1385] = 1385, [1386] = 1386, [1387] = 1387, - [1388] = 1123, - [1389] = 1384, - [1390] = 1379, - [1391] = 1155, - [1392] = 1124, - [1393] = 1117, - [1394] = 1135, - [1395] = 1118, - [1396] = 1130, - [1397] = 1119, - [1398] = 1384, - [1399] = 1170, - [1400] = 1127, - [1401] = 1379, - [1402] = 1402, - [1403] = 1125, - [1404] = 1384, - [1405] = 1405, - [1406] = 1162, - [1407] = 1175, - [1408] = 1150, - [1409] = 1384, - [1410] = 1145, - [1411] = 1148, - [1412] = 1353, - [1413] = 1413, - [1414] = 1127, - [1415] = 1162, - [1416] = 1116, - [1417] = 1117, - [1418] = 1118, - [1419] = 1079, - [1420] = 1072, - [1421] = 1179, - [1422] = 1422, - [1423] = 1119, - [1424] = 1073, - [1425] = 1120, + [1388] = 1385, + [1389] = 1385, + [1390] = 1386, + [1391] = 1307, + [1392] = 1385, + [1393] = 1179, + [1394] = 1175, + [1395] = 1173, + [1396] = 1170, + [1397] = 1397, + [1398] = 1119, + [1399] = 1386, + [1400] = 1117, + [1401] = 1401, + [1402] = 1154, + [1403] = 1403, + [1404] = 1111, + [1405] = 1108, + [1406] = 1110, + [1407] = 1386, + [1408] = 1109, + [1409] = 1386, + [1410] = 1410, + [1411] = 1107, + [1412] = 1106, + [1413] = 1105, + [1414] = 1104, + [1415] = 1103, + [1416] = 1096, + [1417] = 1100, + [1418] = 1385, + [1419] = 1155, + [1420] = 1182, + [1421] = 1159, + [1422] = 1136, + [1423] = 1131, + [1424] = 1133, + [1425] = 1096, [1426] = 1426, - [1427] = 1124, - [1428] = 1413, - [1429] = 1091, - [1430] = 1121, - [1431] = 1123, - [1432] = 1089, - [1433] = 1148, + [1427] = 1281, + [1428] = 1136, + [1429] = 1182, + [1430] = 1179, + [1431] = 1175, + [1432] = 1173, + [1433] = 1170, [1434] = 1426, - [1435] = 1318, - [1436] = 1413, - [1437] = 1094, - [1438] = 1150, - [1439] = 1175, - [1440] = 1125, - [1441] = 1168, - [1442] = 1413, - [1443] = 1170, - [1444] = 1413, - [1445] = 1167, - [1446] = 1145, + [1435] = 1426, + [1436] = 1436, + [1437] = 1159, + [1438] = 1088, + [1439] = 1094, + [1440] = 1084, + [1441] = 1426, + [1442] = 1442, + [1443] = 1131, + [1444] = 1119, + [1445] = 1117, + [1446] = 1133, [1447] = 1155, - [1448] = 1135, - [1449] = 1130, - [1450] = 1450, - [1451] = 1450, - [1452] = 1452, - [1453] = 1452, - [1454] = 1452, - [1455] = 1073, - [1456] = 1072, - [1457] = 1271, - [1458] = 1452, - [1459] = 1452, - [1460] = 1452, - [1461] = 1079, - [1462] = 1075, - [1463] = 1112, - [1464] = 1452, + [1448] = 1111, + [1449] = 1154, + [1450] = 1100, + [1451] = 1436, + [1452] = 1190, + [1453] = 1103, + [1454] = 1104, + [1455] = 1105, + [1456] = 1106, + [1457] = 1110, + [1458] = 1107, + [1459] = 1426, + [1460] = 1109, + [1461] = 1108, + [1462] = 1462, + [1463] = 1177, + [1464] = 1304, [1465] = 1465, - [1466] = 1466, - [1467] = 1466, - [1468] = 1466, - [1469] = 1466, - [1470] = 1470, - [1471] = 1471, - [1472] = 1466, - [1473] = 1466, - [1474] = 1470, - [1475] = 1466, - [1476] = 1470, - [1477] = 1470, - [1478] = 1466, - [1479] = 1470, - [1480] = 1470, - [1481] = 1466, - [1482] = 1466, - [1483] = 1470, - [1484] = 1470, - [1485] = 1466, - [1486] = 1470, - [1487] = 1470, - [1488] = 1470, - [1489] = 1489, - [1490] = 1490, - [1491] = 1489, - [1492] = 1492, - [1493] = 1493, - [1494] = 1493, - [1495] = 1495, - [1496] = 1493, - [1497] = 1495, - [1498] = 1495, - [1499] = 1493, - [1500] = 1493, - [1501] = 1493, - [1502] = 1495, - [1503] = 1493, - [1504] = 1495, - [1505] = 1495, - [1506] = 1495, + [1466] = 1088, + [1467] = 1465, + [1468] = 1462, + [1469] = 1462, + [1470] = 1094, + [1471] = 1462, + [1472] = 1462, + [1473] = 1090, + [1474] = 1462, + [1475] = 1084, + [1476] = 1462, + [1477] = 1477, + [1478] = 1478, + [1479] = 1478, + [1480] = 1478, + [1481] = 1481, + [1482] = 1482, + [1483] = 1482, + [1484] = 1482, + [1485] = 1478, + [1486] = 1482, + [1487] = 1482, + [1488] = 1478, + [1489] = 1482, + [1490] = 1478, + [1491] = 1478, + [1492] = 1478, + [1493] = 1482, + [1494] = 1478, + [1495] = 1482, + [1496] = 1482, + [1497] = 1478, + [1498] = 1482, + [1499] = 1478, + [1500] = 1482, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, + [1504] = 1502, + [1505] = 1505, + [1506] = 1506, [1507] = 1507, - [1508] = 1507, - [1509] = 1507, - [1510] = 1507, + [1508] = 1506, + [1509] = 1506, + [1510] = 1506, [1511] = 1507, [1512] = 1507, - [1513] = 1513, - [1514] = 1507, - [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, + [1513] = 1507, + [1514] = 1506, + [1515] = 1507, + [1516] = 1506, + [1517] = 1506, + [1518] = 1507, + [1519] = 1507, [1520] = 1520, - [1521] = 1521, - [1522] = 1522, - [1523] = 1523, + [1521] = 1520, + [1522] = 1520, + [1523] = 1520, [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, + [1525] = 1520, + [1526] = 1520, + [1527] = 1520, [1528] = 1528, [1529] = 1529, - [1530] = 158, + [1530] = 1530, [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 164, + [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, @@ -3978,21 +4024,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1543] = 1543, [1544] = 1544, [1545] = 1545, - [1546] = 1546, + [1546] = 156, [1547] = 1547, - [1548] = 1548, + [1548] = 154, [1549] = 1549, [1550] = 1550, - [1551] = 1134, + [1551] = 1551, [1552] = 1552, [1553] = 1553, [1554] = 1554, [1555] = 1555, [1556] = 1556, - [1557] = 1132, + [1557] = 1557, [1558] = 1558, - [1559] = 1559, - [1560] = 1560, + [1559] = 152, + [1560] = 151, [1561] = 1561, [1562] = 1562, [1563] = 1563, @@ -4000,1254 +4046,1299 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1565] = 1565, [1566] = 1566, [1567] = 1567, - [1568] = 1535, + [1568] = 1568, [1569] = 1569, [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, - [1574] = 1086, + [1574] = 1574, [1575] = 1575, [1576] = 1576, - [1577] = 157, - [1578] = 148, + [1577] = 1577, + [1578] = 1578, [1579] = 1579, [1580] = 1580, [1581] = 1581, - [1582] = 1562, - [1583] = 1519, + [1582] = 1114, + [1583] = 1547, [1584] = 1584, - [1585] = 1518, - [1586] = 1567, - [1587] = 1581, - [1588] = 1521, - [1589] = 1589, - [1590] = 1521, + [1585] = 1585, + [1586] = 1586, + [1587] = 1587, + [1588] = 1140, + [1589] = 1139, + [1590] = 1590, [1591] = 1591, [1592] = 1592, [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 1593, - [1597] = 1597, - [1598] = 1594, + [1596] = 1596, + [1597] = 1595, + [1598] = 1596, [1599] = 1599, - [1600] = 1600, - [1601] = 1600, + [1600] = 1593, + [1601] = 1543, [1602] = 1602, - [1603] = 1599, - [1604] = 1536, + [1603] = 1539, + [1604] = 1543, [1605] = 1605, - [1606] = 1532, - [1607] = 1531, + [1606] = 1542, + [1607] = 1551, [1608] = 1608, - [1609] = 1609, - [1610] = 1593, + [1609] = 1552, + [1610] = 1610, [1611] = 1611, - [1612] = 1612, - [1613] = 1154, - [1614] = 1536, - [1615] = 1612, - [1616] = 1605, - [1617] = 1602, - [1618] = 1608, - [1619] = 1592, - [1620] = 1593, - [1621] = 1609, - [1622] = 1611, - [1623] = 1533, - [1624] = 1593, - [1625] = 1625, - [1626] = 1161, - [1627] = 1597, - [1628] = 1529, - [1629] = 1164, - [1630] = 1164, + [1612] = 1549, + [1613] = 1613, + [1614] = 1614, + [1615] = 1615, + [1616] = 1616, + [1617] = 1553, + [1618] = 1610, + [1619] = 1611, + [1620] = 1545, + [1621] = 1545, + [1622] = 1150, + [1623] = 1623, + [1624] = 1624, + [1625] = 1183, + [1626] = 1608, + [1627] = 1614, + [1628] = 1628, + [1629] = 1629, + [1630] = 1630, [1631] = 1631, - [1632] = 1595, - [1633] = 1633, - [1634] = 1154, + [1632] = 1623, + [1633] = 1611, + [1634] = 1628, [1635] = 1635, - [1636] = 1635, + [1636] = 1611, [1637] = 1637, - [1638] = 1638, - [1639] = 1639, - [1640] = 1637, - [1641] = 1625, - [1642] = 1642, - [1643] = 1637, - [1644] = 1642, - [1645] = 1161, - [1646] = 1591, + [1638] = 1616, + [1639] = 1635, + [1640] = 1629, + [1641] = 1631, + [1642] = 1611, + [1643] = 1630, + [1644] = 1624, + [1645] = 1180, + [1646] = 1637, [1647] = 1647, [1648] = 1648, - [1649] = 1637, - [1650] = 1650, - [1651] = 1631, - [1652] = 1650, - [1653] = 1637, - [1654] = 1648, - [1655] = 1633, - [1656] = 1639, + [1649] = 1649, + [1650] = 1613, + [1651] = 1649, + [1652] = 1652, + [1653] = 1652, + [1654] = 1654, + [1655] = 1655, + [1656] = 1652, [1657] = 1647, - [1658] = 1638, - [1659] = 1659, - [1660] = 1659, - [1661] = 1659, - [1662] = 1659, - [1663] = 1659, + [1658] = 1150, + [1659] = 1648, + [1660] = 1655, + [1661] = 1661, + [1662] = 1661, + [1663] = 1663, [1664] = 1664, - [1665] = 1665, - [1666] = 1664, - [1667] = 1664, - [1668] = 1664, - [1669] = 1665, - [1670] = 1665, - [1671] = 1665, - [1672] = 1672, - [1673] = 1672, - [1674] = 1672, + [1665] = 1180, + [1666] = 1652, + [1667] = 1183, + [1668] = 1663, + [1669] = 1669, + [1670] = 1615, + [1671] = 1664, + [1672] = 1654, + [1673] = 1669, + [1674] = 1652, [1675] = 1675, - [1676] = 1672, - [1677] = 1677, + [1676] = 1675, + [1677] = 1675, [1678] = 1678, [1679] = 1678, - [1680] = 1678, - [1681] = 1677, - [1682] = 1677, + [1680] = 1680, + [1681] = 1678, + [1682] = 1680, [1683] = 1678, - [1684] = 1677, - [1685] = 1685, - [1686] = 1686, - [1687] = 1687, - [1688] = 1686, - [1689] = 1685, - [1690] = 1687, - [1691] = 1691, - [1692] = 1686, + [1684] = 1675, + [1685] = 1675, + [1686] = 1680, + [1687] = 1680, + [1688] = 1688, + [1689] = 1689, + [1690] = 1689, + [1691] = 1689, + [1692] = 1689, [1693] = 1693, - [1694] = 1691, - [1695] = 1685, - [1696] = 1691, - [1697] = 1687, - [1698] = 1693, - [1699] = 1687, - [1700] = 1700, - [1701] = 1693, - [1702] = 1685, - [1703] = 1691, - [1704] = 1693, - [1705] = 1686, + [1694] = 1694, + [1695] = 1693, + [1696] = 1693, + [1697] = 1694, + [1698] = 1694, + [1699] = 1693, + [1700] = 1694, + [1701] = 1701, + [1702] = 1702, + [1703] = 1703, + [1704] = 1702, + [1705] = 1705, [1706] = 1706, - [1707] = 1707, + [1707] = 1706, [1708] = 1708, [1709] = 1709, - [1710] = 1710, - [1711] = 1711, - [1712] = 164, - [1713] = 1713, - [1714] = 1710, - [1715] = 1715, - [1716] = 1716, + [1710] = 1706, + [1711] = 1705, + [1712] = 1703, + [1713] = 1702, + [1714] = 1705, + [1715] = 1702, + [1716] = 1703, [1717] = 1717, - [1718] = 1718, - [1719] = 1711, - [1720] = 1720, - [1721] = 1711, - [1722] = 1722, - [1723] = 1710, - [1724] = 1716, - [1725] = 1716, + [1718] = 1705, + [1719] = 1706, + [1720] = 1717, + [1721] = 1717, + [1722] = 1703, + [1723] = 1717, + [1724] = 1724, + [1725] = 1725, [1726] = 1726, [1727] = 1727, - [1728] = 1710, + [1728] = 1728, [1729] = 1729, - [1730] = 1716, - [1731] = 1711, - [1732] = 1732, - [1733] = 1711, - [1734] = 1710, - [1735] = 1716, - [1736] = 1711, + [1730] = 1730, + [1731] = 1731, + [1732] = 1731, + [1733] = 1728, + [1734] = 1728, + [1735] = 1735, + [1736] = 1728, [1737] = 1737, - [1738] = 1711, - [1739] = 1739, - [1740] = 1740, - [1741] = 1741, - [1742] = 1742, - [1743] = 158, + [1738] = 1728, + [1739] = 1729, + [1740] = 1731, + [1741] = 154, + [1742] = 1731, + [1743] = 1743, [1744] = 1744, [1745] = 1745, - [1746] = 1746, - [1747] = 1747, - [1748] = 1745, - [1749] = 1745, - [1750] = 148, - [1751] = 1751, - [1752] = 1177, - [1753] = 1753, - [1754] = 1754, - [1755] = 1755, - [1756] = 1747, + [1746] = 1729, + [1747] = 1729, + [1748] = 1748, + [1749] = 1749, + [1750] = 1750, + [1751] = 1728, + [1752] = 1752, + [1753] = 1728, + [1754] = 1729, + [1755] = 156, + [1756] = 1756, [1757] = 1757, - [1758] = 1758, + [1758] = 1731, [1759] = 1759, - [1760] = 1745, - [1761] = 1718, + [1760] = 1760, + [1761] = 152, [1762] = 1762, - [1763] = 1763, - [1764] = 1754, - [1765] = 1765, + [1763] = 1743, + [1764] = 1184, + [1765] = 1748, [1766] = 1766, - [1767] = 1753, + [1767] = 1767, [1768] = 1768, - [1769] = 1747, - [1770] = 157, - [1771] = 456, - [1772] = 1720, - [1773] = 1729, - [1774] = 1535, - [1775] = 1775, - [1776] = 1727, - [1777] = 1747, - [1778] = 1747, - [1779] = 1717, - [1780] = 1754, + [1769] = 1769, + [1770] = 1769, + [1771] = 1771, + [1772] = 1772, + [1773] = 1760, + [1774] = 1774, + [1775] = 1757, + [1776] = 1776, + [1777] = 1777, + [1778] = 1778, + [1779] = 1779, + [1780] = 1780, [1781] = 1781, - [1782] = 1782, - [1783] = 1128, - [1784] = 1784, - [1785] = 1751, - [1786] = 1786, - [1787] = 1787, - [1788] = 1754, - [1789] = 1754, + [1782] = 1165, + [1783] = 1547, + [1784] = 1164, + [1785] = 1163, + [1786] = 1772, + [1787] = 1766, + [1788] = 1161, + [1789] = 1789, [1790] = 1790, [1791] = 1791, - [1792] = 1745, - [1793] = 1737, - [1794] = 1759, - [1795] = 1795, + [1792] = 1772, + [1793] = 1793, + [1794] = 1769, + [1795] = 1790, [1796] = 1796, - [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 1129, + [1797] = 1116, + [1798] = 1115, + [1799] = 1768, + [1800] = 1148, [1801] = 1801, - [1802] = 1802, - [1803] = 1114, - [1804] = 1796, + [1802] = 1167, + [1803] = 1803, + [1804] = 1768, [1805] = 1805, - [1806] = 1128, - [1807] = 1807, - [1808] = 1808, + [1806] = 1098, + [1807] = 1768, + [1808] = 1769, [1809] = 1809, - [1810] = 1810, - [1811] = 1087, - [1812] = 1812, - [1813] = 1798, - [1814] = 1799, - [1815] = 1088, - [1816] = 1801, - [1817] = 1177, - [1818] = 1818, - [1819] = 1819, - [1820] = 1819, + [1810] = 1137, + [1811] = 446, + [1812] = 151, + [1813] = 1769, + [1814] = 1814, + [1815] = 1815, + [1816] = 1749, + [1817] = 1735, + [1818] = 1768, + [1819] = 1762, + [1820] = 1820, [1821] = 1821, - [1822] = 1802, - [1823] = 1823, + [1822] = 1822, + [1823] = 1772, [1824] = 1824, - [1825] = 1802, + [1825] = 1825, [1826] = 1826, [1827] = 1827, - [1828] = 1828, - [1829] = 1799, - [1830] = 1801, - [1831] = 1799, - [1832] = 1798, - [1833] = 1802, - [1834] = 1810, - [1835] = 1835, - [1836] = 1157, - [1837] = 1827, - [1838] = 1809, - [1839] = 1801, - [1840] = 1140, - [1841] = 1841, - [1842] = 1139, - [1843] = 1114, - [1844] = 1138, + [1828] = 1772, + [1829] = 1829, + [1830] = 1830, + [1831] = 1831, + [1832] = 1832, + [1833] = 1833, + [1834] = 1595, + [1835] = 1815, + [1836] = 1836, + [1837] = 1837, + [1838] = 1838, + [1839] = 1839, + [1840] = 1836, + [1841] = 1167, + [1842] = 1831, + [1843] = 1843, + [1844] = 1844, [1845] = 1845, - [1846] = 1824, - [1847] = 1129, + [1846] = 1846, + [1847] = 1832, [1848] = 1848, - [1849] = 1798, - [1850] = 1801, - [1851] = 1136, - [1852] = 1852, - [1853] = 1087, - [1854] = 1088, - [1855] = 1799, - [1856] = 1856, - [1857] = 1562, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, - [1861] = 1157, - [1862] = 1805, - [1863] = 1858, - [1864] = 1802, - [1865] = 1567, - [1866] = 1866, - [1867] = 1140, - [1868] = 1139, - [1869] = 1138, - [1870] = 1136, - [1871] = 1819, - [1872] = 1819, - [1873] = 1873, - [1874] = 1874, + [1849] = 1849, + [1850] = 1833, + [1851] = 1839, + [1852] = 1137, + [1853] = 1837, + [1854] = 1854, + [1855] = 1855, + [1856] = 1839, + [1857] = 1184, + [1858] = 1846, + [1859] = 1846, + [1860] = 1148, + [1861] = 1832, + [1862] = 1862, + [1863] = 1863, + [1864] = 1864, + [1865] = 1820, + [1866] = 1854, + [1867] = 1165, + [1868] = 1868, + [1869] = 1164, + [1870] = 1163, + [1871] = 1161, + [1872] = 1872, + [1873] = 1839, + [1874] = 1833, [1875] = 1875, - [1876] = 1876, - [1877] = 1877, - [1878] = 1878, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, + [1876] = 1593, + [1877] = 1832, + [1878] = 1836, + [1879] = 1832, + [1880] = 1846, + [1881] = 1833, [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1762, - [1888] = 1888, - [1889] = 1889, + [1883] = 1838, + [1884] = 1844, + [1885] = 1846, + [1886] = 1098, + [1887] = 1115, + [1888] = 1839, + [1889] = 1836, [1890] = 1890, - [1891] = 1891, + [1891] = 1116, [1892] = 1892, [1893] = 1893, [1894] = 1894, - [1895] = 1781, - [1896] = 1880, - [1897] = 1882, + [1895] = 1895, + [1896] = 1896, + [1897] = 1897, [1898] = 1898, - [1899] = 1899, + [1899] = 1781, [1900] = 1900, - [1901] = 1901, - [1902] = 1901, - [1903] = 1886, - [1904] = 1879, - [1905] = 1878, + [1901] = 1868, + [1902] = 1902, + [1903] = 1903, + [1904] = 1904, + [1905] = 1893, [1906] = 1906, - [1907] = 1877, + [1907] = 1893, [1908] = 1908, - [1909] = 1878, - [1910] = 1899, - [1911] = 1900, - [1912] = 1906, - [1913] = 1913, - [1914] = 1888, - [1915] = 1880, - [1916] = 1882, + [1909] = 1909, + [1910] = 1910, + [1911] = 1911, + [1912] = 1912, + [1913] = 1912, + [1914] = 1911, + [1915] = 1912, + [1916] = 1911, [1917] = 1917, - [1918] = 1888, - [1919] = 1919, - [1920] = 1889, - [1921] = 1890, - [1922] = 1898, + [1918] = 1918, + [1919] = 1896, + [1920] = 1920, + [1921] = 1894, + [1922] = 1922, [1923] = 1923, - [1924] = 1898, - [1925] = 1899, - [1926] = 1901, - [1927] = 1886, - [1928] = 1879, - [1929] = 1889, - [1930] = 1890, - [1931] = 1931, - [1932] = 1900, - [1933] = 1906, - [1934] = 1934, + [1924] = 1894, + [1925] = 1925, + [1926] = 1909, + [1927] = 1910, + [1928] = 1928, + [1929] = 1929, + [1930] = 1928, + [1931] = 1928, + [1932] = 1932, + [1933] = 1929, + [1934] = 1910, [1935] = 1935, - [1936] = 1880, - [1937] = 1882, - [1938] = 1888, - [1939] = 1889, - [1940] = 1890, - [1941] = 1898, - [1942] = 1899, - [1943] = 1901, - [1944] = 1886, - [1945] = 1879, - [1946] = 1878, - [1947] = 1900, - [1948] = 1906, - [1949] = 1949, - [1950] = 1934, + [1936] = 1909, + [1937] = 1925, + [1938] = 1903, + [1939] = 1917, + [1940] = 1918, + [1941] = 1892, + [1942] = 1821, + [1943] = 1825, + [1944] = 1944, + [1945] = 1894, + [1946] = 1920, + [1947] = 1947, + [1948] = 1948, + [1949] = 1911, + [1950] = 1896, [1951] = 1951, - [1952] = 1889, - [1953] = 1890, - [1954] = 1879, - [1955] = 1878, - [1956] = 1956, - [1957] = 1177, - [1958] = 1898, - [1959] = 1890, - [1960] = 1889, + [1952] = 1902, + [1953] = 1953, + [1954] = 1951, + [1955] = 1912, + [1956] = 1932, + [1957] = 1903, + [1958] = 1892, + [1959] = 1918, + [1960] = 1893, [1961] = 1961, - [1962] = 1128, - [1963] = 1821, - [1964] = 1874, + [1962] = 1906, + [1963] = 1918, + [1964] = 1951, [1965] = 1965, - [1966] = 1768, - [1967] = 1899, - [1968] = 1901, - [1969] = 1755, - [1970] = 1900, - [1971] = 1888, - [1972] = 1956, - [1973] = 1919, - [1974] = 1949, - [1975] = 1881, - [1976] = 1877, - [1977] = 1875, - [1978] = 1881, - [1979] = 1906, - [1980] = 1917, - [1981] = 1882, - [1982] = 1886, - [1983] = 1880, - [1984] = 1881, - [1985] = 1782, - [1986] = 1986, - [1987] = 1881, - [1988] = 1874, - [1989] = 1986, - [1990] = 1873, - [1991] = 477, - [1992] = 1917, - [1993] = 1879, - [1994] = 1878, - [1995] = 1995, - [1996] = 1986, - [1997] = 1873, - [1998] = 1917, - [1999] = 1986, - [2000] = 1873, - [2001] = 1876, - [2002] = 1917, - [2003] = 1986, - [2004] = 1873, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 2008, - [2009] = 491, - [2010] = 2010, - [2011] = 2011, + [1966] = 1912, + [1967] = 1911, + [1968] = 1968, + [1969] = 1951, + [1970] = 1932, + [1971] = 1971, + [1972] = 1972, + [1973] = 1829, + [1974] = 1951, + [1975] = 1917, + [1976] = 1976, + [1977] = 1944, + [1978] = 1893, + [1979] = 1912, + [1980] = 1911, + [1981] = 1903, + [1982] = 1896, + [1983] = 1902, + [1984] = 1984, + [1985] = 1985, + [1986] = 1892, + [1987] = 1898, + [1988] = 1822, + [1989] = 1920, + [1990] = 1990, + [1991] = 1932, + [1992] = 1920, + [1993] = 1993, + [1994] = 1922, + [1995] = 1923, + [1996] = 1922, + [1997] = 1925, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, + [2001] = 2001, + [2002] = 469, + [2003] = 1896, + [2004] = 1922, + [2005] = 1920, + [2006] = 1929, + [2007] = 1923, + [2008] = 1923, + [2009] = 1944, + [2010] = 1929, + [2011] = 1925, [2012] = 2012, - [2013] = 2013, - [2014] = 490, - [2015] = 489, - [2016] = 2012, - [2017] = 503, - [2018] = 2006, - [2019] = 2007, - [2020] = 2020, - [2021] = 2021, - [2022] = 2008, - [2023] = 2023, - [2024] = 500, - [2025] = 2007, - [2026] = 2008, - [2027] = 483, - [2028] = 482, - [2029] = 2029, + [2013] = 1976, + [2014] = 1917, + [2015] = 1903, + [2016] = 2016, + [2017] = 1961, + [2018] = 1928, + [2019] = 1928, + [2020] = 1894, + [2021] = 1935, + [2022] = 1904, + [2023] = 1910, + [2024] = 1909, + [2025] = 1925, + [2026] = 1918, + [2027] = 1910, + [2028] = 1929, + [2029] = 1917, [2030] = 2030, - [2031] = 515, - [2032] = 2007, - [2033] = 2033, + [2031] = 1910, + [2032] = 1909, + [2033] = 1909, [2034] = 2034, - [2035] = 2008, + [2035] = 2035, [2036] = 2036, [2037] = 2037, - [2038] = 2037, - [2039] = 522, - [2040] = 504, - [2041] = 622, + [2038] = 2038, + [2039] = 2039, + [2040] = 2040, + [2041] = 2041, [2042] = 2042, - [2043] = 2037, - [2044] = 1164, - [2045] = 2005, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, [2046] = 2046, - [2047] = 2013, - [2048] = 2048, - [2049] = 2049, - [2050] = 2050, - [2051] = 1595, - [2052] = 2037, - [2053] = 2037, - [2054] = 2054, - [2055] = 505, - [2056] = 1154, - [2057] = 2057, - [2058] = 2058, - [2059] = 2059, - [2060] = 2060, + [2047] = 2047, + [2048] = 493, + [2049] = 490, + [2050] = 2047, + [2051] = 2051, + [2052] = 2052, + [2053] = 489, + [2054] = 2038, + [2055] = 1615, + [2056] = 2037, + [2057] = 2036, + [2058] = 486, + [2059] = 2037, + [2060] = 2036, [2061] = 2061, - [2062] = 1161, + [2062] = 157, [2063] = 2063, [2064] = 2064, - [2065] = 2049, - [2066] = 2030, - [2067] = 2029, - [2068] = 2006, + [2065] = 2065, + [2066] = 2066, + [2067] = 2034, + [2068] = 2068, [2069] = 2069, - [2070] = 2070, - [2071] = 2036, - [2072] = 2033, + [2070] = 494, + [2071] = 495, + [2072] = 2072, [2073] = 2073, - [2074] = 2023, + [2074] = 2074, [2075] = 2075, [2076] = 2076, - [2077] = 2049, - [2078] = 2034, - [2079] = 2030, - [2080] = 2029, - [2081] = 2006, + [2077] = 2077, + [2078] = 2046, + [2079] = 2079, + [2080] = 2080, + [2081] = 2043, [2082] = 2082, - [2083] = 2083, - [2084] = 2049, + [2083] = 2052, + [2084] = 2084, [2085] = 2085, [2086] = 2086, - [2087] = 2046, - [2088] = 2008, - [2089] = 2036, - [2090] = 2033, - [2091] = 2023, - [2092] = 2092, - [2093] = 2093, - [2094] = 2049, + [2087] = 2087, + [2088] = 2069, + [2089] = 2051, + [2090] = 2043, + [2091] = 2091, + [2092] = 2046, + [2093] = 2076, + [2094] = 2069, [2095] = 2095, - [2096] = 2034, - [2097] = 2030, - [2098] = 2029, - [2099] = 2099, - [2100] = 2075, + [2096] = 2096, + [2097] = 2097, + [2098] = 2034, + [2099] = 2036, + [2100] = 2037, [2101] = 2101, - [2102] = 2006, - [2103] = 2073, + [2102] = 499, + [2103] = 2103, [2104] = 2104, [2105] = 2105, - [2106] = 2106, - [2107] = 2070, - [2108] = 2108, - [2109] = 2029, - [2110] = 2034, - [2111] = 2111, - [2112] = 2030, - [2113] = 2011, - [2114] = 2010, - [2115] = 1625, - [2116] = 154, - [2117] = 166, - [2118] = 1591, - [2119] = 158, - [2120] = 2050, - [2121] = 2007, - [2122] = 164, - [2123] = 148, - [2124] = 2064, - [2125] = 2061, - [2126] = 2059, - [2127] = 2058, - [2128] = 157, - [2129] = 2129, + [2106] = 2047, + [2107] = 651, + [2108] = 2045, + [2109] = 2109, + [2110] = 484, + [2111] = 488, + [2112] = 2042, + [2113] = 2039, + [2114] = 2114, + [2115] = 2076, + [2116] = 1150, + [2117] = 2043, + [2118] = 2046, + [2119] = 2119, + [2120] = 2076, + [2121] = 2047, + [2122] = 2038, + [2123] = 2037, + [2124] = 2036, + [2125] = 2125, + [2126] = 2066, + [2127] = 1180, + [2128] = 2075, + [2129] = 2069, [2130] = 2130, - [2131] = 2042, - [2132] = 2132, - [2133] = 2021, - [2134] = 2020, - [2135] = 2135, + [2131] = 2039, + [2132] = 2040, + [2133] = 2047, + [2134] = 2134, + [2135] = 2045, [2136] = 2136, - [2137] = 2042, - [2138] = 2138, - [2139] = 2036, - [2140] = 2140, - [2141] = 2033, - [2142] = 2023, - [2143] = 2036, - [2144] = 2033, - [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2054, - [2149] = 2048, - [2150] = 2150, - [2151] = 2151, - [2152] = 2023, - [2153] = 2153, - [2154] = 2154, - [2155] = 1570, - [2156] = 2156, - [2157] = 661, - [2158] = 2158, - [2159] = 2159, - [2160] = 2160, - [2161] = 2161, - [2162] = 2162, - [2163] = 2163, + [2137] = 2137, + [2138] = 2084, + [2139] = 2085, + [2140] = 2066, + [2141] = 2085, + [2142] = 2074, + [2143] = 2143, + [2144] = 151, + [2145] = 1183, + [2146] = 2035, + [2147] = 2086, + [2148] = 2041, + [2149] = 2073, + [2150] = 2086, + [2151] = 1613, + [2152] = 2038, + [2153] = 152, + [2154] = 2072, + [2155] = 2087, + [2156] = 2042, + [2157] = 2157, + [2158] = 156, + [2159] = 154, + [2160] = 2034, + [2161] = 2064, + [2162] = 2137, + [2163] = 2109, [2164] = 2164, - [2165] = 660, - [2166] = 2166, - [2167] = 2160, - [2168] = 2159, - [2169] = 2158, - [2170] = 2170, - [2171] = 2171, + [2165] = 2165, + [2166] = 2069, + [2167] = 2045, + [2168] = 2168, + [2169] = 2169, + [2170] = 2109, + [2171] = 2038, [2172] = 2172, - [2173] = 2173, + [2173] = 2066, [2174] = 2174, [2175] = 2175, - [2176] = 658, - [2177] = 2177, - [2178] = 2177, - [2179] = 2171, - [2180] = 2180, + [2176] = 2043, + [2177] = 2046, + [2178] = 1637, + [2179] = 2179, + [2180] = 2076, [2181] = 2181, - [2182] = 2166, - [2183] = 2183, - [2184] = 656, - [2185] = 2185, + [2182] = 2114, + [2183] = 481, + [2184] = 2184, + [2185] = 158, [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2185, - [2190] = 2181, - [2191] = 2162, - [2192] = 2192, + [2187] = 2066, + [2188] = 485, + [2189] = 2045, + [2190] = 2190, + [2191] = 2191, + [2192] = 2191, [2193] = 2193, - [2194] = 2161, - [2195] = 2170, + [2194] = 2194, + [2195] = 2195, [2196] = 2196, [2197] = 2197, [2198] = 2198, [2199] = 2199, - [2200] = 2200, - [2201] = 2187, - [2202] = 2202, - [2203] = 2203, - [2204] = 2204, - [2205] = 2199, + [2200] = 1585, + [2201] = 1584, + [2202] = 1555, + [2203] = 2197, + [2204] = 1558, + [2205] = 1571, [2206] = 2206, [2207] = 2207, - [2208] = 2206, - [2209] = 655, - [2210] = 2210, - [2211] = 643, - [2212] = 2212, + [2208] = 2208, + [2209] = 2209, + [2210] = 1572, + [2211] = 2211, + [2212] = 1576, [2213] = 2213, - [2214] = 2180, - [2215] = 2215, + [2214] = 1577, + [2215] = 1578, [2216] = 2216, [2217] = 2217, - [2218] = 2212, - [2219] = 641, - [2220] = 2193, - [2221] = 2200, - [2222] = 2222, - [2223] = 2223, - [2224] = 2203, - [2225] = 2162, - [2226] = 2160, - [2227] = 2204, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, + [2221] = 2221, + [2222] = 1581, + [2223] = 1564, + [2224] = 2224, + [2225] = 1556, + [2226] = 2226, + [2227] = 2227, [2228] = 2228, - [2229] = 640, - [2230] = 2230, - [2231] = 2213, - [2232] = 2232, - [2233] = 2215, - [2234] = 2163, - [2235] = 2217, - [2236] = 2236, + [2229] = 2229, + [2230] = 2195, + [2231] = 2231, + [2232] = 1561, + [2233] = 1562, + [2234] = 1563, + [2235] = 1567, + [2236] = 1568, [2237] = 2237, - [2238] = 2161, - [2239] = 2170, - [2240] = 2171, - [2241] = 2159, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 2245, - [2246] = 2154, - [2247] = 2180, - [2248] = 2166, + [2238] = 2238, + [2239] = 1569, + [2240] = 643, + [2241] = 2241, + [2242] = 538, + [2243] = 1590, + [2244] = 541, + [2245] = 2221, + [2246] = 2246, + [2247] = 2247, + [2248] = 2198, [2249] = 2249, - [2250] = 2188, - [2251] = 2251, - [2252] = 2188, - [2253] = 1579, + [2250] = 2250, + [2251] = 2216, + [2252] = 1557, + [2253] = 2253, [2254] = 2254, - [2255] = 2255, - [2256] = 2193, - [2257] = 2204, - [2258] = 637, - [2259] = 2259, - [2260] = 2260, - [2261] = 2261, - [2262] = 2262, - [2263] = 2222, - [2264] = 2158, - [2265] = 2228, - [2266] = 652, + [2255] = 1586, + [2256] = 2256, + [2257] = 1587, + [2258] = 2258, + [2259] = 2209, + [2260] = 2207, + [2261] = 2206, + [2262] = 2213, + [2263] = 2218, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, [2267] = 2267, [2268] = 2268, - [2269] = 2237, - [2270] = 2244, - [2271] = 2271, - [2272] = 663, - [2273] = 664, + [2269] = 2219, + [2270] = 1127, + [2271] = 2264, + [2272] = 2272, + [2273] = 2273, [2274] = 2274, [2275] = 2275, - [2276] = 650, - [2277] = 535, + [2276] = 2265, + [2277] = 2266, [2278] = 2278, [2279] = 2279, [2280] = 2280, [2281] = 2281, - [2282] = 649, - [2283] = 1766, + [2282] = 2282, + [2283] = 2283, [2284] = 2284, [2285] = 2285, [2286] = 2286, [2287] = 2287, - [2288] = 604, - [2289] = 603, - [2290] = 587, - [2291] = 572, - [2292] = 565, - [2293] = 564, - [2294] = 2287, - [2295] = 2160, - [2296] = 2159, - [2297] = 2158, - [2298] = 2285, - [2299] = 2299, - [2300] = 2172, + [2288] = 2288, + [2289] = 2289, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, + [2295] = 2295, + [2296] = 2296, + [2297] = 2297, + [2298] = 2298, + [2299] = 2272, + [2300] = 2300, [2301] = 2301, - [2302] = 2302, - [2303] = 558, - [2304] = 2222, + [2302] = 1126, + [2303] = 1591, + [2304] = 2304, [2305] = 2305, - [2306] = 2306, - [2307] = 2307, - [2308] = 609, - [2309] = 526, + [2306] = 2273, + [2307] = 2217, + [2308] = 2308, + [2309] = 2196, [2310] = 2310, - [2311] = 2311, + [2311] = 2274, [2312] = 2312, - [2313] = 527, - [2314] = 2181, - [2315] = 528, + [2313] = 2191, + [2314] = 2226, + [2315] = 2315, [2316] = 2316, [2317] = 2317, - [2318] = 2260, - [2319] = 2187, + [2318] = 2258, + [2319] = 2319, [2320] = 2320, - [2321] = 533, - [2322] = 2322, - [2323] = 2199, - [2324] = 2206, + [2321] = 2321, + [2322] = 2278, + [2323] = 2323, + [2324] = 2324, [2325] = 2325, - [2326] = 2326, - [2327] = 2162, - [2328] = 2274, - [2329] = 2275, - [2330] = 2212, + [2326] = 2321, + [2327] = 2327, + [2328] = 2195, + [2329] = 2288, + [2330] = 2287, [2331] = 2213, [2332] = 2332, - [2333] = 2215, - [2334] = 2228, - [2335] = 2217, - [2336] = 2278, - [2337] = 2286, - [2338] = 2338, - [2339] = 2339, - [2340] = 2340, - [2341] = 2341, - [2342] = 534, - [2343] = 2230, - [2344] = 536, - [2345] = 537, - [2346] = 2279, - [2347] = 2280, - [2348] = 2281, - [2349] = 1995, - [2350] = 1540, - [2351] = 2351, - [2352] = 2163, + [2333] = 2333, + [2334] = 2281, + [2335] = 2256, + [2336] = 1554, + [2337] = 2197, + [2338] = 2282, + [2339] = 2325, + [2340] = 2283, + [2341] = 2190, + [2342] = 2208, + [2343] = 2324, + [2344] = 2323, + [2345] = 2211, + [2346] = 2254, + [2347] = 2285, + [2348] = 2348, + [2349] = 2320, + [2350] = 2253, + [2351] = 1594, + [2352] = 2286, [2353] = 2353, - [2354] = 2354, - [2355] = 2355, - [2356] = 2161, - [2357] = 2170, - [2358] = 2171, - [2359] = 2359, - [2360] = 2360, + [2354] = 1566, + [2355] = 2287, + [2356] = 2319, + [2357] = 2357, + [2358] = 1186, + [2359] = 2229, + [2360] = 2190, [2361] = 2361, [2362] = 2362, [2363] = 2363, - [2364] = 2364, + [2364] = 2316, [2365] = 2365, - [2366] = 2166, - [2367] = 2367, - [2368] = 2188, - [2369] = 2369, - [2370] = 2370, - [2371] = 2371, - [2372] = 2372, + [2366] = 2227, + [2367] = 542, + [2368] = 2246, + [2369] = 2247, + [2370] = 2226, + [2371] = 2288, + [2372] = 2219, [2373] = 2373, - [2374] = 2193, - [2375] = 2204, - [2376] = 2376, + [2374] = 2191, + [2375] = 2253, + [2376] = 2254, [2377] = 2377, - [2378] = 2378, - [2379] = 2379, - [2380] = 2222, - [2381] = 2381, - [2382] = 2228, - [2383] = 538, + [2378] = 2256, + [2379] = 2231, + [2380] = 2258, + [2381] = 551, + [2382] = 2196, + [2383] = 2217, [2384] = 2384, - [2385] = 1576, - [2386] = 2237, - [2387] = 2244, - [2388] = 2388, - [2389] = 2180, - [2390] = 2390, - [2391] = 2274, - [2392] = 2275, + [2385] = 525, + [2386] = 2208, + [2387] = 544, + [2388] = 548, + [2389] = 2365, + [2390] = 2316, + [2391] = 2391, + [2392] = 642, [2393] = 2393, - [2394] = 2394, - [2395] = 2278, - [2396] = 2279, - [2397] = 2280, - [2398] = 2281, - [2399] = 541, - [2400] = 2172, - [2401] = 2284, - [2402] = 2285, - [2403] = 2286, - [2404] = 2404, - [2405] = 539, - [2406] = 2207, - [2407] = 2407, + [2394] = 641, + [2395] = 2301, + [2396] = 2396, + [2397] = 2275, + [2398] = 2305, + [2399] = 2399, + [2400] = 2300, + [2401] = 2279, + [2402] = 2280, + [2403] = 2403, + [2404] = 2284, + [2405] = 2405, + [2406] = 2294, + [2407] = 2292, [2408] = 2408, - [2409] = 2160, - [2410] = 2159, - [2411] = 2158, - [2412] = 2412, - [2413] = 2413, - [2414] = 2172, + [2409] = 639, + [2410] = 2293, + [2411] = 2411, + [2412] = 2292, + [2413] = 2362, + [2414] = 2294, [2415] = 2415, - [2416] = 2341, + [2416] = 2284, [2417] = 2417, - [2418] = 2418, - [2419] = 2419, - [2420] = 2420, - [2421] = 2217, - [2422] = 2325, - [2423] = 2243, - [2424] = 2424, - [2425] = 2242, - [2426] = 2202, - [2427] = 2181, + [2418] = 2280, + [2419] = 2295, + [2420] = 2300, + [2421] = 2301, + [2422] = 2296, + [2423] = 2279, + [2424] = 644, + [2425] = 2425, + [2426] = 2217, + [2427] = 2275, [2428] = 2196, - [2429] = 2215, - [2430] = 1543, - [2431] = 2431, - [2432] = 2187, - [2433] = 2284, - [2434] = 2376, - [2435] = 2199, - [2436] = 2206, - [2437] = 2285, - [2438] = 1538, - [2439] = 2439, - [2440] = 2213, - [2441] = 2212, - [2442] = 2213, - [2443] = 2415, - [2444] = 2215, - [2445] = 1575, - [2446] = 2217, - [2447] = 2413, - [2448] = 2412, - [2449] = 2156, - [2450] = 542, - [2451] = 543, - [2452] = 2408, - [2453] = 1573, - [2454] = 2212, - [2455] = 2407, - [2456] = 2163, - [2457] = 2457, - [2458] = 2458, - [2459] = 2161, - [2460] = 2170, - [2461] = 2171, - [2462] = 2462, - [2463] = 2404, - [2464] = 2394, - [2465] = 2393, - [2466] = 1572, - [2467] = 2381, + [2429] = 638, + [2430] = 2238, + [2431] = 2237, + [2432] = 2191, + [2433] = 2226, + [2434] = 637, + [2435] = 2316, + [2436] = 2436, + [2437] = 2193, + [2438] = 2319, + [2439] = 2320, + [2440] = 636, + [2441] = 2441, + [2442] = 2323, + [2443] = 2324, + [2444] = 2325, + [2445] = 2321, + [2446] = 635, + [2447] = 634, + [2448] = 2288, + [2449] = 2287, + [2450] = 2213, + [2451] = 633, + [2452] = 2195, + [2453] = 2197, + [2454] = 2199, + [2455] = 2363, + [2456] = 2258, + [2457] = 2190, + [2458] = 2208, + [2459] = 2256, + [2460] = 549, + [2461] = 2211, + [2462] = 632, + [2463] = 2254, + [2464] = 2301, + [2465] = 2253, + [2466] = 2275, + [2467] = 2396, [2468] = 2468, - [2469] = 2166, - [2470] = 2284, - [2471] = 2188, - [2472] = 2472, - [2473] = 2193, - [2474] = 2204, - [2475] = 2475, - [2476] = 2424, - [2477] = 2420, - [2478] = 2378, - [2479] = 544, - [2480] = 2377, - [2481] = 2237, - [2482] = 2244, - [2483] = 2367, - [2484] = 1571, - [2485] = 2172, - [2486] = 2274, - [2487] = 2275, - [2488] = 2419, - [2489] = 1569, - [2490] = 2278, - [2491] = 2279, - [2492] = 2280, - [2493] = 2281, - [2494] = 2173, - [2495] = 545, - [2496] = 2284, - [2497] = 2285, - [2498] = 2286, - [2499] = 2499, - [2500] = 2500, - [2501] = 2339, - [2502] = 2181, - [2503] = 2503, - [2504] = 2286, - [2505] = 2505, - [2506] = 1539, - [2507] = 1545, - [2508] = 2237, - [2509] = 546, - [2510] = 1550, - [2511] = 1541, - [2512] = 1544, - [2513] = 2332, - [2514] = 2320, - [2515] = 2317, - [2516] = 1555, - [2517] = 1556, - [2518] = 2198, - [2519] = 1552, - [2520] = 1560, - [2521] = 2306, - [2522] = 2302, - [2523] = 547, - [2524] = 2299, - [2525] = 1565, - [2526] = 1563, - [2527] = 1549, - [2528] = 2528, - [2529] = 548, - [2530] = 2210, - [2531] = 1548, - [2532] = 629, - [2533] = 2206, - [2534] = 1542, - [2535] = 1566, - [2536] = 2199, - [2537] = 1547, - [2538] = 1546, - [2539] = 635, - [2540] = 654, - [2541] = 2541, - [2542] = 2384, - [2543] = 653, - [2544] = 648, - [2545] = 2187, - [2546] = 624, - [2547] = 2499, - [2548] = 2548, - [2549] = 647, - [2550] = 625, - [2551] = 646, - [2552] = 2379, - [2553] = 642, - [2554] = 1961, - [2555] = 2271, - [2556] = 2369, - [2557] = 551, - [2558] = 2361, - [2559] = 561, - [2560] = 2354, - [2561] = 2351, - [2562] = 639, - [2563] = 638, - [2564] = 633, - [2565] = 627, - [2566] = 2503, - [2567] = 2180, - [2568] = 2341, - [2569] = 2325, - [2570] = 626, - [2571] = 2281, - [2572] = 630, - [2573] = 2280, - [2574] = 2207, - [2575] = 2210, - [2576] = 2279, - [2577] = 628, - [2578] = 607, - [2579] = 605, - [2580] = 2243, - [2581] = 602, - [2582] = 2278, - [2583] = 2242, - [2584] = 2503, - [2585] = 2202, - [2586] = 2499, - [2587] = 2197, - [2588] = 2181, - [2589] = 601, - [2590] = 599, - [2591] = 598, - [2592] = 2196, - [2593] = 2173, - [2594] = 2156, - [2595] = 595, - [2596] = 591, - [2597] = 589, - [2598] = 2156, - [2599] = 552, - [2600] = 524, - [2601] = 2223, - [2602] = 586, - [2603] = 583, - [2604] = 582, - [2605] = 554, - [2606] = 2164, - [2607] = 2196, - [2608] = 2202, - [2609] = 581, - [2610] = 2242, - [2611] = 2243, - [2612] = 2275, - [2613] = 2254, - [2614] = 2255, - [2615] = 2262, - [2616] = 2267, - [2617] = 2268, - [2618] = 2274, - [2619] = 2307, - [2620] = 2310, - [2621] = 2325, - [2622] = 2341, - [2623] = 2353, - [2624] = 2355, - [2625] = 2359, - [2626] = 2360, - [2627] = 2362, - [2628] = 2363, - [2629] = 2364, - [2630] = 2365, - [2631] = 2370, - [2632] = 2301, - [2633] = 2372, - [2634] = 2373, - [2635] = 2418, - [2636] = 555, - [2637] = 2457, - [2638] = 2458, - [2639] = 2462, - [2640] = 2468, - [2641] = 2472, - [2642] = 2475, - [2643] = 580, - [2644] = 579, - [2645] = 578, - [2646] = 577, - [2647] = 576, - [2648] = 2326, - [2649] = 574, - [2650] = 636, - [2651] = 2207, - [2652] = 2210, - [2653] = 2173, - [2654] = 571, - [2655] = 570, - [2656] = 556, - [2657] = 569, - [2658] = 2311, - [2659] = 2499, - [2660] = 2503, - [2661] = 2499, - [2662] = 2305, - [2663] = 2503, - [2664] = 2173, - [2665] = 568, - [2666] = 567, - [2667] = 566, - [2668] = 2156, - [2669] = 2244, - [2670] = 557, - [2671] = 2196, - [2672] = 2202, - [2673] = 2242, - [2674] = 2243, - [2675] = 2325, - [2676] = 2341, - [2677] = 2245, - [2678] = 2162, - [2679] = 563, - [2680] = 562, - [2681] = 560, - [2682] = 2207, - [2683] = 2210, - [2684] = 2163, - [2685] = 2685, - [2686] = 2686, - [2687] = 2687, - [2688] = 2688, - [2689] = 2689, - [2690] = 2690, - [2691] = 2691, - [2692] = 2690, - [2693] = 2687, - [2694] = 2691, - [2695] = 2695, - [2696] = 2696, - [2697] = 2697, - [2698] = 2698, - [2699] = 2699, - [2700] = 2698, - [2701] = 2687, - [2702] = 2691, - [2703] = 2689, - [2704] = 2690, - [2705] = 2687, - [2706] = 2690, - [2707] = 2707, - [2708] = 2696, - [2709] = 2709, + [2469] = 550, + [2470] = 2399, + [2471] = 2471, + [2472] = 2229, + [2473] = 2300, + [2474] = 2219, + [2475] = 2247, + [2476] = 2476, + [2477] = 2246, + [2478] = 556, + [2479] = 557, + [2480] = 2246, + [2481] = 2247, + [2482] = 631, + [2483] = 2483, + [2484] = 2211, + [2485] = 2267, + [2486] = 2253, + [2487] = 2254, + [2488] = 2229, + [2489] = 2256, + [2490] = 2490, + [2491] = 2258, + [2492] = 646, + [2493] = 647, + [2494] = 2494, + [2495] = 2495, + [2496] = 2224, + [2497] = 2497, + [2498] = 2403, + [2499] = 2275, + [2500] = 2468, + [2501] = 558, + [2502] = 2279, + [2503] = 2280, + [2504] = 2471, + [2505] = 2284, + [2506] = 2211, + [2507] = 2208, + [2508] = 2190, + [2509] = 630, + [2510] = 2510, + [2511] = 1570, + [2512] = 2298, + [2513] = 2292, + [2514] = 2514, + [2515] = 2294, + [2516] = 2304, + [2517] = 2300, + [2518] = 2301, + [2519] = 2197, + [2520] = 559, + [2521] = 560, + [2522] = 2522, + [2523] = 2523, + [2524] = 2279, + [2525] = 2525, + [2526] = 2226, + [2527] = 562, + [2528] = 2316, + [2529] = 2280, + [2530] = 2247, + [2531] = 2319, + [2532] = 2320, + [2533] = 2514, + [2534] = 2534, + [2535] = 2323, + [2536] = 2324, + [2537] = 2325, + [2538] = 2321, + [2539] = 565, + [2540] = 629, + [2541] = 2288, + [2542] = 2287, + [2543] = 2213, + [2544] = 2246, + [2545] = 628, + [2546] = 2546, + [2547] = 2229, + [2548] = 566, + [2549] = 524, + [2550] = 567, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 2194, + [2555] = 2308, + [2556] = 2556, + [2557] = 568, + [2558] = 569, + [2559] = 2559, + [2560] = 2560, + [2561] = 2561, + [2562] = 570, + [2563] = 2563, + [2564] = 2564, + [2565] = 2565, + [2566] = 571, + [2567] = 2567, + [2568] = 2568, + [2569] = 2568, + [2570] = 2312, + [2571] = 2571, + [2572] = 2572, + [2573] = 572, + [2574] = 2574, + [2575] = 2575, + [2576] = 2576, + [2577] = 573, + [2578] = 574, + [2579] = 2315, + [2580] = 2580, + [2581] = 2317, + [2582] = 1908, + [2583] = 1580, + [2584] = 1993, + [2585] = 576, + [2586] = 577, + [2587] = 2321, + [2588] = 2325, + [2589] = 543, + [2590] = 578, + [2591] = 579, + [2592] = 2592, + [2593] = 2324, + [2594] = 2494, + [2595] = 2595, + [2596] = 626, + [2597] = 581, + [2598] = 2417, + [2599] = 582, + [2600] = 2574, + [2601] = 2219, + [2602] = 2405, + [2603] = 2297, + [2604] = 596, + [2605] = 1776, + [2606] = 2606, + [2607] = 2494, + [2608] = 2495, + [2609] = 2229, + [2610] = 2224, + [2611] = 2403, + [2612] = 584, + [2613] = 585, + [2614] = 2614, + [2615] = 2284, + [2616] = 586, + [2617] = 587, + [2618] = 588, + [2619] = 2267, + [2620] = 2297, + [2621] = 2621, + [2622] = 580, + [2623] = 2468, + [2624] = 589, + [2625] = 2471, + [2626] = 590, + [2627] = 2195, + [2628] = 625, + [2629] = 2574, + [2630] = 2323, + [2631] = 2568, + [2632] = 591, + [2633] = 592, + [2634] = 593, + [2635] = 594, + [2636] = 595, + [2637] = 2514, + [2638] = 2194, + [2639] = 624, + [2640] = 623, + [2641] = 620, + [2642] = 597, + [2643] = 2514, + [2644] = 622, + [2645] = 598, + [2646] = 2546, + [2647] = 599, + [2648] = 648, + [2649] = 649, + [2650] = 600, + [2651] = 2436, + [2652] = 2471, + [2653] = 2468, + [2654] = 601, + [2655] = 2403, + [2656] = 2224, + [2657] = 2228, + [2658] = 2268, + [2659] = 2310, + [2660] = 2353, + [2661] = 2361, + [2662] = 2384, + [2663] = 602, + [2664] = 2592, + [2665] = 2415, + [2666] = 2495, + [2667] = 2494, + [2668] = 2580, + [2669] = 2576, + [2670] = 2575, + [2671] = 2571, + [2672] = 2567, + [2673] = 2561, + [2674] = 2560, + [2675] = 2559, + [2676] = 2552, + [2677] = 2534, + [2678] = 2523, + [2679] = 2522, + [2680] = 2425, + [2681] = 2194, + [2682] = 2333, + [2683] = 2332, + [2684] = 2327, + [2685] = 2291, + [2686] = 2290, + [2687] = 2289, + [2688] = 603, + [2689] = 2320, + [2690] = 2319, + [2691] = 2357, + [2692] = 2495, + [2693] = 604, + [2694] = 605, + [2695] = 606, + [2696] = 2267, + [2697] = 2297, + [2698] = 2294, + [2699] = 607, + [2700] = 608, + [2701] = 2568, + [2702] = 609, + [2703] = 610, + [2704] = 2574, + [2705] = 2574, + [2706] = 2568, + [2707] = 611, + [2708] = 2292, + [2709] = 2194, [2710] = 2710, - [2711] = 2699, - [2712] = 2712, - [2713] = 2713, - [2714] = 2714, - [2715] = 2715, - [2716] = 2714, - [2717] = 2690, - [2718] = 2714, - [2719] = 2719, - [2720] = 2715, - [2721] = 2691, + [2711] = 612, + [2712] = 613, + [2713] = 2514, + [2714] = 621, + [2715] = 614, + [2716] = 2471, + [2717] = 2468, + [2718] = 2403, + [2719] = 2224, + [2720] = 2495, + [2721] = 2494, [2722] = 2722, - [2723] = 2691, - [2724] = 2724, - [2725] = 2725, - [2726] = 2726, - [2727] = 2698, - [2728] = 2714, - [2729] = 2689, - [2730] = 2699, - [2731] = 2696, + [2723] = 615, + [2724] = 616, + [2725] = 618, + [2726] = 619, + [2727] = 2267, + [2728] = 2297, + [2729] = 640, + [2730] = 2730, + [2731] = 2731, [2732] = 2732, - [2733] = 2688, - [2734] = 2715, - [2735] = 2696, - [2736] = 2736, - [2737] = 2715, + [2733] = 2733, + [2734] = 2734, + [2735] = 2735, + [2736] = 2735, + [2737] = 2732, [2738] = 2738, [2739] = 2739, [2740] = 2740, - [2741] = 2741, - [2742] = 2724, - [2743] = 2725, - [2744] = 2726, - [2745] = 2740, - [2746] = 2697, - [2747] = 2714, + [2741] = 2733, + [2742] = 2742, + [2743] = 2743, + [2744] = 2739, + [2745] = 2733, + [2746] = 2735, + [2747] = 2732, [2748] = 2748, - [2749] = 2698, - [2750] = 2707, - [2751] = 2696, - [2752] = 2726, - [2753] = 2688, - [2754] = 2725, + [2749] = 2749, + [2750] = 2750, + [2751] = 2751, + [2752] = 2752, + [2753] = 2740, + [2754] = 1801, [2755] = 2755, - [2756] = 2724, - [2757] = 2741, + [2756] = 2756, + [2757] = 2735, [2758] = 2758, - [2759] = 2759, - [2760] = 2758, + [2759] = 2732, + [2760] = 2760, [2761] = 2761, - [2762] = 2762, - [2763] = 2741, - [2764] = 1775, - [2765] = 2715, - [2766] = 2766, + [2762] = 2735, + [2763] = 2763, + [2764] = 2730, + [2765] = 2765, + [2766] = 2739, [2767] = 2767, - [2768] = 2724, - [2769] = 2725, - [2770] = 2770, - [2771] = 2740, - [2772] = 2772, - [2773] = 2726, + [2768] = 2730, + [2769] = 1971, + [2770] = 2734, + [2771] = 2733, + [2772] = 2733, + [2773] = 2773, [2774] = 2774, [2775] = 2775, - [2776] = 2774, - [2777] = 2755, - [2778] = 2740, - [2779] = 2741, - [2780] = 2724, - [2781] = 2725, - [2782] = 2748, - [2783] = 2726, - [2784] = 2755, - [2785] = 2761, - [2786] = 1965, - [2787] = 2772, - [2788] = 2698, - [2789] = 2774, - [2790] = 2714, - [2791] = 2714, - [2792] = 2792, - [2793] = 2793, - [2794] = 2689, - [2795] = 2748, - [2796] = 2699, - [2797] = 2755, - [2798] = 2792, + [2776] = 2738, + [2777] = 2777, + [2778] = 2756, + [2779] = 2779, + [2780] = 2740, + [2781] = 2752, + [2782] = 2730, + [2783] = 2783, + [2784] = 2750, + [2785] = 2752, + [2786] = 2750, + [2787] = 2730, + [2788] = 2788, + [2789] = 2738, + [2790] = 2790, + [2791] = 2734, + [2792] = 2779, + [2793] = 2773, + [2794] = 2739, + [2795] = 2758, + [2796] = 2740, + [2797] = 2777, + [2798] = 2798, [2799] = 2799, - [2800] = 2689, - [2801] = 2688, - [2802] = 2699, - [2803] = 2688, - [2804] = 2804, - [2805] = 2805, + [2800] = 2800, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 2740, + [2805] = 2761, [2806] = 2806, - [2807] = 2807, - [2808] = 2748, + [2807] = 2801, + [2808] = 2802, [2809] = 2809, - [2810] = 2755, - [2811] = 2748, - [2812] = 2707, - [2813] = 2707, - [2814] = 2707, + [2810] = 2777, + [2811] = 2756, + [2812] = 2812, + [2813] = 2813, + [2814] = 2814, [2815] = 2815, + [2816] = 2779, + [2817] = 2817, + [2818] = 2806, + [2819] = 2817, + [2820] = 2730, + [2821] = 2739, + [2822] = 2752, + [2823] = 2750, + [2824] = 2738, + [2825] = 2803, + [2826] = 2734, + [2827] = 2773, + [2828] = 2803, + [2829] = 2800, + [2830] = 2801, + [2831] = 2734, + [2832] = 2802, + [2833] = 2777, + [2834] = 2756, + [2835] = 2779, + [2836] = 2836, + [2837] = 2730, + [2838] = 2802, + [2839] = 2752, + [2840] = 2773, + [2841] = 2750, + [2842] = 2800, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, + [2846] = 2738, + [2847] = 2743, + [2848] = 2779, + [2849] = 2756, + [2850] = 2803, + [2851] = 2851, + [2852] = 2777, + [2853] = 2773, + [2854] = 2799, + [2855] = 2800, + [2856] = 2800, + [2857] = 2758, + [2858] = 2758, + [2859] = 2758, + [2860] = 2860, }; static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { @@ -5328,6 +5419,40 @@ static inline bool anon_sym_BANG_character_set_1(int32_t c) { : (c <= 12288 || c == 65279)))); } +static inline bool sym_unescaped_double_string_fragment_character_set_1(int32_t c) { + return (c < 8232 + ? (c < 160 + ? (c < ' ' + ? (c >= '\t' && c <= '\f') + : c <= ' ') + : (c <= 160 || (c < 8192 + ? c == 5760 + : c <= 8203))) + : (c <= 8233 || (c < 12288 + ? (c < 8287 + ? c == 8239 + : c <= 8288) + : (c <= 12288 || c == 65279)))); +} + +static inline bool sym_unescaped_double_string_fragment_character_set_2(int32_t c) { + return (c < 8192 + ? (c < ' ' + ? (c < 11 + ? c == '\t' + : c <= '\f') + : (c <= ' ' || (c < 5760 + ? c == 160 + : c <= 5760))) + : (c <= 8203 || (c < 8287 + ? (c < 8239 + ? (c >= 8232 && c <= 8233) + : c <= 8239) + : (c <= 8288 || (c < 65279 + ? c == 12288 + : c <= 65279))))); +} + static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 160 ? (c < ':' @@ -5455,402 +5580,405 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(350); - if (lookahead == '"') ADVANCE(354); + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(416); + if (lookahead == '"') ADVANCE(338); if (lookahead == '#') ADVANCE(11); - if (lookahead == '$') ADVANCE(531); - if (lookahead == '%') ADVANCE(335); - if (lookahead == '&') ADVANCE(322); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '+') ADVANCE(329); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(282); - if (lookahead == '/') ADVANCE(376); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(272); - if (lookahead == '=') ADVANCE(252); - if (lookahead == '>') ADVANCE(278); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(152); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(325); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(503); - if (lookahead == 'c') ADVANCE(435); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(477); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'o') ADVANCE(463); - if (lookahead == 's') ADVANCE(521); - if (lookahead == 't') ADVANCE(436); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(326); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '$') ADVANCE(596); + if (lookahead == '%') ADVANCE(401); + if (lookahead == '&') ADVANCE(388); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == '*') ADVANCE(259); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '.') ADVANCE(334); + if (lookahead == '/') ADVANCE(439); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '>') ADVANCE(330); + if (lookahead == '?') ADVANCE(54); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(199); + if (lookahead == ']') ADVANCE(306); + if (lookahead == '^') ADVANCE(391); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'c') ADVANCE(498); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(541); + if (lookahead == 'f') ADVANCE(536); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'o') ADVANCE(526); + if (lookahead == 's') ADVANCE(586); + if (lookahead == 't') ADVANCE(499); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(392); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(407); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(194) + lookahead == 8233) ADVANCE(470); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(243) if (lookahead != 0 && - lookahead > 31) ADVANCE(541); + lookahead > 31) ADVANCE(606); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(547); + if (lookahead == '\n') ADVANCE(612); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(1); END_STATE(); case 2: - if (lookahead == '\n') SKIP(54) + if (lookahead == '\n') SKIP(45) if (lookahead == ' ') ADVANCE(2); - if (lookahead == '/') ADVANCE(262); - if (lookahead == '<') ADVANCE(271); - if (lookahead == '{') ADVANCE(216); - if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(264); + if (lookahead == '&') ADVANCE(43); + if (lookahead == '/') ADVANCE(313); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '{') ADVANCE(265); + if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(315); if (lookahead != 0 && lookahead != '>' && - lookahead != '}') ADVANCE(263); + lookahead != '}') ADVANCE(314); END_STATE(); case 3: if (lookahead == '\n') SKIP(3) - if (lookahead == '/') ADVANCE(257); - if (lookahead == '<') ADVANCE(259); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(258); - if (lookahead != 0) ADVANCE(256); + if (lookahead == '/') ADVANCE(308); + if (lookahead == '<') ADVANCE(310); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(309); + if (lookahead != 0) ADVANCE(307); END_STATE(); case 4: - if (lookahead == '\n') SKIP(53) - if (lookahead == '/') ADVANCE(42); - if (lookahead == '[') ADVANCE(60); - if (lookahead == '\\') ADVANCE(193); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(377); - if (lookahead != 0) ADVANCE(378); + if (lookahead == '\n') SKIP(59) + if (lookahead == '/') ADVANCE(48); + if (lookahead == '[') ADVANCE(104); + if (lookahead == '\\') ADVANCE(242); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(440); + if (lookahead != 0) ADVANCE(441); END_STATE(); case 5: if (lookahead == ' ') ADVANCE(5); if (lookahead != 0 && lookahead != '\n' && + lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(263); + lookahead != '}') ADVANCE(314); END_STATE(); case 6: if (lookahead == ' ') ADVANCE(6); - if (lookahead == '*') ADVANCE(265); + if (lookahead == '*') ADVANCE(316); if (lookahead == '\n' || + lookahead == '&' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(45); - if (lookahead != 0) ADVANCE(266); + lookahead == '}') ADVANCE(51); + if (lookahead != 0) ADVANCE(317); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(350); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(275); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(481); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(327); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(416); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(327); + if (lookahead == '=') ADVANCE(100); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == ']') ADVANCE(306); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(545); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(428); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(491); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(7) if (lookahead != 0 && - lookahead > 31) ADVANCE(541); + lookahead > 31) ADVANCE(606); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(350); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(275); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(481); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'o') ADVANCE(463); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(327); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(416); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(327); + if (lookahead == '=') ADVANCE(100); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(545); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'o') ADVANCE(526); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(427); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(490); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(8) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || ':' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(541); + lookahead != '}') ADVANCE(606); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(350); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(275); - if (lookahead == '=') ADVANCE(251); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(327); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(416); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(327); + if (lookahead == '=') ADVANCE(302); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(420); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(483); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(541); + lookahead != ']') ADVANCE(606); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(350); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(275); - if (lookahead == '=') ADVANCE(251); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(327); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(416); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(327); + if (lookahead == '=') ADVANCE(302); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(423); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(486); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(10) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(541); + lookahead != ']') ADVANCE(606); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(206); - if (lookahead == '\\') ADVANCE(154); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(543); + if (lookahead == '!') ADVANCE(255); + if (lookahead == '\\') ADVANCE(201); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(608); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(46); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(481); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(52); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == ']') ADVANCE(306); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(545); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(429); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(492); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(209); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(46); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 's') ADVANCE(521); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(258); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(52); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 's') ADVANCE(586); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(413); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(476); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(13) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(481); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(545); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(429); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(492); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) if (lookahead != 0 && lookahead > 31 && @@ -5858,114 +5986,114 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '|' && - lookahead != '}') ADVANCE(541); + lookahead != '}') ADVANCE(606); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(435); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(498); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(409); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(435); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(498); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(410); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(16) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(415); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(478); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) if (lookahead != 0 && lookahead > 31 && @@ -5973,552 +6101,552 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '|' && - lookahead != '}') ADVANCE(541); + lookahead != '}') ADVANCE(606); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(419); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(482); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(18) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); case 19: - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(421); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(484); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(19) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); case 20: - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(422); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(485); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(20) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); case 21: - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(424); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(487); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(21) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); case 22: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '%') ADVANCE(335); - if (lookahead == '&') ADVANCE(322); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '+') ADVANCE(329); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(333); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(273); - if (lookahead == '=') ADVANCE(252); - if (lookahead == '>') ADVANCE(278); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(325); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == '|') ADVANCE(326); - if (lookahead == '}') ADVANCE(218); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(401); + if (lookahead == '&') ADVANCE(388); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(259); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(399); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '>') ADVANCE(330); + if (lookahead == '?') ADVANCE(54); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '^') ADVANCE(391); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == '|') ADVANCE(392); + if (lookahead == '}') ADVANCE(267); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(494); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(22) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || '@' < lookahead) && lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(541); + (lookahead < '{' || '~' < lookahead)) ADVANCE(606); END_STATE(); case 23: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '%') ADVANCE(335); - if (lookahead == '&') ADVANCE(322); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '+') ADVANCE(329); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(333); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(273); - if (lookahead == '=') ADVANCE(252); - if (lookahead == '>') ADVANCE(278); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(325); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == '|') ADVANCE(326); - if (lookahead == '}') ADVANCE(218); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(401); + if (lookahead == '&') ADVANCE(388); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(259); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(399); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '>') ADVANCE(330); + if (lookahead == '?') ADVANCE(54); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '^') ADVANCE(391); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == '|') ADVANCE(392); + if (lookahead == '}') ADVANCE(267); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(432); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(495); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(23) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || '@' < lookahead) && lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(541); + (lookahead < '{' || '~' < lookahead)) ADVANCE(606); END_STATE(); case 24: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '%') ADVANCE(335); - if (lookahead == '&') ADVANCE(322); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '+') ADVANCE(329); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(333); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(273); - if (lookahead == '=') ADVANCE(252); - if (lookahead == '>') ADVANCE(278); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(325); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(326); - if (lookahead == '}') ADVANCE(218); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '%') ADVANCE(401); + if (lookahead == '&') ADVANCE(388); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == '*') ADVANCE(259); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(399); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '>') ADVANCE(330); + if (lookahead == '?') ADVANCE(54); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == ']') ADVANCE(306); + if (lookahead == '^') ADVANCE(391); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(392); + if (lookahead == '}') ADVANCE(267); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(445); + lookahead == 8233) ADVANCE(508); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(24) if (lookahead != 0 && lookahead > '#' && (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(541); + lookahead != '~') ADVANCE(606); END_STATE(); case 25: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '%') ADVANCE(335); - if (lookahead == '&') ADVANCE(322); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '+') ADVANCE(329); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(333); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(273); - if (lookahead == '=') ADVANCE(252); - if (lookahead == '>') ADVANCE(278); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(325); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(326); - if (lookahead == '}') ADVANCE(218); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '%') ADVANCE(401); + if (lookahead == '&') ADVANCE(388); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(259); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(399); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '>') ADVANCE(330); + if (lookahead == '?') ADVANCE(54); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '^') ADVANCE(391); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(392); + if (lookahead == '}') ADVANCE(267); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(470); + lookahead == 8233) ADVANCE(534); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(25) if (lookahead != 0 && lookahead > '#' && (lookahead < '\'' || '@' < lookahead) && lookahead != ']' && - lookahead != '~') ADVANCE(541); + lookahead != '~') ADVANCE(606); END_STATE(); case 26: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '%') ADVANCE(335); - if (lookahead == '&') ADVANCE(322); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '+') ADVANCE(329); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(333); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(273); - if (lookahead == '=') ADVANCE(252); - if (lookahead == '>') ADVANCE(278); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(325); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'o') ADVANCE(463); - if (lookahead == '|') ADVANCE(326); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '%') ADVANCE(401); + if (lookahead == '&') ADVANCE(388); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(259); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(399); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '>') ADVANCE(330); + if (lookahead == '?') ADVANCE(54); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '^') ADVANCE(391); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'o') ADVANCE(526); + if (lookahead == '|') ADVANCE(392); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(444); + lookahead == 8233) ADVANCE(507); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(26) if (lookahead != 0 && lookahead > '#' && (lookahead < '\'' || '@' < lookahead) && lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(541); + (lookahead < '{' || '~' < lookahead)) ADVANCE(606); END_STATE(); case 27: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '%') ADVANCE(335); - if (lookahead == '&') ADVANCE(322); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '+') ADVANCE(329); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(333); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(273); - if (lookahead == '=') ADVANCE(252); - if (lookahead == '>') ADVANCE(278); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(325); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'o') ADVANCE(463); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(326); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '%') ADVANCE(401); + if (lookahead == '&') ADVANCE(388); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(259); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(399); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '>') ADVANCE(330); + if (lookahead == '?') ADVANCE(54); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '^') ADVANCE(391); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'o') ADVANCE(526); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(392); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(469); + lookahead == 8233) ADVANCE(533); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(27) if (lookahead != 0 && lookahead > '#' && (lookahead < '\'' || '@' < lookahead) && lookahead != ']' && lookahead != '}' && - lookahead != '~') ADVANCE(541); + lookahead != '~') ADVANCE(606); END_STATE(); case 28: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(332); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(274); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'i') ADVANCE(111); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(327); - if (lookahead == '}') ADVANCE(218); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(398); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(326); + if (lookahead == '=') ADVANCE(100); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '[') ADVANCE(305); + if (lookahead == ']') ADVANCE(306); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'i') ADVANCE(157); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(267); if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(28) END_STATE(); case 29: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(332); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(274); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'i') ADVANCE(384); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(327); - if (lookahead == '}') ADVANCE(218); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(398); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(326); + if (lookahead == '=') ADVANCE(100); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '[') ADVANCE(305); + if (lookahead == ']') ADVANCE(306); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'i') ADVANCE(447); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(267); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(28) END_STATE(); case 30: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(332); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(274); - if (lookahead == '=') ADVANCE(251); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(134); - if (lookahead == 'e') ADVANCE(101); - if (lookahead == 'f') ADVANCE(127); - if (lookahead == 'i') ADVANCE(111); - if (lookahead == 'o') ADVANCE(89); - if (lookahead == 'w') ADVANCE(94); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(327); - if (lookahead == '}') ADVANCE(218); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(398); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(326); + if (lookahead == '=') ADVANCE(302); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '[') ADVANCE(305); + if (lookahead == ']') ADVANCE(306); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(180); + if (lookahead == 'e') ADVANCE(147); + if (lookahead == 'f') ADVANCE(173); + if (lookahead == 'i') ADVANCE(157); + if (lookahead == 'o') ADVANCE(133); + if (lookahead == 'w') ADVANCE(138); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(267); if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(30) END_STATE(); case 31: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(332); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(274); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'i') ADVANCE(111); - if (lookahead == 'o') ADVANCE(89); - if (lookahead == '|') ADVANCE(327); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(398); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(326); + if (lookahead == '=') ADVANCE(100); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'i') ADVANCE(157); + if (lookahead == 'o') ADVANCE(133); + if (lookahead == '|') ADVANCE(393); if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(31) END_STATE(); case 32: - if (lookahead == '!') ADVANCE(55); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(332); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(274); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'i') ADVANCE(384); - if (lookahead == 'o') ADVANCE(383); - if (lookahead == '|') ADVANCE(327); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(398); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(326); + if (lookahead == '=') ADVANCE(100); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'i') ADVANCE(447); + if (lookahead == 'o') ADVANCE(446); + if (lookahead == '|') ADVANCE(393); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(31) END_STATE(); case 33: - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(209); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '.') ADVANCE(46); - if (lookahead == '/') ADVANCE(42); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '=') ADVANCE(253); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(258); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '.') ADVANCE(52); + if (lookahead == '/') ADVANCE(48); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(304); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(434); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(497); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(33) if (lookahead != 0 && lookahead > '!' && @@ -6526,54 +6654,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(541); + (lookahead < '|' || '~' < lookahead)) ADVANCE(606); END_STATE(); case 34: - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(209); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(42); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '?') ADVANCE(47); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(258); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(48); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '?') ADVANCE(53); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(533); + lookahead == 8233) ADVANCE(598); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(34) if (lookahead != 0 && lookahead > '!' && (lookahead < '%' || '@' < lookahead) && lookahead != ']' && lookahead != '^' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(541); + (lookahead < '|' || '~' < lookahead)) ADVANCE(606); END_STATE(); case 35: - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(209); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(42); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'c') ADVANCE(481); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 's') ADVANCE(521); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(258); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(48); + if (lookahead == '0') ADVANCE(453); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'c') ADVANCE(545); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 's') ADVANCE(586); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(430); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(493); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(35) if (lookahead != 0 && lookahead > '!' && @@ -6581,27 +6709,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(541); + (lookahead < '{' || '~' < lookahead)) ADVANCE(606); END_STATE(); case 36: - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(209); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(42); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 's') ADVANCE(521); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(258); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(48); + if (lookahead == '0') ADVANCE(453); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 's') ADVANCE(586); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(433); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(496); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(36) if (lookahead != 0 && lookahead > '!' && @@ -6609,31 +6737,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(541); + (lookahead < '{' || '~' < lookahead)) ADVANCE(606); END_STATE(); case 37: - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '*') ADVANCE(209); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '.') ADVANCE(46); - if (lookahead == '/') ADVANCE(42); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(139); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 's') ADVANCE(521); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '*') ADVANCE(258); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '.') ADVANCE(52); + if (lookahead == '/') ADVANCE(48); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(185); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 's') ADVANCE(586); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(433); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 8233) ADVANCE(496); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(37) if (lookahead != 0 && lookahead > '!' && @@ -6641,3248 +6769,3629 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(541); + (lookahead < '|' || '~' < lookahead)) ADVANCE(606); END_STATE(); case 38: - if (lookahead == '"') ADVANCE(354); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(376); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '=') ADVANCE(250); - if (lookahead == '>') ADVANCE(277); - if (lookahead == ']') ADVANCE(255); - if (lookahead == 'i') ADVANCE(114); - if (lookahead == 'o') ADVANCE(89); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(39) + if (lookahead == '"') ADVANCE(338); + if (lookahead == '&') ADVANCE(43); + if (lookahead == '/') ADVANCE(341); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(344); + if (lookahead != 0) ADVANCE(345); END_STATE(); case 39: - if (lookahead == '"') ADVANCE(354); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(42); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(270); - if (lookahead == '=') ADVANCE(250); - if (lookahead == '>') ADVANCE(277); - if (lookahead == ']') ADVANCE(255); - if (lookahead == 'i') ADVANCE(114); - if (lookahead == 'o') ADVANCE(89); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(39) + if (lookahead == '"') ADVANCE(338); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(439); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(301); + if (lookahead == '>') ADVANCE(329); + if (lookahead == ']') ADVANCE(306); + if (lookahead == 'i') ADVANCE(160); + if (lookahead == 'o') ADVANCE(133); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(40) END_STATE(); case 40: - if (lookahead == '"') ADVANCE(354); - if (lookahead == '/') ADVANCE(357); - if (lookahead == '\\') ADVANCE(156); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(360); - if (lookahead != 0) ADVANCE(361); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(48); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(322); + if (lookahead == '=') ADVANCE(301); + if (lookahead == '>') ADVANCE(329); + if (lookahead == ']') ADVANCE(306); + if (lookahead == 'i') ADVANCE(160); + if (lookahead == 'o') ADVANCE(133); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(40) END_STATE(); case 41: - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '/') ADVANCE(363); - if (lookahead == '\\') ADVANCE(156); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(366); - if (lookahead != 0) ADVANCE(367); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '/') ADVANCE(48); + if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(41) END_STATE(); case 42: - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(373); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '/') ADVANCE(420); + if (lookahead == '\\') ADVANCE(203); + if (lookahead == '\n' || + lookahead == '\r') SKIP(41) + if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(423); + if (lookahead != 0) ADVANCE(424); END_STATE(); case 43: - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(373); - if (lookahead == '>') ADVANCE(285); + if (lookahead == '#') ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(98); END_STATE(); case 44: - if (lookahead == '*') ADVANCE(44); - if (lookahead == '/') ADVANCE(372); - if (lookahead != 0) ADVANCE(45); + if (lookahead == '&') ADVANCE(43); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '/') ADVANCE(347); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(350); + if (lookahead != 0) ADVANCE(351); END_STATE(); case 45: - if (lookahead == '*') ADVANCE(44); - if (lookahead != 0) ADVANCE(45); + if (lookahead == '&') ADVANCE(43); + if (lookahead == '/') ADVANCE(313); + if (lookahead == '<') ADVANCE(323); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '\n' || + lookahead == ' ') SKIP(45) + if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(315); + if (lookahead != 0 && + lookahead != '>' && + lookahead != '}') ADVANCE(314); END_STATE(); case 46: - if (lookahead == '.') ADVANCE(50); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '/') ADVANCE(48); + if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(46) END_STATE(); case 47: - if (lookahead == '.') ADVANCE(295); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '/') ADVANCE(425); + if (lookahead == '\\') ADVANCE(203); + if (lookahead == '\n' || + lookahead == '\r') SKIP(46) + if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(428); + if (lookahead != 0) ADVANCE(429); END_STATE(); case 48: - if (lookahead == '.') ADVANCE(295); - if (lookahead == '?') ADVANCE(345); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(436); END_STATE(); case 49: - if (lookahead == '.') ADVANCE(295); - if (lookahead == '?') ADVANCE(344); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(436); + if (lookahead == '>') ADVANCE(337); END_STATE(); case 50: - if (lookahead == '.') ADVANCE(311); + if (lookahead == '*') ADVANCE(50); + if (lookahead == '/') ADVANCE(435); + if (lookahead != 0) ADVANCE(51); END_STATE(); case 51: - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(43); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '=') ADVANCE(250); - if (lookahead == '>') ADVANCE(277); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '{') ADVANCE(216); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(534); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(51) - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); - if (lookahead != 0 && - lookahead > '~') ADVANCE(541); + if (lookahead == '*') ADVANCE(50); + if (lookahead != 0) ADVANCE(51); END_STATE(); case 52: - if (lookahead == '/') ADVANCE(42); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'e') ADVANCE(528); - if (lookahead == '{') ADVANCE(216); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(459); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(52) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(541); + if (lookahead == '.') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(468); END_STATE(); case 53: - if (lookahead == '/') ADVANCE(42); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(53) + if (lookahead == '.') ADVANCE(361); END_STATE(); case 54: - if (lookahead == '/') ADVANCE(262); - if (lookahead == '<') ADVANCE(271); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '\n' || - lookahead == ' ') SKIP(54) - if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(264); - if (lookahead != 0 && - lookahead != '>' && - lookahead != '}') ADVANCE(263); + if (lookahead == '.') ADVANCE(361); + if (lookahead == '?') ADVANCE(411); END_STATE(); case 55: - if (lookahead == '=') ADVANCE(341); + if (lookahead == '.') ADVANCE(361); + if (lookahead == '?') ADVANCE(410); END_STATE(); case 56: - if (lookahead == '=') ADVANCE(339); + if (lookahead == '.') ADVANCE(377); END_STATE(); case 57: - if (lookahead == '>') ADVANCE(260); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(49); + if (lookahead == ':') ADVANCE(294); + if (lookahead == '=') ADVANCE(301); + if (lookahead == '>') ADVANCE(329); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '{') ADVANCE(265); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(599); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(57) + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(471); + if (lookahead != 0 && + lookahead > '~') ADVANCE(606); END_STATE(); case 58: - if (lookahead == '>') ADVANCE(261); + if (lookahead == '/') ADVANCE(48); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'e') ADVANCE(593); + if (lookahead == '{') ADVANCE(265); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(522); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(58) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(606); END_STATE(); case 59: - if (lookahead == '\\') ADVANCE(154); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(543); + if (lookahead == '/') ADVANCE(48); + if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(59) END_STATE(); case 60: - if (lookahead == '\\') ADVANCE(192); - if (lookahead == ']') ADVANCE(378); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(60); + if (lookahead == ';') ADVANCE(321); END_STATE(); case 61: - if (lookahead == 'a') ADVANCE(147); + if (lookahead == ';') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(60); END_STATE(); case 62: - if (lookahead == 'a') ADVANCE(136); - if (lookahead == 'l') ADVANCE(65); - if (lookahead == 'o') ADVANCE(116); + if (lookahead == ';') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(61); END_STATE(); case 63: - if (lookahead == 'a') ADVANCE(128); + if (lookahead == ';') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62); END_STATE(); case 64: - if (lookahead == 'a') ADVANCE(153); + if (lookahead == ';') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); END_STATE(); case 65: - if (lookahead == 'a') ADVANCE(135); + if (lookahead == ';') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); case 66: - if (lookahead == 'a') ADVANCE(129); + if (lookahead == ';') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); END_STATE(); case 67: - if (lookahead == 'a') ADVANCE(99); + if (lookahead == ';') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); case 68: - if (lookahead == 'a') ADVANCE(104); + if (lookahead == ';') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); END_STATE(); case 69: - if (lookahead == 'a') ADVANCE(118); + if (lookahead == ';') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(68); END_STATE(); case 70: - if (lookahead == 'a') ADVANCE(150); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); END_STATE(); case 71: - if (lookahead == 'c') ADVANCE(290); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); END_STATE(); case 72: - if (lookahead == 'c') ADVANCE(95); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); END_STATE(); case 73: - if (lookahead == 'c') ADVANCE(148); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(85); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(73); END_STATE(); case 75: - if (lookahead == 'd') ADVANCE(133); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); END_STATE(); case 76: - if (lookahead == 'e') ADVANCE(108); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); END_STATE(); case 77: - if (lookahead == 'e') ADVANCE(57); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); END_STATE(); case 78: - if (lookahead == 'e') ADVANCE(244); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(77); END_STATE(); case 79: - if (lookahead == 'e') ADVANCE(227); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(240); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); END_STATE(); case 81: - if (lookahead == 'e') ADVANCE(140); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(58); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(91); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(141); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(121); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(112); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(145); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(110); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); END_STATE(); case 89: - if (lookahead == 'f') ADVANCE(237); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 90: - if (lookahead == 'f') ADVANCE(346); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(89); END_STATE(); case 91: - if (lookahead == 'f') ADVANCE(64); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(90); END_STATE(); case 92: - if (lookahead == 'g') ADVANCE(81); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(92); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(91); END_STATE(); case 93: - if (lookahead == 'g') ADVANCE(87); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(92); END_STATE(); case 94: - if (lookahead == 'h') ADVANCE(96); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(93); END_STATE(); case 95: - if (lookahead == 'h') ADVANCE(246); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); END_STATE(); case 96: - if (lookahead == 'i') ADVANCE(105); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(95); END_STATE(); case 97: - if (lookahead == 'i') ADVANCE(119); - if (lookahead == 'r') ADVANCE(120); - if (lookahead == 'u') ADVANCE(115); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); END_STATE(); case 98: - if (lookahead == 'i') ADVANCE(123); + if (lookahead == ';') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(97); END_STATE(); case 99: - if (lookahead == 'i') ADVANCE(142); + if (lookahead == '=') ADVANCE(407); END_STATE(); case 100: - if (lookahead == 'l') ADVANCE(61); + if (lookahead == '=') ADVANCE(405); END_STATE(); case 101: - if (lookahead == 'l') ADVANCE(138); + if (lookahead == '>') ADVANCE(311); END_STATE(); case 102: - if (lookahead == 'l') ADVANCE(138); - if (lookahead == 'x') ADVANCE(125); + if (lookahead == '>') ADVANCE(312); END_STATE(); case 103: - if (lookahead == 'l') ADVANCE(157); + if (lookahead == '\\') ADVANCE(201); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(608); END_STATE(); case 104: - if (lookahead == 'l') ADVANCE(103); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == ']') ADVANCE(441); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(104); END_STATE(); case 105: - if (lookahead == 'l') ADVANCE(80); + if (lookahead == 'a') ADVANCE(194); END_STATE(); case 106: - if (lookahead == 'l') ADVANCE(146); + if (lookahead == 'a') ADVANCE(182); + if (lookahead == 'l') ADVANCE(109); + if (lookahead == 'o') ADVANCE(162); END_STATE(); case 107: - if (lookahead == 'l') ADVANCE(70); + if (lookahead == 'a') ADVANCE(174); END_STATE(); case 108: - if (lookahead == 'm') ADVANCE(124); + if (lookahead == 'a') ADVANCE(200); END_STATE(); case 109: - if (lookahead == 'm') ADVANCE(219); + if (lookahead == 'a') ADVANCE(181); END_STATE(); case 110: - if (lookahead == 'm') ADVANCE(126); + if (lookahead == 'a') ADVANCE(175); END_STATE(); case 111: - if (lookahead == 'n') ADVANCE(236); + if (lookahead == 'a') ADVANCE(145); END_STATE(); case 112: - if (lookahead == 'n') ADVANCE(75); + if (lookahead == 'a') ADVANCE(150); END_STATE(); case 113: - if (lookahead == 'n') ADVANCE(292); + if (lookahead == 'a') ADVANCE(164); END_STATE(); case 114: - if (lookahead == 'n') ADVANCE(233); + if (lookahead == 'a') ADVANCE(197); END_STATE(); case 115: - if (lookahead == 'n') ADVANCE(73); + if (lookahead == 'c') ADVANCE(356); END_STATE(); case 116: - if (lookahead == 'n') ADVANCE(137); + if (lookahead == 'c') ADVANCE(141); END_STATE(); case 117: - if (lookahead == 'n') ADVANCE(71); + if (lookahead == 'c') ADVANCE(195); END_STATE(); case 118: - if (lookahead == 'n') ADVANCE(74); + if (lookahead == 'c') ADVANCE(129); END_STATE(); case 119: - if (lookahead == 'n') ADVANCE(68); + if (lookahead == 'd') ADVANCE(179); END_STATE(); case 120: - if (lookahead == 'o') ADVANCE(109); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 121: - if (lookahead == 'o') ADVANCE(90); + if (lookahead == 'e') ADVANCE(101); END_STATE(); case 122: - if (lookahead == 'o') ADVANCE(130); + if (lookahead == 'e') ADVANCE(295); END_STATE(); case 123: - if (lookahead == 'o') ADVANCE(113); + if (lookahead == 'e') ADVANCE(278); END_STATE(); case 124: - if (lookahead == 'p') ADVANCE(100); + if (lookahead == 'e') ADVANCE(291); END_STATE(); case 125: - if (lookahead == 'p') ADVANCE(122); - if (lookahead == 't') ADVANCE(86); + if (lookahead == 'e') ADVANCE(186); END_STATE(); case 126: - if (lookahead == 'p') ADVANCE(107); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 127: - if (lookahead == 'r') ADVANCE(120); + if (lookahead == 'e') ADVANCE(135); END_STATE(); case 128: - if (lookahead == 'r') ADVANCE(93); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 129: - if (lookahead == 'r') ADVANCE(221); + if (lookahead == 'e') ADVANCE(167); END_STATE(); case 130: - if (lookahead == 'r') ADVANCE(144); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 131: - if (lookahead == 's') ADVANCE(158); - if (lookahead == 'w') ADVANCE(67); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 132: - if (lookahead == 's') ADVANCE(286); + if (lookahead == 'e') ADVANCE(156); END_STATE(); case 133: - if (lookahead == 's') ADVANCE(288); + if (lookahead == 'f') ADVANCE(288); END_STATE(); case 134: - if (lookahead == 's') ADVANCE(214); + if (lookahead == 'f') ADVANCE(412); END_STATE(); case 135: - if (lookahead == 's') ADVANCE(132); + if (lookahead == 'f') ADVANCE(108); END_STATE(); case 136: - if (lookahead == 's') ADVANCE(78); - if (lookahead == 't') ADVANCE(72); + if (lookahead == 'g') ADVANCE(125); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(136); END_STATE(); case 137: - if (lookahead == 's') ADVANCE(143); + if (lookahead == 'g') ADVANCE(131); END_STATE(); case 138: - if (lookahead == 's') ADVANCE(79); + if (lookahead == 'h') ADVANCE(142); END_STATE(); case 139: - if (lookahead == 't') ADVANCE(76); + if (lookahead == 'h') ADVANCE(142); + if (lookahead == 'i') ADVANCE(188); END_STATE(); case 140: - if (lookahead == 't') ADVANCE(1); + if (lookahead == 'h') ADVANCE(270); END_STATE(); case 141: - if (lookahead == 't') ADVANCE(223); + if (lookahead == 'h') ADVANCE(297); END_STATE(); case 142: - if (lookahead == 't') ADVANCE(231); + if (lookahead == 'i') ADVANCE(151); END_STATE(); case 143: - if (lookahead == 't') ADVANCE(225); + if (lookahead == 'i') ADVANCE(165); + if (lookahead == 'r') ADVANCE(166); + if (lookahead == 'u') ADVANCE(161); END_STATE(); case 144: - if (lookahead == 't') ADVANCE(207); + if (lookahead == 'i') ADVANCE(169); END_STATE(); case 145: - if (lookahead == 't') ADVANCE(544); + if (lookahead == 'i') ADVANCE(189); END_STATE(); case 146: - if (lookahead == 't') ADVANCE(212); + if (lookahead == 'l') ADVANCE(105); END_STATE(); case 147: - if (lookahead == 't') ADVANCE(77); + if (lookahead == 'l') ADVANCE(183); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(98); + if (lookahead == 'l') ADVANCE(183); + if (lookahead == 'x') ADVANCE(171); END_STATE(); case 149: - if (lookahead == 't') ADVANCE(69); + if (lookahead == 'l') ADVANCE(204); END_STATE(); case 150: - if (lookahead == 't') ADVANCE(82); + if (lookahead == 'l') ADVANCE(149); END_STATE(); case 151: - if (lookahead == 't') ADVANCE(88); + if (lookahead == 'l') ADVANCE(124); END_STATE(); case 152: - if (lookahead == 'u') ADVANCE(160); - if (lookahead == 'x') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(371); - if (lookahead != 0) ADVANCE(368); + if (lookahead == 'l') ADVANCE(193); END_STATE(); case 153: - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'l') ADVANCE(114); END_STATE(); case 154: - if (lookahead == 'u') ADVANCE(161); + if (lookahead == 'm') ADVANCE(170); END_STATE(); case 155: - if (lookahead == 'u') ADVANCE(162); + if (lookahead == 'm') ADVANCE(268); END_STATE(); case 156: - if (lookahead == 'u') ADVANCE(163); - if (lookahead == 'x') ADVANCE(184); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(371); - if (lookahead != 0) ADVANCE(368); + if (lookahead == 'm') ADVANCE(172); END_STATE(); case 157: - if (lookahead == 'y') ADVANCE(248); + if (lookahead == 'n') ADVANCE(287); END_STATE(); case 158: - if (lookahead == 'y') ADVANCE(117); + if (lookahead == 'n') ADVANCE(119); END_STATE(); case 159: - if (lookahead == '{') ADVANCE(375); + if (lookahead == 'n') ADVANCE(358); END_STATE(); case 160: - if (lookahead == '{') ADVANCE(179); + if (lookahead == 'n') ADVANCE(284); + END_STATE(); + case 161: + if (lookahead == 'n') ADVANCE(117); + END_STATE(); + case 162: + if (lookahead == 'n') ADVANCE(184); + END_STATE(); + case 163: + if (lookahead == 'n') ADVANCE(115); + END_STATE(); + case 164: + if (lookahead == 'n') ADVANCE(118); + END_STATE(); + case 165: + if (lookahead == 'n') ADVANCE(112); + END_STATE(); + case 166: + if (lookahead == 'o') ADVANCE(155); + END_STATE(); + case 167: + if (lookahead == 'o') ADVANCE(134); + END_STATE(); + case 168: + if (lookahead == 'o') ADVANCE(176); + END_STATE(); + case 169: + if (lookahead == 'o') ADVANCE(159); + END_STATE(); + case 170: + if (lookahead == 'p') ADVANCE(146); + END_STATE(); + case 171: + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 't') ADVANCE(130); + END_STATE(); + case 172: + if (lookahead == 'p') ADVANCE(153); + END_STATE(); + case 173: + if (lookahead == 'r') ADVANCE(166); + END_STATE(); + case 174: + if (lookahead == 'r') ADVANCE(137); + END_STATE(); + case 175: + if (lookahead == 'r') ADVANCE(272); + END_STATE(); + case 176: + if (lookahead == 'r') ADVANCE(191); + END_STATE(); + case 177: + if (lookahead == 's') ADVANCE(205); + if (lookahead == 'w') ADVANCE(111); + END_STATE(); + case 178: + if (lookahead == 's') ADVANCE(352); + END_STATE(); + case 179: + if (lookahead == 's') ADVANCE(354); + END_STATE(); + case 180: + if (lookahead == 's') ADVANCE(263); + END_STATE(); + case 181: + if (lookahead == 's') ADVANCE(178); + END_STATE(); + case 182: + if (lookahead == 's') ADVANCE(122); + if (lookahead == 't') ADVANCE(116); + END_STATE(); + case 183: + if (lookahead == 's') ADVANCE(123); + END_STATE(); + case 184: + if (lookahead == 's') ADVANCE(190); + END_STATE(); + case 185: + if (lookahead == 't') ADVANCE(120); + END_STATE(); + case 186: + if (lookahead == 't') ADVANCE(1); + END_STATE(); + case 187: + if (lookahead == 't') ADVANCE(274); + END_STATE(); + case 188: + if (lookahead == 't') ADVANCE(140); + END_STATE(); + case 189: + if (lookahead == 't') ADVANCE(282); + END_STATE(); + case 190: + if (lookahead == 't') ADVANCE(276); + END_STATE(); + case 191: + if (lookahead == 't') ADVANCE(256); + END_STATE(); + case 192: + if (lookahead == 't') ADVANCE(609); + END_STATE(); + case 193: + if (lookahead == 't') ADVANCE(261); + END_STATE(); + case 194: + if (lookahead == 't') ADVANCE(121); + END_STATE(); + case 195: + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 196: + if (lookahead == 't') ADVANCE(113); + END_STATE(); + case 197: + if (lookahead == 't') ADVANCE(126); + END_STATE(); + case 198: + if (lookahead == 't') ADVANCE(132); + END_STATE(); + case 199: + if (lookahead == 'u') ADVANCE(207); + if (lookahead == 'x') ADVANCE(233); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(432); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(434); + if (lookahead != 0) ADVANCE(430); + END_STATE(); + case 200: + if (lookahead == 'u') ADVANCE(152); + END_STATE(); + case 201: + if (lookahead == 'u') ADVANCE(208); + END_STATE(); + case 202: + if (lookahead == 'u') ADVANCE(209); + END_STATE(); + case 203: + if (lookahead == 'u') ADVANCE(210); + if (lookahead == 'x') ADVANCE(233); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(432); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(434); + if (lookahead != 0) ADVANCE(430); + END_STATE(); + case 204: + if (lookahead == 'y') ADVANCE(299); + END_STATE(); + case 205: + if (lookahead == 'y') ADVANCE(163); + END_STATE(); + case 206: + if (lookahead == '{') ADVANCE(438); + END_STATE(); + case 207: + if (lookahead == '{') ADVANCE(227); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(189); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(238); END_STATE(); - case 161: - if (lookahead == '{') ADVANCE(182); + case 208: + if (lookahead == '{') ADVANCE(231); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(239); END_STATE(); - case 162: - if (lookahead == '{') ADVANCE(183); + case 209: + if (lookahead == '{') ADVANCE(232); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(191); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(240); END_STATE(); - case 163: - if (lookahead == '{') ADVANCE(185); + case 210: + if (lookahead == '{') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(181); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(230); END_STATE(); - case 164: - if (lookahead == '}') ADVANCE(541); + case 211: + if (lookahead == '}') ADVANCE(606); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); END_STATE(); - case 165: - if (lookahead == '}') ADVANCE(543); + case 212: + if (lookahead == '}') ADVANCE(608); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(212); END_STATE(); - case 166: - if (lookahead == '}') ADVANCE(368); + case 213: + if (lookahead == '}') ADVANCE(430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(213); END_STATE(); - case 167: - if (lookahead == '}') ADVANCE(369); + case 214: + if (lookahead == '}') ADVANCE(431); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(214); END_STATE(); - case 168: + case 215: if (lookahead == '+' || - lookahead == '-') ADVANCE(174); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); + lookahead == '-') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(467); END_STATE(); - case 169: + case 216: + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(64); + END_STATE(); + case 217: if (lookahead == '0' || - lookahead == '1') ADVANCE(400); + lookahead == '1') ADVANCE(463); END_STATE(); - case 170: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(401); + case 218: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(464); END_STATE(); - case 171: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + case 219: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(455); END_STATE(); - case 172: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); + case 220: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(468); END_STATE(); - case 173: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(403); + case 221: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(466); END_STATE(); - case 174: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); + case 222: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(467); END_STATE(); - case 175: + case 223: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(541); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(606); END_STATE(); - case 176: + case 224: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(543); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(608); END_STATE(); - case 177: + case 225: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(368); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(430); END_STATE(); - case 178: + case 226: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(465); END_STATE(); - case 179: + case 227: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(214); END_STATE(); - case 180: + case 228: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(369); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(431); END_STATE(); - case 181: + case 229: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(69); END_STATE(); - case 182: + case 230: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(233); END_STATE(); - case 183: + case 231: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(212); END_STATE(); - case 184: + case 232: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(177); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); END_STATE(); - case 185: + case 233: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(225); END_STATE(); - case 186: + case 234: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(180); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(213); END_STATE(); - case 187: + case 235: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(176); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(228); END_STATE(); - case 188: + case 236: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(224); END_STATE(); - case 189: + case 237: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(186); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(223); END_STATE(); - case 190: + case 238: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(235); END_STATE(); - case 191: + case 239: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(188); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(236); END_STATE(); - case 192: + case 240: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(237); + END_STATE(); + case 241: if (lookahead != 0 && - lookahead != '\n') ADVANCE(60); + lookahead != '\n') ADVANCE(104); END_STATE(); - case 193: + case 242: if (lookahead != 0 && - lookahead != '\n') ADVANCE(378); + lookahead != '\n') ADVANCE(441); END_STATE(); - case 194: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(350); - if (lookahead == '"') ADVANCE(354); + case 243: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(416); + if (lookahead == '"') ADVANCE(338); if (lookahead == '#') ADVANCE(11); - if (lookahead == '$') ADVANCE(531); - if (lookahead == '%') ADVANCE(335); - if (lookahead == '&') ADVANCE(322); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '+') ADVANCE(329); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(282); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(272); - if (lookahead == '=') ADVANCE(252); - if (lookahead == '>') ADVANCE(278); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(325); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(503); - if (lookahead == 'c') ADVANCE(435); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(477); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'o') ADVANCE(463); - if (lookahead == 's') ADVANCE(521); - if (lookahead == 't') ADVANCE(436); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(326); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '$') ADVANCE(596); + if (lookahead == '%') ADVANCE(401); + if (lookahead == '&') ADVANCE(388); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == '*') ADVANCE(259); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '.') ADVANCE(334); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '>') ADVANCE(330); + if (lookahead == '?') ADVANCE(54); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == ']') ADVANCE(306); + if (lookahead == '^') ADVANCE(391); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'c') ADVANCE(498); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(541); + if (lookahead == 'f') ADVANCE(536); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'o') ADVANCE(526); + if (lookahead == 's') ADVANCE(586); + if (lookahead == 't') ADVANCE(499); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(392); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(407); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(194) + lookahead == 8233) ADVANCE(470); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(243) if (lookahead != 0 && - lookahead > 31) ADVANCE(541); + lookahead > 31) ADVANCE(606); END_STATE(); - case 195: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(350); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(275); - if (lookahead == '=') ADVANCE(251); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(327); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + case 244: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(416); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(327); + if (lookahead == '=') ADVANCE(302); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(412); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(195) + lookahead == 8233) ADVANCE(475); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(244) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(541); + lookahead != ']') ADVANCE(606); END_STATE(); - case 196: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(350); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '%') ADVANCE(334); - if (lookahead == '&') ADVANCE(323); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '+') ADVANCE(328); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(283); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(275); - if (lookahead == '=') ADVANCE(251); - if (lookahead == '>') ADVANCE(279); - if (lookahead == '?') ADVANCE(49); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '^') ADVANCE(324); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(327); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + case 245: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(416); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(400); + if (lookahead == '&') ADVANCE(389); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '*') ADVANCE(260); + if (lookahead == '+') ADVANCE(394); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(327); + if (lookahead == '=') ADVANCE(302); + if (lookahead == '>') ADVANCE(331); + if (lookahead == '?') ADVANCE(55); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '^') ADVANCE(390); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(393); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(417); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(196) + lookahead == 8233) ADVANCE(480); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(245) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(541); + lookahead != ']') ADVANCE(606); END_STATE(); - case 197: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); + case 246: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); if (lookahead == '#') ADVANCE(11); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(414); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(197) + lookahead == 8233) ADVANCE(477); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(246) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); - case 198: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + case 247: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(411); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(198) + lookahead == 8233) ADVANCE(474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(247) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); - case 199: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + case 248: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(416); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(199) + lookahead == 8233) ADVANCE(479); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(248) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); - case 200: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + case 249: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(418); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(200) + lookahead == 8233) ADVANCE(481); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(249) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); - case 201: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(446); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + case 250: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(509); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(201) + lookahead == 8233) ADVANCE(488); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(250) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); - case 202: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(349); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == '+') ADVANCE(328); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(172); - if (lookahead == '/') ADVANCE(332); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(446); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '}') ADVANCE(218); - if (lookahead == '~') ADVANCE(351); + case 251: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(415); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == '+') ADVANCE(394); + if (lookahead == '-') ADVANCE(396); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(398); + if (lookahead == '0') ADVANCE(453); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(328); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(509); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '}') ADVANCE(267); + if (lookahead == '~') ADVANCE(417); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(426); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(202) + lookahead == 8233) ADVANCE(489); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(251) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(541); + lookahead != '|') ADVANCE(606); END_STATE(); - case 203: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(55); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '$') ADVANCE(159); - if (lookahead == '%') ADVANCE(335); - if (lookahead == '&') ADVANCE(322); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '+') ADVANCE(329); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(333); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(273); - if (lookahead == '=') ADVANCE(252); - if (lookahead == '>') ADVANCE(278); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(156); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(325); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'c') ADVANCE(62); - if (lookahead == 'd') ADVANCE(83); - if (lookahead == 'e') ADVANCE(102); - if (lookahead == 'f') ADVANCE(97); - if (lookahead == 'i') ADVANCE(111); - if (lookahead == 'l') ADVANCE(84); - if (lookahead == 'o') ADVANCE(89); - if (lookahead == 't') ADVANCE(63); - if (lookahead == 'v') ADVANCE(66); - if (lookahead == 'w') ADVANCE(94); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(326); - if (lookahead == '}') ADVANCE(218); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(204) + case 252: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '%') ADVANCE(401); + if (lookahead == '&') ADVANCE(388); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == '*') ADVANCE(259); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(399); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '>') ADVANCE(330); + if (lookahead == '?') ADVANCE(54); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(203); + if (lookahead == ']') ADVANCE(306); + if (lookahead == '^') ADVANCE(391); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'c') ADVANCE(106); + if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'e') ADVANCE(148); + if (lookahead == 'f') ADVANCE(143); + if (lookahead == 'i') ADVANCE(157); + if (lookahead == 'l') ADVANCE(128); + if (lookahead == 'o') ADVANCE(133); + if (lookahead == 't') ADVANCE(107); + if (lookahead == 'v') ADVANCE(110); + if (lookahead == 'w') ADVANCE(139); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(392); + if (lookahead == '}') ADVANCE(267); + if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(253) END_STATE(); - case 204: - if (eof) ADVANCE(205); - if (lookahead == '!') ADVANCE(55); - if (lookahead == '"') ADVANCE(354); - if (lookahead == '$') ADVANCE(159); - if (lookahead == '%') ADVANCE(335); - if (lookahead == '&') ADVANCE(322); - if (lookahead == '\'') ADVANCE(355); - if (lookahead == '(') ADVANCE(229); - if (lookahead == ')') ADVANCE(230); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '+') ADVANCE(329); - if (lookahead == ',') ADVANCE(217); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(333); - if (lookahead == ':') ADVANCE(243); - if (lookahead == ';') ADVANCE(242); - if (lookahead == '<') ADVANCE(273); - if (lookahead == '=') ADVANCE(252); - if (lookahead == '>') ADVANCE(278); - if (lookahead == '?') ADVANCE(48); - if (lookahead == '@') ADVANCE(546); - if (lookahead == '[') ADVANCE(254); - if (lookahead == ']') ADVANCE(255); - if (lookahead == '^') ADVANCE(325); - if (lookahead == '`') ADVANCE(374); - if (lookahead == 'a') ADVANCE(131); - if (lookahead == 'c') ADVANCE(62); - if (lookahead == 'd') ADVANCE(83); - if (lookahead == 'e') ADVANCE(102); - if (lookahead == 'f') ADVANCE(97); - if (lookahead == 'i') ADVANCE(111); - if (lookahead == 'l') ADVANCE(84); - if (lookahead == 'o') ADVANCE(89); - if (lookahead == 't') ADVANCE(63); - if (lookahead == 'v') ADVANCE(66); - if (lookahead == 'w') ADVANCE(94); - if (lookahead == '{') ADVANCE(216); - if (lookahead == '|') ADVANCE(326); - if (lookahead == '}') ADVANCE(218); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(204) + case 253: + if (eof) ADVANCE(254); + if (lookahead == '!') ADVANCE(99); + if (lookahead == '"') ADVANCE(338); + if (lookahead == '$') ADVANCE(206); + if (lookahead == '%') ADVANCE(401); + if (lookahead == '&') ADVANCE(388); + if (lookahead == '\'') ADVANCE(339); + if (lookahead == '(') ADVANCE(280); + if (lookahead == ')') ADVANCE(281); + if (lookahead == '*') ADVANCE(259); + if (lookahead == '+') ADVANCE(395); + if (lookahead == ',') ADVANCE(266); + if (lookahead == '-') ADVANCE(397); + if (lookahead == '.') ADVANCE(333); + if (lookahead == '/') ADVANCE(399); + if (lookahead == ':') ADVANCE(294); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '>') ADVANCE(330); + if (lookahead == '?') ADVANCE(54); + if (lookahead == '@') ADVANCE(611); + if (lookahead == '[') ADVANCE(305); + if (lookahead == ']') ADVANCE(306); + if (lookahead == '^') ADVANCE(391); + if (lookahead == '`') ADVANCE(437); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'c') ADVANCE(106); + if (lookahead == 'd') ADVANCE(127); + if (lookahead == 'e') ADVANCE(148); + if (lookahead == 'f') ADVANCE(143); + if (lookahead == 'i') ADVANCE(157); + if (lookahead == 'l') ADVANCE(128); + if (lookahead == 'o') ADVANCE(133); + if (lookahead == 't') ADVANCE(107); + if (lookahead == 'v') ADVANCE(110); + if (lookahead == 'w') ADVANCE(139); + if (lookahead == '{') ADVANCE(265); + if (lookahead == '|') ADVANCE(392); + if (lookahead == '}') ADVANCE(267); + if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(253) END_STATE(); - case 205: + case 254: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 206: + case 255: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(206); + lookahead != '\n') ADVANCE(255); END_STATE(); - case 207: + case 256: ACCEPT_TOKEN(anon_sym_export); END_STATE(); - case 208: + case 257: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 209: + case 258: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 210: + case 259: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(337); - if (lookahead == '=') ADVANCE(298); + if (lookahead == '*') ADVANCE(403); + if (lookahead == '=') ADVANCE(364); END_STATE(); - case 211: + case 260: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(336); + if (lookahead == '*') ADVANCE(402); END_STATE(); - case 212: + case 261: ACCEPT_TOKEN(anon_sym_default); END_STATE(); - case 213: + case 262: ACCEPT_TOKEN(anon_sym_default); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 214: + case 263: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 215: + case 264: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 216: + case 265: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 217: + case 266: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 218: + case 267: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 219: + case 268: ACCEPT_TOKEN(anon_sym_from); END_STATE(); - case 220: + case 269: ACCEPT_TOKEN(anon_sym_from); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 221: + case 270: + ACCEPT_TOKEN(anon_sym_with); + END_STATE(); + case 271: + ACCEPT_TOKEN(anon_sym_with); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); + END_STATE(); + case 272: ACCEPT_TOKEN(anon_sym_var); END_STATE(); - case 222: + case 273: ACCEPT_TOKEN(anon_sym_var); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 223: + case 274: ACCEPT_TOKEN(anon_sym_let); END_STATE(); - case 224: + case 275: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 225: + case 276: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 226: + case 277: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 227: + case 278: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 228: + case 279: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 229: + case 280: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 230: + case 281: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 231: + case 282: ACCEPT_TOKEN(anon_sym_await); END_STATE(); - case 232: + case 283: ACCEPT_TOKEN(anon_sym_await); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 233: + case 284: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 234: + case 285: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(524); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(589); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 235: + case 286: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(387); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == 's') ADVANCE(450); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 236: + case 287: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(149); + if (lookahead == 's') ADVANCE(196); END_STATE(); - case 237: + case 288: ACCEPT_TOKEN(anon_sym_of); END_STATE(); - case 238: + case 289: ACCEPT_TOKEN(anon_sym_of); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 239: + case 290: ACCEPT_TOKEN(anon_sym_of); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 240: + case 291: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 241: + case 292: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 242: + case 293: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 243: + case 294: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 244: + case 295: ACCEPT_TOKEN(anon_sym_case); END_STATE(); - case 245: + case 296: ACCEPT_TOKEN(anon_sym_case); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 246: + case 297: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 247: + case 298: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 248: + case 299: ACCEPT_TOKEN(anon_sym_finally); END_STATE(); - case 249: + case 300: ACCEPT_TOKEN(anon_sym_finally); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 250: + case 301: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 251: + case 302: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(339); + if (lookahead == '=') ADVANCE(405); END_STATE(); - case 252: + case 303: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(339); - if (lookahead == '>') ADVANCE(294); + if (lookahead == '=') ADVANCE(405); + if (lookahead == '>') ADVANCE(360); END_STATE(); - case 253: + case 304: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(294); + if (lookahead == '>') ADVANCE(360); END_STATE(); - case 254: + case 305: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 255: + case 306: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 256: + case 307: ACCEPT_TOKEN(sym__glimmer_template_content); END_STATE(); - case 257: + case 308: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(373); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(436); END_STATE(); - case 258: + case 309: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(257); - if (lookahead == '<') ADVANCE(259); - if (sym__glimmer_template_content_character_set_2(lookahead)) ADVANCE(258); + if (lookahead == '/') ADVANCE(308); + if (lookahead == '<') ADVANCE(310); + if (sym__glimmer_template_content_character_set_2(lookahead)) ADVANCE(309); if (lookahead != 0 && - lookahead != '\n') ADVANCE(256); + lookahead != '\n') ADVANCE(307); END_STATE(); - case 259: + case 310: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(151); + if (lookahead == '/') ADVANCE(198); END_STATE(); - case 260: + case 311: ACCEPT_TOKEN(anon_sym_LTtemplate_GT); END_STATE(); - case 261: + case 312: ACCEPT_TOKEN(anon_sym_LT_SLASHtemplate_GT); END_STATE(); - case 262: + case 313: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(5); - if (lookahead == '*') ADVANCE(266); - if (lookahead == '/') ADVANCE(267); + if (lookahead == '*') ADVANCE(317); + if (lookahead == '/') ADVANCE(318); if (lookahead != 0 && lookahead != '\n' && + lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(263); + lookahead != '}') ADVANCE(314); END_STATE(); - case 263: + case 314: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(5); if (lookahead != 0 && lookahead != '\n' && + lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(263); + lookahead != '}') ADVANCE(314); END_STATE(); - case 264: + case 315: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(2); - if (lookahead == '/') ADVANCE(262); - if (aux_sym_jsx_text_token1_character_set_2(lookahead)) ADVANCE(264); + if (lookahead == '/') ADVANCE(313); + if (aux_sym_jsx_text_token1_character_set_2(lookahead)) ADVANCE(315); if (lookahead != 0 && lookahead != '\n' && + lookahead != '&' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(263); + lookahead != '}') ADVANCE(314); END_STATE(); - case 265: + case 316: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(6); - if (lookahead == '*') ADVANCE(265); - if (lookahead == '/') ADVANCE(263); + if (lookahead == '*') ADVANCE(316); + if (lookahead == '/') ADVANCE(314); if (lookahead == '\n' || + lookahead == '&' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(45); - if (lookahead != 0) ADVANCE(266); + lookahead == '}') ADVANCE(51); + if (lookahead != 0) ADVANCE(317); END_STATE(); - case 266: + case 317: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(6); - if (lookahead == '*') ADVANCE(265); + if (lookahead == '*') ADVANCE(316); if (lookahead == '\n' || + lookahead == '&' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(45); - if (lookahead != 0) ADVANCE(266); + lookahead == '}') ADVANCE(51); + if (lookahead != 0) ADVANCE(317); END_STATE(); - case 267: + case 318: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == ' ') ADVANCE(268); - if (lookahead == '<' || + if (lookahead == ' ') ADVANCE(319); + if (lookahead == '&' || + lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(269); + lookahead == '}') ADVANCE(320); if (lookahead != 0 && - lookahead != '\n') ADVANCE(267); + lookahead != '\n') ADVANCE(318); END_STATE(); - case 268: + case 319: ACCEPT_TOKEN(aux_sym_jsx_text_token2); - if (lookahead == ' ') ADVANCE(268); - if (lookahead == '<' || + if (lookahead == ' ') ADVANCE(319); + if (lookahead == '&' || + lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(269); + lookahead == '}') ADVANCE(320); if (lookahead != 0 && - lookahead != '\n') ADVANCE(267); + lookahead != '\n') ADVANCE(318); END_STATE(); - case 269: + case 320: ACCEPT_TOKEN(aux_sym_jsx_text_token2); if (lookahead != 0 && - lookahead != '\n') ADVANCE(269); + lookahead != '\n') ADVANCE(320); END_STATE(); - case 270: + case 321: + ACCEPT_TOKEN(sym_html_character_reference); + END_STATE(); + case 322: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 271: + case 323: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(284); + if (lookahead == '/') ADVANCE(336); END_STATE(); - case 272: + case 324: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(284); - if (lookahead == '<') ADVANCE(321); - if (lookahead == '=') ADVANCE(338); - if (lookahead == 't') ADVANCE(76); + if (lookahead == '/') ADVANCE(336); + if (lookahead == '<') ADVANCE(387); + if (lookahead == '=') ADVANCE(404); + if (lookahead == 't') ADVANCE(120); END_STATE(); - case 273: + case 325: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(321); - if (lookahead == '=') ADVANCE(338); + if (lookahead == '<') ADVANCE(387); + if (lookahead == '=') ADVANCE(404); END_STATE(); - case 274: + case 326: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(320); - if (lookahead == '=') ADVANCE(338); + if (lookahead == '<') ADVANCE(386); + if (lookahead == '=') ADVANCE(404); END_STATE(); - case 275: + case 327: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(320); - if (lookahead == '=') ADVANCE(338); - if (lookahead == 't') ADVANCE(76); + if (lookahead == '<') ADVANCE(386); + if (lookahead == '=') ADVANCE(404); + if (lookahead == 't') ADVANCE(120); END_STATE(); - case 276: + case 328: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(76); + if (lookahead == 't') ADVANCE(120); END_STATE(); - case 277: + case 329: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 278: + case 330: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(343); - if (lookahead == '>') ADVANCE(316); + if (lookahead == '=') ADVANCE(409); + if (lookahead == '>') ADVANCE(382); END_STATE(); - case 279: + case 331: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(343); - if (lookahead == '>') ADVANCE(317); + if (lookahead == '=') ADVANCE(409); + if (lookahead == '>') ADVANCE(383); END_STATE(); - case 280: + case 332: ACCEPT_TOKEN(sym_jsx_identifier); if (lookahead == '$' || lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(332); END_STATE(); - case 281: + case 333: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 282: + case 334: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(50); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); + if (lookahead == '.') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(468); END_STATE(); - case 283: + case 335: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(468); END_STATE(); - case 284: + case 336: ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); - case 285: + case 337: ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); - case 286: + case 338: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 339: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 340: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '\n') ADVANCE(345); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '&') ADVANCE(340); + END_STATE(); + case 341: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '*') ADVANCE(343); + if (lookahead == '/') ADVANCE(340); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '&') ADVANCE(345); + END_STATE(); + case 342: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '*') ADVANCE(342); + if (lookahead == '/') ADVANCE(345); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '&') ADVANCE(343); + END_STATE(); + case 343: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '*') ADVANCE(342); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '&') ADVANCE(343); + END_STATE(); + case 344: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '/') ADVANCE(341); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(344); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '&') ADVANCE(345); + END_STATE(); + case 345: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '&') ADVANCE(345); + END_STATE(); + case 346: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '\n') ADVANCE(351); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(346); + END_STATE(); + case 347: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '*') ADVANCE(349); + if (lookahead == '/') ADVANCE(346); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(351); + END_STATE(); + case 348: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '*') ADVANCE(348); + if (lookahead == '/') ADVANCE(351); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(349); + END_STATE(); + case 349: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '*') ADVANCE(348); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(349); + END_STATE(); + case 350: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '/') ADVANCE(347); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(350); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(351); + END_STATE(); + case 351: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(351); + END_STATE(); + case 352: ACCEPT_TOKEN(anon_sym_class); END_STATE(); - case 287: + case 353: ACCEPT_TOKEN(anon_sym_class); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 288: + case 354: ACCEPT_TOKEN(anon_sym_extends); END_STATE(); - case 289: + case 355: ACCEPT_TOKEN(anon_sym_extends); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 290: + case 356: ACCEPT_TOKEN(anon_sym_async); END_STATE(); - case 291: + case 357: ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 292: + case 358: ACCEPT_TOKEN(anon_sym_function); END_STATE(); - case 293: + case 359: ACCEPT_TOKEN(anon_sym_function); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 294: + case 360: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 295: + case 361: ACCEPT_TOKEN(sym_optional_chain); END_STATE(); - case 296: + case 362: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 297: + case 363: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 298: + case 364: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 299: + case 365: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 300: + case 366: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 301: + case 367: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 302: + case 368: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 303: + case 369: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 304: + case 370: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 305: + case 371: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 306: + case 372: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 307: + case 373: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 308: + case 374: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 309: + case 375: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 310: + case 376: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 311: + case 377: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 312: + case 378: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 313: + case 379: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(308); + if (lookahead == '=') ADVANCE(374); END_STATE(); - case 314: + case 380: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 315: + case 381: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(309); + if (lookahead == '=') ADVANCE(375); END_STATE(); - case 316: + case 382: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(304); - if (lookahead == '>') ADVANCE(319); + if (lookahead == '=') ADVANCE(370); + if (lookahead == '>') ADVANCE(385); END_STATE(); - case 317: + case 383: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(318); + if (lookahead == '>') ADVANCE(384); END_STATE(); - case 318: + case 384: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 319: + case 385: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(305); + if (lookahead == '=') ADVANCE(371); END_STATE(); - case 320: + case 386: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 321: + case 387: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(306); + if (lookahead == '=') ADVANCE(372); END_STATE(); - case 322: + case 388: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(313); - if (lookahead == '=') ADVANCE(302); + if (lookahead == '&') ADVANCE(379); + if (lookahead == '=') ADVANCE(368); END_STATE(); - case 323: + case 389: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(312); + if (lookahead == '&') ADVANCE(378); END_STATE(); - case 324: + case 390: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 325: + case 391: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(301); + if (lookahead == '=') ADVANCE(367); END_STATE(); - case 326: + case 392: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(303); - if (lookahead == '|') ADVANCE(315); + if (lookahead == '=') ADVANCE(369); + if (lookahead == '|') ADVANCE(381); END_STATE(); - case 327: + case 393: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(314); + if (lookahead == '|') ADVANCE(380); END_STATE(); - case 328: + case 394: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(352); + if (lookahead == '+') ADVANCE(418); END_STATE(); - case 329: + case 395: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(352); - if (lookahead == '=') ADVANCE(296); + if (lookahead == '+') ADVANCE(418); + if (lookahead == '=') ADVANCE(362); END_STATE(); - case 330: + case 396: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(353); + if (lookahead == '-') ADVANCE(419); END_STATE(); - case 331: + case 397: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(353); - if (lookahead == '=') ADVANCE(297); + if (lookahead == '-') ADVANCE(419); + if (lookahead == '=') ADVANCE(363); END_STATE(); - case 332: + case 398: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(373); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(436); END_STATE(); - case 333: + case 399: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(373); - if (lookahead == '=') ADVANCE(299); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(436); + if (lookahead == '=') ADVANCE(365); END_STATE(); - case 334: + case 400: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 335: + case 401: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(300); + if (lookahead == '=') ADVANCE(366); END_STATE(); - case 336: + case 402: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 337: + case 403: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(307); + if (lookahead == '=') ADVANCE(373); END_STATE(); - case 338: + case 404: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 339: + case 405: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(340); + if (lookahead == '=') ADVANCE(406); END_STATE(); - case 340: + case 406: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 341: + case 407: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(342); + if (lookahead == '=') ADVANCE(408); END_STATE(); - case 342: + case 408: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 343: + case 409: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 344: + case 410: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 345: + case 411: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(310); + if (lookahead == '=') ADVANCE(376); END_STATE(); - case 346: + case 412: ACCEPT_TOKEN(anon_sym_instanceof); END_STATE(); - case 347: + case 413: ACCEPT_TOKEN(anon_sym_instanceof); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 348: + case 414: ACCEPT_TOKEN(anon_sym_instanceof); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 349: + case 415: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 350: + case 416: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(341); + if (lookahead == '=') ADVANCE(407); END_STATE(); - case 351: + case 417: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 352: + case 418: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 353: + case 419: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 354: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 356: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '\n') ADVANCE(361); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(356); - END_STATE(); - case 357: + case 420: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(359); - if (lookahead == '/') ADVANCE(356); + if (lookahead == '*') ADVANCE(422); + if (lookahead == '/') ADVANCE(424); if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(361); + lookahead != '\\') ADVANCE(424); END_STATE(); - case 358: + case 421: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(358); - if (lookahead == '/') ADVANCE(361); + if (lookahead == '*') ADVANCE(421); + if (lookahead == '/') ADVANCE(424); if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(359); + lookahead != '\\') ADVANCE(422); END_STATE(); - case 359: + case 422: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(358); + if (lookahead == '*') ADVANCE(421); if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(359); + lookahead != '\\') ADVANCE(422); END_STATE(); - case 360: + case 423: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(357); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(360); + if (lookahead == '/') ADVANCE(420); + if (sym_unescaped_double_string_fragment_character_set_2(lookahead)) ADVANCE(423); if (lookahead != 0 && + (lookahead < '\n' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(361); + lookahead != '\\') ADVANCE(424); END_STATE(); - case 361: + case 424: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(361); + lookahead != '\\') ADVANCE(424); END_STATE(); - case 362: + case 425: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '\n') ADVANCE(367); + if (lookahead == '*') ADVANCE(427); + if (lookahead == '/') ADVANCE(429); if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(362); + lookahead != '\\') ADVANCE(429); END_STATE(); - case 363: + case 426: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(365); - if (lookahead == '/') ADVANCE(362); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '/') ADVANCE(429); if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(367); + lookahead != '\\') ADVANCE(427); END_STATE(); - case 364: + case 427: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(364); - if (lookahead == '/') ADVANCE(367); + if (lookahead == '*') ADVANCE(426); if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(365); + lookahead != '\\') ADVANCE(427); END_STATE(); - case 365: + case 428: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(364); + if (lookahead == '/') ADVANCE(425); + if (sym_unescaped_double_string_fragment_character_set_2(lookahead)) ADVANCE(428); if (lookahead != 0 && + (lookahead < '\n' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(365); + lookahead != '\\') ADVANCE(429); END_STATE(); - case 366: + case 429: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(363); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(366); if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(367); + lookahead != '\\') ADVANCE(429); END_STATE(); - case 367: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(367); + case 430: + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 368: + case 431: ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 369: + case 432: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\n' || + lookahead == 8232 || + lookahead == 8233) ADVANCE(430); END_STATE(); - case 370: + case 433: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(368); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(430); END_STATE(); - case 371: + case 434: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(370); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(433); END_STATE(); - case 372: + case 435: ACCEPT_TOKEN(aux_sym_comment_token1); END_STATE(); - case 373: + case 436: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(373); + lookahead != '\n') ADVANCE(436); END_STATE(); - case 374: + case 437: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 375: + case 438: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 376: + case 439: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(373); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(436); END_STATE(); - case 377: + case 440: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(53) - if (lookahead == '/') ADVANCE(42); - if (lookahead == '[') ADVANCE(60); - if (lookahead == '\\') ADVANCE(193); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(377); - if (lookahead != 0) ADVANCE(378); + if (lookahead == '\n') SKIP(59) + if (lookahead == '/') ADVANCE(48); + if (lookahead == '[') ADVANCE(104); + if (lookahead == '\\') ADVANCE(242); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(440); + if (lookahead != 0) ADVANCE(441); END_STATE(); - case 378: + case 441: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(60); - if (lookahead == '\\') ADVANCE(193); + if (lookahead == '[') ADVANCE(104); + if (lookahead == '\\') ADVANCE(242); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(378); + lookahead != '/') ADVANCE(441); END_STATE(); - case 379: + case 442: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'a') ADVANCE(385); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == 'a') ADVANCE(448); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 380: + case 443: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'c') ADVANCE(381); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == 'c') ADVANCE(444); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 381: + case 444: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'e') ADVANCE(386); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == 'e') ADVANCE(449); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 382: + case 445: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'f') ADVANCE(348); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == 'f') ADVANCE(414); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 383: + case 446: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'f') ADVANCE(239); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == 'f') ADVANCE(290); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 384: + case 447: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(235); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == 'n') ADVANCE(286); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 385: + case 448: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(380); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == 'n') ADVANCE(443); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 386: + case 449: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'o') ADVANCE(382); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == 'o') ADVANCE(445); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 387: + case 450: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 't') ADVANCE(379); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (lookahead == 't') ADVANCE(442); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 388: + case 451: ACCEPT_TOKEN(sym_regex_flags); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(451); END_STATE(); - case 389: + case 452: ACCEPT_TOKEN(sym_number); END_STATE(); - case 390: + case 453: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '0') ADVANCE(403); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '0') ADVANCE(466); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(169); + lookahead == 'b') ADVANCE(217); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(168); + lookahead == 'e') ADVANCE(215); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(170); + lookahead == 'o') ADVANCE(218); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(178); - if (lookahead == '_') ADVANCE(173); - if (lookahead == 'n') ADVANCE(389); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 'x') ADVANCE(226); + if (lookahead == '_') ADVANCE(221); + if (lookahead == 'n') ADVANCE(452); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); END_STATE(); - case 391: + case 454: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '0') ADVANCE(397); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '0') ADVANCE(460); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(532); + lookahead == 'b') ADVANCE(597); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(542); + lookahead == 'e') ADVANCE(607); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(536); + lookahead == 'o') ADVANCE(601); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(540); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '_') ADVANCE(538); - if (lookahead == 'n') ADVANCE(399); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(541); + lookahead == 'x') ADVANCE(605); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '_') ADVANCE(603); + if (lookahead == 'n') ADVANCE(462); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(606); END_STATE(); - case 392: + case 455: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(406); + if (lookahead == '.') ADVANCE(469); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(168); - if (lookahead == '_') ADVANCE(171); - if (lookahead == 'n') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 'e') ADVANCE(215); + if (lookahead == '_') ADVANCE(219); + if (lookahead == 'n') ADVANCE(452); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(455); END_STATE(); - case 393: + case 456: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(406); + if (lookahead == '.') ADVANCE(469); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(542); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '_') ADVANCE(537); - if (lookahead == 'n') ADVANCE(399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(541); + lookahead == 'e') ADVANCE(607); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '_') ADVANCE(602); + if (lookahead == 'n') ADVANCE(462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(606); END_STATE(); - case 394: + case 457: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '_') ADVANCE(532); - if (lookahead == 'n') ADVANCE(399); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '_') ADVANCE(597); + if (lookahead == 'n') ADVANCE(462); if (lookahead == '0' || - lookahead == '1') ADVANCE(394); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(541); + lookahead == '1') ADVANCE(457); + if (!sym_identifier_character_set_3(lookahead)) ADVANCE(606); END_STATE(); - case 395: + case 458: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '_') ADVANCE(536); - if (lookahead == 'n') ADVANCE(399); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(395); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '_') ADVANCE(601); + if (lookahead == 'n') ADVANCE(462); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(458); + if (!sym_identifier_character_set_3(lookahead)) ADVANCE(606); END_STATE(); - case 396: + case 459: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '_') ADVANCE(540); - if (lookahead == 'n') ADVANCE(399); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '_') ADVANCE(605); + if (lookahead == 'n') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(541); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(459); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(606); END_STATE(); - case 397: + case 460: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '_') ADVANCE(538); - if (lookahead == 'n') ADVANCE(399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '_') ADVANCE(603); + if (lookahead == 'n') ADVANCE(462); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(460); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(606); END_STATE(); - case 398: + case 461: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '_') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '_') ADVANCE(604); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(461); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(606); END_STATE(); - case 399: + case 462: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 400: + case 463: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(169); - if (lookahead == 'n') ADVANCE(389); + if (lookahead == '_') ADVANCE(217); + if (lookahead == 'n') ADVANCE(452); if (lookahead == '0' || - lookahead == '1') ADVANCE(400); + lookahead == '1') ADVANCE(463); END_STATE(); - case 401: + case 464: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(170); - if (lookahead == 'n') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(401); + if (lookahead == '_') ADVANCE(218); + if (lookahead == 'n') ADVANCE(452); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(464); END_STATE(); - case 402: + case 465: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(178); - if (lookahead == 'n') ADVANCE(389); + if (lookahead == '_') ADVANCE(226); + if (lookahead == 'n') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(465); END_STATE(); - case 403: + case 466: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(173); - if (lookahead == 'n') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(403); + if (lookahead == '_') ADVANCE(221); + if (lookahead == 'n') ADVANCE(452); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(466); END_STATE(); - case 404: + case 467: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(174); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); + if (lookahead == '_') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(467); END_STATE(); - case 405: + case 468: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(168); - if (lookahead == '_') ADVANCE(172); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); + lookahead == 'e') ADVANCE(215); + if (lookahead == '_') ADVANCE(220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(468); END_STATE(); - case 406: + case 469: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(168); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); + lookahead == 'e') ADVANCE(215); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(468); END_STATE(); - case 407: + case 470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '$') ADVANCE(531); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(503); - if (lookahead == 'c') ADVANCE(435); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(477); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'o') ADVANCE(463); - if (lookahead == 's') ADVANCE(521); - if (lookahead == 't') ADVANCE(436); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '$') ADVANCE(596); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'c') ADVANCE(498); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(541); + if (lookahead == 'f') ADVANCE(536); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'o') ADVANCE(526); + if (lookahead == 's') ADVANCE(586); + if (lookahead == 't') ADVANCE(499); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(407); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_identifier_character_set_4(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(470); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_identifier_character_set_4(lookahead)) ADVANCE(606); END_STATE(); - case 408: + case 471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(280); - if (lookahead == '\\') ADVANCE(155); + if (lookahead == '-') ADVANCE(332); + if (lookahead == '\\') ADVANCE(202); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); - if (!sym_identifier_character_set_5(lookahead)) ADVANCE(541); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(471); + if (!sym_identifier_character_set_5(lookahead)) ADVANCE(606); END_STATE(); - case 409: + case 472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(435); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(498); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(409); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 410: + case 473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(435); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(498); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(410); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 411: + case 474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(411); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 412: + case 475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(412); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(475); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 413: + case 476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 's') ADVANCE(521); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 's') ADVANCE(586); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(413); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(476); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 414: + case 477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(414); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(477); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 415: + case 478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(415); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(478); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 416: + case 479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(416); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(479); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 417: + case 480: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(417); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(480); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 418: + case 481: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(480); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(418); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(481); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 419: + case 482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(419); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(482); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 420: + case 483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(420); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(483); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 421: + case 484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(421); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(484); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 422: + case 485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(422); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(485); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 423: + case 486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(423); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(486); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 424: + case 487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(447); - if (lookahead == 'd') ADVANCE(457); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(510); + if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(424); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(487); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 425: + case 488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(446); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(509); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(488); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 426: + case 489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(446); - if (lookahead == 'e') ADVANCE(478); - if (lookahead == 'f') ADVANCE(473); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'v') ADVANCE(439); - if (lookahead == 'w') ADVANCE(467); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(509); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == 'f') ADVANCE(537); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'v') ADVANCE(502); + if (lookahead == 'w') ADVANCE(530); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(426); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(489); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 427: + case 490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(481); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'o') ADVANCE(463); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(545); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'o') ADVANCE(526); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(427); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(490); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 428: + case 491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(481); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(545); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(428); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(491); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 429: + case 492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(506); - if (lookahead == 'c') ADVANCE(481); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'l') ADVANCE(458); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'c') ADVANCE(545); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'l') ADVANCE(521); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(429); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(492); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 430: + case 493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'c') ADVANCE(481); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 's') ADVANCE(521); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'c') ADVANCE(545); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 's') ADVANCE(586); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(430); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(493); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 431: + case 494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(431); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(494); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 432: + case 495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(432); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(495); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 433: + case 496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 's') ADVANCE(521); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 's') ADVANCE(586); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(433); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(496); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 434: + case 497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(391); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'l') ADVANCE(458); + if (lookahead == '0') ADVANCE(454); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'l') ADVANCE(521); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(434); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(497); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 435: + case 498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(508); - if (lookahead == 'l') ADVANCE(438); - if (lookahead == 'o') ADVANCE(490); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(572); + if (lookahead == 'l') ADVANCE(501); + if (lookahead == 'o') ADVANCE(554); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 436: + case 499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(500); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(564); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 437: + case 500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(525); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(590); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 438: + case 501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(511); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(575); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 439: + case 502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(501); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(565); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 440: + case 503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(476); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(540); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 441: + case 504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(482); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(546); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 442: + case 505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(520); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(585); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 443: + case 506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(491); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(555); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 444: + case 507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); - if (lookahead == 'o') ADVANCE(463); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'o') ADVANCE(526); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(507); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 445: + case 508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(526); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'l') ADVANCE(458); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(592); + if (lookahead == 'f') ADVANCE(591); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'l') ADVANCE(521); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(445); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 446: + case 509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(513); - if (lookahead == 'l') ADVANCE(438); - if (lookahead == 'o') ADVANCE(490); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(577); + if (lookahead == 'l') ADVANCE(501); + if (lookahead == 'o') ADVANCE(554); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 447: + case 510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'a') ADVANCE(509); - if (lookahead == 'l') ADVANCE(438); - if (lookahead == 'o') ADVANCE(490); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'a') ADVANCE(573); + if (lookahead == 'l') ADVANCE(501); + if (lookahead == 'o') ADVANCE(554); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 448: + case 511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'c') ADVANCE(535); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'c') ADVANCE(600); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 449: + case 512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'c') ADVANCE(291); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'c') ADVANCE(357); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 450: + case 513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'c') ADVANCE(468); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'c') ADVANCE(532); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 451: + case 514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'c') ADVANCE(460); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'c') ADVANCE(523); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 452: + case 515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'c') ADVANCE(522); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'c') ADVANCE(587); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 453: + case 516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'd') ADVANCE(505); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'd') ADVANCE(569); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 454: + case 517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'e') ADVANCE(245); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'e') ADVANCE(296); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 455: + case 518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'e') ADVANCE(228); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'e') ADVANCE(279); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 456: + case 519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'e') ADVANCE(241); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'e') ADVANCE(292); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 457: + case 520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'e') ADVANCE(465); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'e') ADVANCE(528); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 458: + case 521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'e') ADVANCE(514); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'e') ADVANCE(578); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 459: + case 522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'e') ADVANCE(528); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'e') ADVANCE(593); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(459); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(522); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 460: + case 523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'e') ADVANCE(495); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'e') ADVANCE(559); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 461: + case 524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'e') ADVANCE(487); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'e') ADVANCE(551); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 462: + case 525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'e') ADVANCE(518); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'e') ADVANCE(583); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 463: + case 526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'f') ADVANCE(238); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'f') ADVANCE(289); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 464: + case 527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'f') ADVANCE(347); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'f') ADVANCE(413); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 465: + case 528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'f') ADVANCE(437); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'f') ADVANCE(500); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 466: + case 529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'g') ADVANCE(462); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'g') ADVANCE(525); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 467: + case 530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'h') ADVANCE(471); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'h') ADVANCE(535); + if (lookahead == 'i') ADVANCE(579); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 468: + case 531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'h') ADVANCE(247); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'h') ADVANCE(271); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 469: + case 532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == 'o') ADVANCE(463); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'h') ADVANCE(298); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); + END_STATE(); + case 533: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'o') ADVANCE(526); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(469); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 470: + case 534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'i') ADVANCE(486); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'i') ADVANCE(550); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(470); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 471: + case 535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'i') ADVANCE(483); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'i') ADVANCE(547); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 472: + case 536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'i') ADVANCE(493); - if (lookahead == 'r') ADVANCE(494); - if (lookahead == 'u') ADVANCE(489); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'i') ADVANCE(557); + if (lookahead == 'r') ADVANCE(558); + if (lookahead == 'u') ADVANCE(553); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 473: + case 537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'i') ADVANCE(493); - if (lookahead == 'u') ADVANCE(489); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'i') ADVANCE(557); + if (lookahead == 'u') ADVANCE(553); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 474: + case 538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'i') ADVANCE(497); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'i') ADVANCE(561); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 475: + case 539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'i') ADVANCE(448); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'i') ADVANCE(511); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 476: + case 540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'i') ADVANCE(515); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'i') ADVANCE(580); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 477: + case 541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'l') ADVANCE(510); - if (lookahead == 'x') ADVANCE(498); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'l') ADVANCE(574); + if (lookahead == 'x') ADVANCE(562); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 478: + case 542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'l') ADVANCE(510); - if (lookahead == 'x') ADVANCE(499); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'l') ADVANCE(574); + if (lookahead == 'x') ADVANCE(563); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 479: + case 543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'l') ADVANCE(529); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'l') ADVANCE(594); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 480: + case 544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'l') ADVANCE(438); - if (lookahead == 'o') ADVANCE(490); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'l') ADVANCE(501); + if (lookahead == 'o') ADVANCE(554); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 481: + case 545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'l') ADVANCE(438); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'l') ADVANCE(501); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 482: + case 546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'l') ADVANCE(479); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'l') ADVANCE(543); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 483: + case 547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'l') ADVANCE(456); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'l') ADVANCE(519); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 484: + case 548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'l') ADVANCE(519); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'l') ADVANCE(584); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 485: + case 549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'm') ADVANCE(220); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'm') ADVANCE(269); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 486: + case 550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'n') ADVANCE(234); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'n') ADVANCE(285); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 487: + case 551: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'n') ADVANCE(453); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'n') ADVANCE(516); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 488: + case 552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'n') ADVANCE(293); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'n') ADVANCE(359); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 489: + case 553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'n') ADVANCE(452); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'n') ADVANCE(515); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 490: + case 554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'n') ADVANCE(512); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'n') ADVANCE(576); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 491: + case 555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'n') ADVANCE(451); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'n') ADVANCE(514); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 492: + case 556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'n') ADVANCE(449); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'n') ADVANCE(512); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 493: + case 557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'n') ADVANCE(441); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'n') ADVANCE(504); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 494: + case 558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'o') ADVANCE(485); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'o') ADVANCE(549); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 495: + case 559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'o') ADVANCE(464); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'o') ADVANCE(527); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 496: + case 560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'o') ADVANCE(502); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'o') ADVANCE(566); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 497: + case 561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'o') ADVANCE(488); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'o') ADVANCE(552); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 498: + case 562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'p') ADVANCE(496); - if (lookahead == 't') ADVANCE(461); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'p') ADVANCE(560); + if (lookahead == 't') ADVANCE(524); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 499: + case 563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'p') ADVANCE(496); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'p') ADVANCE(560); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 500: + case 564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'r') ADVANCE(466); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'r') ADVANCE(529); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 501: + case 565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'r') ADVANCE(222); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'r') ADVANCE(273); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 502: + case 566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'r') ADVANCE(517); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'r') ADVANCE(582); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 503: + case 567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(215); - if (lookahead == 'w') ADVANCE(440); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(264); + if (lookahead == 'w') ADVANCE(503); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 504: + case 568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(287); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(353); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 505: + case 569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(289); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(355); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 506: + case 570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(530); - if (lookahead == 'w') ADVANCE(440); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(595); + if (lookahead == 'w') ADVANCE(503); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 507: + case 571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(530); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(595); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 508: + case 572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(454); - if (lookahead == 't') ADVANCE(450); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(517); + if (lookahead == 't') ADVANCE(513); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 509: + case 573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(454); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(517); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 510: + case 574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(455); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(518); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 511: + case 575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(504); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(568); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 512: + case 576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 's') ADVANCE(516); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 's') ADVANCE(581); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 513: + case 577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(450); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(513); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 514: + case 578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(224); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(275); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 515: + case 579: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(232); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(531); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 516: + case 580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(226); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(283); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 517: + case 581: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(208); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(277); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 518: + case 582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(545); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(257); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 519: + case 583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(213); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(610); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 520: + case 584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(475); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(262); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 521: + case 585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(442); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(539); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 522: + case 586: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(474); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(505); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 523: + case 587: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(461); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(538); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 524: + case 588: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 't') ADVANCE(443); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(524); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 525: + case 589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'u') ADVANCE(484); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 't') ADVANCE(506); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 526: + case 590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'u') ADVANCE(489); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'u') ADVANCE(548); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 527: + case 591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'x') ADVANCE(499); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'u') ADVANCE(553); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 528: + case 592: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'x') ADVANCE(523); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'x') ADVANCE(563); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 529: + case 593: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'y') ADVANCE(249); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'x') ADVANCE(588); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 530: + case 594: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == 'y') ADVANCE(492); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'y') ADVANCE(300); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 531: + case 595: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == '{') ADVANCE(375); - if (!sym_identifier_character_set_6(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == 'y') ADVANCE(556); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 532: + case 596: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); + if (lookahead == '\\') ADVANCE(202); + if (lookahead == '{') ADVANCE(438); + if (!sym_identifier_character_set_6(lookahead)) ADVANCE(606); + END_STATE(); + case 597: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(202); if (lookahead == '0' || - lookahead == '1') ADVANCE(394); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == '1') ADVANCE(457); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 533: + case 598: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); + if (lookahead == '\\') ADVANCE(202); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == 8233) ADVANCE(598); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 534: + case 599: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); + if (lookahead == '\\') ADVANCE(202); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); + lookahead == 8233) ADVANCE(599); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); - if (!sym_identifier_character_set_5(lookahead)) ADVANCE(541); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(471); + if (!sym_identifier_character_set_5(lookahead)) ADVANCE(606); END_STATE(); - case 535: + case 600: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); + if (lookahead == '\\') ADVANCE(202); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(92); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == ' ') ADVANCE(136); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 536: + case 601: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(395); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(458); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 537: + case 602: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 538: + case 603: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(460); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 539: + case 604: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(461); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 540: + case 605: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); + if (lookahead == '\\') ADVANCE(202); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(459); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 541: + case 606: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 542: + case 607: ACCEPT_TOKEN(sym_identifier); if (lookahead == '+' || - lookahead == '-') ADVANCE(174); - if (lookahead == '\\') ADVANCE(155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + lookahead == '-') ADVANCE(222); + if (lookahead == '\\') ADVANCE(202); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(461); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 543: + case 608: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(154); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(543); + if (lookahead == '\\') ADVANCE(201); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(608); END_STATE(); - case 544: + case 609: ACCEPT_TOKEN(anon_sym_target); END_STATE(); - case 545: + case 610: ACCEPT_TOKEN(anon_sym_target); - if (lookahead == '\\') ADVANCE(155); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + if (lookahead == '\\') ADVANCE(202); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(606); END_STATE(); - case 546: + case 611: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 547: + case 612: ACCEPT_TOKEN(aux_sym_method_definition_token1); - if (lookahead == '\n') ADVANCE(547); + if (lookahead == '\n') ADVANCE(612); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(1); END_STATE(); @@ -9908,8 +10417,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(10); if (lookahead == 'u') ADVANCE(11); if (lookahead == 'v') ADVANCE(12); - if (lookahead == 'w') ADVANCE(13); - if (lookahead == 'y') ADVANCE(14); + if (lookahead == 'y') ADVANCE(13); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -9924,345 +10432,333 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(0) END_STATE(); case 1: - if (lookahead == 'r') ADVANCE(15); + if (lookahead == 'r') ADVANCE(14); END_STATE(); case 2: - if (lookahead == 'o') ADVANCE(16); + if (lookahead == 'o') ADVANCE(15); END_STATE(); case 3: - if (lookahead == 'e') ADVANCE(17); - if (lookahead == 'o') ADVANCE(18); + if (lookahead == 'e') ADVANCE(16); + if (lookahead == 'o') ADVANCE(17); END_STATE(); case 4: - if (lookahead == 'a') ADVANCE(19); - if (lookahead == 'o') ADVANCE(20); + if (lookahead == 'a') ADVANCE(18); + if (lookahead == 'o') ADVANCE(19); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(21); + if (lookahead == 'e') ADVANCE(20); END_STATE(); case 6: - if (lookahead == 'f') ADVANCE(22); - if (lookahead == 'm') ADVANCE(23); + if (lookahead == 'f') ADVANCE(21); + if (lookahead == 'm') ADVANCE(22); END_STATE(); case 7: - if (lookahead == 'e') ADVANCE(24); - if (lookahead == 'u') ADVANCE(25); + if (lookahead == 'e') ADVANCE(23); + if (lookahead == 'u') ADVANCE(24); END_STATE(); case 8: - if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'e') ADVANCE(25); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(27); - if (lookahead == 't') ADVANCE(28); - if (lookahead == 'u') ADVANCE(29); - if (lookahead == 'w') ADVANCE(30); + if (lookahead == 'e') ADVANCE(26); + if (lookahead == 't') ADVANCE(27); + if (lookahead == 'u') ADVANCE(28); + if (lookahead == 'w') ADVANCE(29); END_STATE(); case 10: - if (lookahead == 'h') ADVANCE(31); - if (lookahead == 'r') ADVANCE(32); - if (lookahead == 'y') ADVANCE(33); + if (lookahead == 'h') ADVANCE(30); + if (lookahead == 'r') ADVANCE(31); + if (lookahead == 'y') ADVANCE(32); END_STATE(); case 11: - if (lookahead == 'n') ADVANCE(34); + if (lookahead == 'n') ADVANCE(33); END_STATE(); case 12: - if (lookahead == 'o') ADVANCE(35); + if (lookahead == 'o') ADVANCE(34); END_STATE(); case 13: - if (lookahead == 'i') ADVANCE(36); + if (lookahead == 'i') ADVANCE(35); END_STATE(); case 14: - if (lookahead == 'i') ADVANCE(37); + if (lookahead == 'e') ADVANCE(36); END_STATE(); case 15: - if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'n') ADVANCE(37); END_STATE(); case 16: - if (lookahead == 'n') ADVANCE(39); + if (lookahead == 'b') ADVANCE(38); + if (lookahead == 'l') ADVANCE(39); END_STATE(); case 17: - if (lookahead == 'b') ADVANCE(40); - if (lookahead == 'l') ADVANCE(41); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 18: - ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'l') ADVANCE(40); END_STATE(); case 19: - if (lookahead == 'l') ADVANCE(42); + if (lookahead == 'r') ADVANCE(41); END_STATE(); case 20: - if (lookahead == 'r') ADVANCE(43); + if (lookahead == 't') ADVANCE(42); END_STATE(); case 21: - if (lookahead == 't') ADVANCE(44); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 22: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'p') ADVANCE(43); END_STATE(); case 23: - if (lookahead == 'p') ADVANCE(45); + if (lookahead == 'w') ADVANCE(44); END_STATE(); case 24: - if (lookahead == 'w') ADVANCE(46); + if (lookahead == 'l') ADVANCE(45); END_STATE(); case 25: - if (lookahead == 'l') ADVANCE(47); + if (lookahead == 't') ADVANCE(46); END_STATE(); case 26: - if (lookahead == 't') ADVANCE(48); + if (lookahead == 't') ADVANCE(47); END_STATE(); case 27: - if (lookahead == 't') ADVANCE(49); + if (lookahead == 'a') ADVANCE(48); END_STATE(); case 28: - if (lookahead == 'a') ADVANCE(50); + if (lookahead == 'p') ADVANCE(49); END_STATE(); case 29: - if (lookahead == 'p') ADVANCE(51); + if (lookahead == 'i') ADVANCE(50); END_STATE(); case 30: - if (lookahead == 'i') ADVANCE(52); + if (lookahead == 'i') ADVANCE(51); + if (lookahead == 'r') ADVANCE(52); END_STATE(); case 31: - if (lookahead == 'i') ADVANCE(53); - if (lookahead == 'r') ADVANCE(54); + if (lookahead == 'u') ADVANCE(53); + if (lookahead == 'y') ADVANCE(54); END_STATE(); case 32: - if (lookahead == 'u') ADVANCE(55); - if (lookahead == 'y') ADVANCE(56); + if (lookahead == 'p') ADVANCE(55); END_STATE(); case 33: - if (lookahead == 'p') ADVANCE(57); + if (lookahead == 'd') ADVANCE(56); END_STATE(); case 34: - if (lookahead == 'd') ADVANCE(58); + if (lookahead == 'i') ADVANCE(57); END_STATE(); case 35: - if (lookahead == 'i') ADVANCE(59); + if (lookahead == 'e') ADVANCE(58); END_STATE(); case 36: - if (lookahead == 't') ADVANCE(60); + if (lookahead == 'a') ADVANCE(59); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(61); + if (lookahead == 't') ADVANCE(60); END_STATE(); case 38: - if (lookahead == 'a') ADVANCE(62); + if (lookahead == 'u') ADVANCE(61); END_STATE(); case 39: - if (lookahead == 't') ADVANCE(63); + if (lookahead == 'e') ADVANCE(62); END_STATE(); case 40: - if (lookahead == 'u') ADVANCE(64); + if (lookahead == 's') ADVANCE(63); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(65); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 42: - if (lookahead == 's') ADVANCE(66); + ACCEPT_TOKEN(anon_sym_get); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'o') ADVANCE(64); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_get); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 45: - if (lookahead == 'o') ADVANCE(67); + if (lookahead == 'l') ADVANCE(65); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 'u') ADVANCE(66); END_STATE(); case 47: - if (lookahead == 'l') ADVANCE(68); + ACCEPT_TOKEN(anon_sym_set); END_STATE(); case 48: - if (lookahead == 'u') ADVANCE(69); + if (lookahead == 't') ADVANCE(67); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_set); + if (lookahead == 'e') ADVANCE(68); END_STATE(); case 50: - if (lookahead == 't') ADVANCE(70); + if (lookahead == 't') ADVANCE(69); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(71); + if (lookahead == 's') ADVANCE(70); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(72); + if (lookahead == 'o') ADVANCE(71); END_STATE(); case 53: - if (lookahead == 's') ADVANCE(73); + if (lookahead == 'e') ADVANCE(72); END_STATE(); case 54: - if (lookahead == 'o') ADVANCE(74); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 55: - if (lookahead == 'e') ADVANCE(75); + if (lookahead == 'e') ADVANCE(73); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'e') ADVANCE(74); END_STATE(); case 57: - if (lookahead == 'e') ADVANCE(76); + if (lookahead == 'd') ADVANCE(75); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(77); + if (lookahead == 'l') ADVANCE(76); END_STATE(); case 59: - if (lookahead == 'd') ADVANCE(78); + if (lookahead == 'k') ADVANCE(77); END_STATE(); case 60: - if (lookahead == 'h') ADVANCE(79); + if (lookahead == 'i') ADVANCE(78); END_STATE(); case 61: - if (lookahead == 'l') ADVANCE(80); + if (lookahead == 'g') ADVANCE(79); END_STATE(); case 62: - if (lookahead == 'k') ADVANCE(81); + if (lookahead == 't') ADVANCE(80); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(82); + if (lookahead == 'e') ADVANCE(81); END_STATE(); case 64: - if (lookahead == 'g') ADVANCE(83); + if (lookahead == 'r') ADVANCE(82); END_STATE(); case 65: - if (lookahead == 't') ADVANCE(84); + ACCEPT_TOKEN(sym_null); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(85); + if (lookahead == 'r') ADVANCE(83); END_STATE(); case 67: - if (lookahead == 'r') ADVANCE(86); + if (lookahead == 'i') ADVANCE(84); END_STATE(); case 68: - ACCEPT_TOKEN(sym_null); + if (lookahead == 'r') ADVANCE(85); END_STATE(); case 69: - if (lookahead == 'r') ADVANCE(87); + if (lookahead == 'c') ADVANCE(86); END_STATE(); case 70: - if (lookahead == 'i') ADVANCE(88); + ACCEPT_TOKEN(sym_this); END_STATE(); case 71: - if (lookahead == 'r') ADVANCE(89); + if (lookahead == 'w') ADVANCE(87); END_STATE(); case 72: - if (lookahead == 'c') ADVANCE(90); + ACCEPT_TOKEN(sym_true); END_STATE(); case 73: - ACCEPT_TOKEN(sym_this); + if (lookahead == 'o') ADVANCE(88); END_STATE(); case 74: - if (lookahead == 'w') ADVANCE(91); + if (lookahead == 'f') ADVANCE(89); END_STATE(); case 75: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(anon_sym_void); END_STATE(); case 76: - if (lookahead == 'o') ADVANCE(92); + if (lookahead == 'd') ADVANCE(90); END_STATE(); case 77: - if (lookahead == 'f') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_void); + if (lookahead == 'n') ADVANCE(91); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_with); + if (lookahead == 'g') ADVANCE(92); END_STATE(); case 80: - if (lookahead == 'd') ADVANCE(94); + if (lookahead == 'e') ADVANCE(93); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(sym_false); END_STATE(); case 82: - if (lookahead == 'n') ADVANCE(95); + if (lookahead == 't') ADVANCE(94); END_STATE(); case 83: - if (lookahead == 'g') ADVANCE(96); + if (lookahead == 'n') ADVANCE(95); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 'c') ADVANCE(96); END_STATE(); case 85: - ACCEPT_TOKEN(sym_false); + ACCEPT_TOKEN(sym_super); END_STATE(); case 86: - if (lookahead == 't') ADVANCE(98); + if (lookahead == 'h') ADVANCE(97); END_STATE(); case 87: - if (lookahead == 'n') ADVANCE(99); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 88: - if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'f') ADVANCE(98); END_STATE(); case 89: - ACCEPT_TOKEN(sym_super); + if (lookahead == 'i') ADVANCE(99); END_STATE(); case 90: - if (lookahead == 'h') ADVANCE(101); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_throw); + if (lookahead == 'u') ADVANCE(100); END_STATE(); case 92: - if (lookahead == 'f') ADVANCE(102); + if (lookahead == 'e') ADVANCE(101); END_STATE(); case 93: - if (lookahead == 'i') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 95: - if (lookahead == 'u') ADVANCE(104); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 96: - if (lookahead == 'e') ADVANCE(105); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_delete); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_import); + ACCEPT_TOKEN(anon_sym_typeof); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'n') ADVANCE(102); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'e') ADVANCE(103); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 'r') ADVANCE(104); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_typeof); + if (lookahead == 'e') ADVANCE(105); END_STATE(); case 103: - if (lookahead == 'n') ADVANCE(106); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 104: - if (lookahead == 'e') ADVANCE(107); + ACCEPT_TOKEN(anon_sym_debugger); END_STATE(); case 105: - if (lookahead == 'r') ADVANCE(108); + if (lookahead == 'd') ADVANCE(106); END_STATE(); case 106: - if (lookahead == 'e') ADVANCE(109); - END_STATE(); - case 107: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_debugger); - END_STATE(); - case 109: - if (lookahead == 'd') ADVANCE(110); - END_STATE(); - case 110: ACCEPT_TOKEN(sym_undefined); END_STATE(); default: @@ -10272,7 +10768,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 197, .external_lex_state = 2}, + [1] = {.lex_state = 246, .external_lex_state = 2}, [2] = {.lex_state = 13, .external_lex_state = 2}, [3] = {.lex_state = 13, .external_lex_state = 2}, [4] = {.lex_state = 13, .external_lex_state = 2}, @@ -10286,110 +10782,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [12] = {.lex_state = 19, .external_lex_state = 2}, [13] = {.lex_state = 19, .external_lex_state = 2}, [14] = {.lex_state = 19, .external_lex_state = 2}, - [15] = {.lex_state = 197, .external_lex_state = 2}, - [16] = {.lex_state = 197, .external_lex_state = 2}, - [17] = {.lex_state = 197, .external_lex_state = 2}, - [18] = {.lex_state = 197, .external_lex_state = 2}, - [19] = {.lex_state = 197, .external_lex_state = 2}, - [20] = {.lex_state = 197, .external_lex_state = 2}, - [21] = {.lex_state = 197, .external_lex_state = 2}, - [22] = {.lex_state = 197, .external_lex_state = 2}, - [23] = {.lex_state = 197, .external_lex_state = 2}, - [24] = {.lex_state = 197, .external_lex_state = 2}, - [25] = {.lex_state = 197, .external_lex_state = 2}, - [26] = {.lex_state = 197, .external_lex_state = 2}, - [27] = {.lex_state = 197, .external_lex_state = 2}, - [28] = {.lex_state = 197, .external_lex_state = 2}, - [29] = {.lex_state = 197, .external_lex_state = 2}, - [30] = {.lex_state = 197, .external_lex_state = 2}, - [31] = {.lex_state = 197, .external_lex_state = 2}, - [32] = {.lex_state = 197, .external_lex_state = 2}, - [33] = {.lex_state = 197, .external_lex_state = 2}, - [34] = {.lex_state = 197, .external_lex_state = 2}, - [35] = {.lex_state = 197, .external_lex_state = 2}, - [36] = {.lex_state = 197, .external_lex_state = 2}, - [37] = {.lex_state = 197, .external_lex_state = 2}, - [38] = {.lex_state = 197, .external_lex_state = 2}, - [39] = {.lex_state = 197, .external_lex_state = 2}, - [40] = {.lex_state = 197, .external_lex_state = 2}, - [41] = {.lex_state = 197, .external_lex_state = 2}, - [42] = {.lex_state = 197, .external_lex_state = 2}, - [43] = {.lex_state = 197, .external_lex_state = 2}, - [44] = {.lex_state = 197, .external_lex_state = 2}, - [45] = {.lex_state = 197, .external_lex_state = 2}, - [46] = {.lex_state = 197, .external_lex_state = 2}, - [47] = {.lex_state = 197, .external_lex_state = 2}, - [48] = {.lex_state = 197, .external_lex_state = 2}, - [49] = {.lex_state = 197, .external_lex_state = 2}, - [50] = {.lex_state = 197, .external_lex_state = 2}, - [51] = {.lex_state = 197, .external_lex_state = 2}, - [52] = {.lex_state = 197, .external_lex_state = 2}, - [53] = {.lex_state = 197, .external_lex_state = 2}, - [54] = {.lex_state = 197, .external_lex_state = 2}, - [55] = {.lex_state = 197, .external_lex_state = 2}, - [56] = {.lex_state = 197, .external_lex_state = 2}, - [57] = {.lex_state = 197, .external_lex_state = 2}, - [58] = {.lex_state = 197, .external_lex_state = 2}, - [59] = {.lex_state = 197, .external_lex_state = 2}, - [60] = {.lex_state = 197, .external_lex_state = 2}, - [61] = {.lex_state = 197, .external_lex_state = 2}, - [62] = {.lex_state = 197, .external_lex_state = 2}, - [63] = {.lex_state = 197, .external_lex_state = 2}, - [64] = {.lex_state = 197, .external_lex_state = 2}, - [65] = {.lex_state = 197, .external_lex_state = 2}, - [66] = {.lex_state = 197, .external_lex_state = 2}, - [67] = {.lex_state = 197, .external_lex_state = 2}, - [68] = {.lex_state = 197, .external_lex_state = 2}, - [69] = {.lex_state = 197, .external_lex_state = 2}, - [70] = {.lex_state = 197, .external_lex_state = 2}, - [71] = {.lex_state = 197, .external_lex_state = 2}, - [72] = {.lex_state = 197, .external_lex_state = 2}, - [73] = {.lex_state = 197, .external_lex_state = 2}, - [74] = {.lex_state = 197, .external_lex_state = 2}, - [75] = {.lex_state = 197, .external_lex_state = 2}, - [76] = {.lex_state = 197, .external_lex_state = 2}, - [77] = {.lex_state = 197, .external_lex_state = 2}, - [78] = {.lex_state = 197, .external_lex_state = 2}, - [79] = {.lex_state = 197, .external_lex_state = 2}, - [80] = {.lex_state = 197, .external_lex_state = 2}, - [81] = {.lex_state = 197, .external_lex_state = 2}, - [82] = {.lex_state = 197, .external_lex_state = 2}, - [83] = {.lex_state = 197, .external_lex_state = 2}, - [84] = {.lex_state = 197, .external_lex_state = 2}, - [85] = {.lex_state = 197, .external_lex_state = 2}, - [86] = {.lex_state = 197, .external_lex_state = 2}, - [87] = {.lex_state = 197, .external_lex_state = 2}, - [88] = {.lex_state = 197, .external_lex_state = 2}, - [89] = {.lex_state = 197, .external_lex_state = 2}, - [90] = {.lex_state = 197, .external_lex_state = 2}, - [91] = {.lex_state = 197, .external_lex_state = 2}, - [92] = {.lex_state = 197, .external_lex_state = 2}, - [93] = {.lex_state = 197, .external_lex_state = 2}, - [94] = {.lex_state = 197, .external_lex_state = 2}, - [95] = {.lex_state = 197, .external_lex_state = 2}, - [96] = {.lex_state = 197, .external_lex_state = 2}, - [97] = {.lex_state = 197, .external_lex_state = 2}, - [98] = {.lex_state = 197, .external_lex_state = 2}, - [99] = {.lex_state = 197, .external_lex_state = 2}, - [100] = {.lex_state = 197, .external_lex_state = 2}, - [101] = {.lex_state = 197, .external_lex_state = 2}, - [102] = {.lex_state = 197, .external_lex_state = 2}, - [103] = {.lex_state = 197, .external_lex_state = 2}, - [104] = {.lex_state = 197, .external_lex_state = 2}, - [105] = {.lex_state = 197, .external_lex_state = 2}, - [106] = {.lex_state = 197, .external_lex_state = 2}, - [107] = {.lex_state = 197, .external_lex_state = 2}, - [108] = {.lex_state = 197, .external_lex_state = 2}, - [109] = {.lex_state = 197, .external_lex_state = 2}, - [110] = {.lex_state = 197, .external_lex_state = 2}, - [111] = {.lex_state = 197, .external_lex_state = 2}, - [112] = {.lex_state = 197, .external_lex_state = 2}, - [113] = {.lex_state = 197, .external_lex_state = 2}, - [114] = {.lex_state = 197, .external_lex_state = 2}, - [115] = {.lex_state = 197, .external_lex_state = 2}, - [116] = {.lex_state = 197, .external_lex_state = 2}, - [117] = {.lex_state = 197, .external_lex_state = 2}, - [118] = {.lex_state = 197, .external_lex_state = 2}, + [15] = {.lex_state = 246, .external_lex_state = 2}, + [16] = {.lex_state = 246, .external_lex_state = 2}, + [17] = {.lex_state = 246, .external_lex_state = 2}, + [18] = {.lex_state = 246, .external_lex_state = 2}, + [19] = {.lex_state = 246, .external_lex_state = 2}, + [20] = {.lex_state = 246, .external_lex_state = 2}, + [21] = {.lex_state = 246, .external_lex_state = 2}, + [22] = {.lex_state = 246, .external_lex_state = 2}, + [23] = {.lex_state = 246, .external_lex_state = 2}, + [24] = {.lex_state = 246, .external_lex_state = 2}, + [25] = {.lex_state = 246, .external_lex_state = 2}, + [26] = {.lex_state = 246, .external_lex_state = 2}, + [27] = {.lex_state = 246, .external_lex_state = 2}, + [28] = {.lex_state = 246, .external_lex_state = 2}, + [29] = {.lex_state = 246, .external_lex_state = 2}, + [30] = {.lex_state = 246, .external_lex_state = 2}, + [31] = {.lex_state = 246, .external_lex_state = 2}, + [32] = {.lex_state = 246, .external_lex_state = 2}, + [33] = {.lex_state = 246, .external_lex_state = 2}, + [34] = {.lex_state = 246, .external_lex_state = 2}, + [35] = {.lex_state = 246, .external_lex_state = 2}, + [36] = {.lex_state = 246, .external_lex_state = 2}, + [37] = {.lex_state = 246, .external_lex_state = 2}, + [38] = {.lex_state = 246, .external_lex_state = 2}, + [39] = {.lex_state = 246, .external_lex_state = 2}, + [40] = {.lex_state = 246, .external_lex_state = 2}, + [41] = {.lex_state = 246, .external_lex_state = 2}, + [42] = {.lex_state = 246, .external_lex_state = 2}, + [43] = {.lex_state = 246, .external_lex_state = 2}, + [44] = {.lex_state = 246, .external_lex_state = 2}, + [45] = {.lex_state = 246, .external_lex_state = 2}, + [46] = {.lex_state = 246, .external_lex_state = 2}, + [47] = {.lex_state = 246, .external_lex_state = 2}, + [48] = {.lex_state = 246, .external_lex_state = 2}, + [49] = {.lex_state = 246, .external_lex_state = 2}, + [50] = {.lex_state = 246, .external_lex_state = 2}, + [51] = {.lex_state = 246, .external_lex_state = 2}, + [52] = {.lex_state = 246, .external_lex_state = 2}, + [53] = {.lex_state = 246, .external_lex_state = 2}, + [54] = {.lex_state = 246, .external_lex_state = 2}, + [55] = {.lex_state = 246, .external_lex_state = 2}, + [56] = {.lex_state = 246, .external_lex_state = 2}, + [57] = {.lex_state = 246, .external_lex_state = 2}, + [58] = {.lex_state = 246, .external_lex_state = 2}, + [59] = {.lex_state = 246, .external_lex_state = 2}, + [60] = {.lex_state = 246, .external_lex_state = 2}, + [61] = {.lex_state = 246, .external_lex_state = 2}, + [62] = {.lex_state = 246, .external_lex_state = 2}, + [63] = {.lex_state = 246, .external_lex_state = 2}, + [64] = {.lex_state = 246, .external_lex_state = 2}, + [65] = {.lex_state = 246, .external_lex_state = 2}, + [66] = {.lex_state = 246, .external_lex_state = 2}, + [67] = {.lex_state = 246, .external_lex_state = 2}, + [68] = {.lex_state = 246, .external_lex_state = 2}, + [69] = {.lex_state = 246, .external_lex_state = 2}, + [70] = {.lex_state = 246, .external_lex_state = 2}, + [71] = {.lex_state = 246, .external_lex_state = 2}, + [72] = {.lex_state = 246, .external_lex_state = 2}, + [73] = {.lex_state = 246, .external_lex_state = 2}, + [74] = {.lex_state = 246, .external_lex_state = 2}, + [75] = {.lex_state = 246, .external_lex_state = 2}, + [76] = {.lex_state = 246, .external_lex_state = 2}, + [77] = {.lex_state = 246, .external_lex_state = 2}, + [78] = {.lex_state = 246, .external_lex_state = 2}, + [79] = {.lex_state = 246, .external_lex_state = 2}, + [80] = {.lex_state = 246, .external_lex_state = 2}, + [81] = {.lex_state = 246, .external_lex_state = 2}, + [82] = {.lex_state = 246, .external_lex_state = 2}, + [83] = {.lex_state = 246, .external_lex_state = 2}, + [84] = {.lex_state = 246, .external_lex_state = 2}, + [85] = {.lex_state = 246, .external_lex_state = 2}, + [86] = {.lex_state = 246, .external_lex_state = 2}, + [87] = {.lex_state = 246, .external_lex_state = 2}, + [88] = {.lex_state = 246, .external_lex_state = 2}, + [89] = {.lex_state = 246, .external_lex_state = 2}, + [90] = {.lex_state = 246, .external_lex_state = 2}, + [91] = {.lex_state = 246, .external_lex_state = 2}, + [92] = {.lex_state = 246, .external_lex_state = 2}, + [93] = {.lex_state = 246, .external_lex_state = 2}, + [94] = {.lex_state = 246, .external_lex_state = 2}, + [95] = {.lex_state = 246, .external_lex_state = 2}, + [96] = {.lex_state = 246, .external_lex_state = 2}, + [97] = {.lex_state = 246, .external_lex_state = 2}, + [98] = {.lex_state = 246, .external_lex_state = 2}, + [99] = {.lex_state = 246, .external_lex_state = 2}, + [100] = {.lex_state = 246, .external_lex_state = 2}, + [101] = {.lex_state = 246, .external_lex_state = 2}, + [102] = {.lex_state = 246, .external_lex_state = 2}, + [103] = {.lex_state = 246, .external_lex_state = 2}, + [104] = {.lex_state = 246, .external_lex_state = 2}, + [105] = {.lex_state = 246, .external_lex_state = 2}, + [106] = {.lex_state = 246, .external_lex_state = 2}, + [107] = {.lex_state = 246, .external_lex_state = 2}, + [108] = {.lex_state = 246, .external_lex_state = 2}, + [109] = {.lex_state = 246, .external_lex_state = 2}, + [110] = {.lex_state = 246, .external_lex_state = 2}, + [111] = {.lex_state = 246, .external_lex_state = 2}, + [112] = {.lex_state = 246, .external_lex_state = 2}, + [113] = {.lex_state = 246, .external_lex_state = 2}, + [114] = {.lex_state = 246, .external_lex_state = 2}, + [115] = {.lex_state = 246, .external_lex_state = 2}, + [116] = {.lex_state = 246, .external_lex_state = 2}, + [117] = {.lex_state = 246, .external_lex_state = 2}, + [118] = {.lex_state = 246, .external_lex_state = 2}, [119] = {.lex_state = 7, .external_lex_state = 3}, [120] = {.lex_state = 7, .external_lex_state = 4}, [121] = {.lex_state = 8, .external_lex_state = 4}, @@ -10406,7 +10902,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [132] = {.lex_state = 17, .external_lex_state = 2}, [133] = {.lex_state = 17, .external_lex_state = 2}, [134] = {.lex_state = 17, .external_lex_state = 2}, - [135] = {.lex_state = 17, .external_lex_state = 2}, + [135] = {.lex_state = 10, .external_lex_state = 4}, [136] = {.lex_state = 17, .external_lex_state = 2}, [137] = {.lex_state = 17, .external_lex_state = 2}, [138] = {.lex_state = 17, .external_lex_state = 2}, @@ -10414,85 +10910,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [140] = {.lex_state = 17, .external_lex_state = 2}, [141] = {.lex_state = 17, .external_lex_state = 2}, [142] = {.lex_state = 17, .external_lex_state = 2}, - [143] = {.lex_state = 10, .external_lex_state = 4}, + [143] = {.lex_state = 17, .external_lex_state = 2}, [144] = {.lex_state = 17, .external_lex_state = 2}, [145] = {.lex_state = 17, .external_lex_state = 2}, [146] = {.lex_state = 17, .external_lex_state = 2}, [147] = {.lex_state = 17, .external_lex_state = 2}, - [148] = {.lex_state = 10, .external_lex_state = 4}, - [149] = {.lex_state = 12, .external_lex_state = 2}, - [150] = {.lex_state = 10, .external_lex_state = 4}, + [148] = {.lex_state = 12, .external_lex_state = 2}, + [149] = {.lex_state = 9, .external_lex_state = 4}, + [150] = {.lex_state = 12, .external_lex_state = 2}, [151] = {.lex_state = 10, .external_lex_state = 4}, [152] = {.lex_state = 10, .external_lex_state = 4}, - [153] = {.lex_state = 10, .external_lex_state = 4}, + [153] = {.lex_state = 245, .external_lex_state = 4}, [154] = {.lex_state = 10, .external_lex_state = 4}, - [155] = {.lex_state = 196, .external_lex_state = 4}, - [156] = {.lex_state = 12, .external_lex_state = 2}, + [155] = {.lex_state = 12, .external_lex_state = 2}, + [156] = {.lex_state = 10, .external_lex_state = 4}, [157] = {.lex_state = 10, .external_lex_state = 4}, [158] = {.lex_state = 10, .external_lex_state = 4}, - [159] = {.lex_state = 12, .external_lex_state = 2}, - [160] = {.lex_state = 12, .external_lex_state = 2}, + [159] = {.lex_state = 10, .external_lex_state = 4}, + [160] = {.lex_state = 10, .external_lex_state = 4}, [161] = {.lex_state = 10, .external_lex_state = 4}, [162] = {.lex_state = 10, .external_lex_state = 4}, [163] = {.lex_state = 10, .external_lex_state = 4}, [164] = {.lex_state = 10, .external_lex_state = 4}, - [165] = {.lex_state = 9, .external_lex_state = 4}, + [165] = {.lex_state = 10, .external_lex_state = 4}, [166] = {.lex_state = 10, .external_lex_state = 4}, - [167] = {.lex_state = 10, .external_lex_state = 4}, - [168] = {.lex_state = 9, .external_lex_state = 4}, - [169] = {.lex_state = 196, .external_lex_state = 4}, - [170] = {.lex_state = 9, .external_lex_state = 4}, - [171] = {.lex_state = 9, .external_lex_state = 4}, + [167] = {.lex_state = 12, .external_lex_state = 2}, + [168] = {.lex_state = 245, .external_lex_state = 4}, + [169] = {.lex_state = 9, .external_lex_state = 4}, + [170] = {.lex_state = 245, .external_lex_state = 4}, + [171] = {.lex_state = 245, .external_lex_state = 4}, [172] = {.lex_state = 9, .external_lex_state = 4}, [173] = {.lex_state = 9, .external_lex_state = 4}, - [174] = {.lex_state = 196, .external_lex_state = 4}, + [174] = {.lex_state = 9, .external_lex_state = 4}, [175] = {.lex_state = 9, .external_lex_state = 4}, - [176] = {.lex_state = 196, .external_lex_state = 4}, + [176] = {.lex_state = 9, .external_lex_state = 4}, [177] = {.lex_state = 9, .external_lex_state = 4}, [178] = {.lex_state = 9, .external_lex_state = 4}, [179] = {.lex_state = 9, .external_lex_state = 4}, [180] = {.lex_state = 9, .external_lex_state = 4}, - [181] = {.lex_state = 196, .external_lex_state = 4}, - [182] = {.lex_state = 196, .external_lex_state = 4}, - [183] = {.lex_state = 9, .external_lex_state = 4}, - [184] = {.lex_state = 196, .external_lex_state = 4}, - [185] = {.lex_state = 196, .external_lex_state = 4}, - [186] = {.lex_state = 9, .external_lex_state = 4}, - [187] = {.lex_state = 196, .external_lex_state = 4}, - [188] = {.lex_state = 12, .external_lex_state = 2}, - [189] = {.lex_state = 195, .external_lex_state = 4}, - [190] = {.lex_state = 9, .external_lex_state = 4}, - [191] = {.lex_state = 196, .external_lex_state = 4}, + [181] = {.lex_state = 245, .external_lex_state = 4}, + [182] = {.lex_state = 245, .external_lex_state = 4}, + [183] = {.lex_state = 12, .external_lex_state = 2}, + [184] = {.lex_state = 245, .external_lex_state = 4}, + [185] = {.lex_state = 244, .external_lex_state = 4}, + [186] = {.lex_state = 12, .external_lex_state = 2}, + [187] = {.lex_state = 245, .external_lex_state = 4}, + [188] = {.lex_state = 9, .external_lex_state = 4}, + [189] = {.lex_state = 245, .external_lex_state = 4}, + [190] = {.lex_state = 245, .external_lex_state = 4}, + [191] = {.lex_state = 245, .external_lex_state = 4}, [192] = {.lex_state = 9, .external_lex_state = 4}, - [193] = {.lex_state = 12, .external_lex_state = 2}, - [194] = {.lex_state = 196, .external_lex_state = 4}, - [195] = {.lex_state = 196, .external_lex_state = 4}, - [196] = {.lex_state = 196, .external_lex_state = 4}, - [197] = {.lex_state = 196, .external_lex_state = 4}, - [198] = {.lex_state = 196, .external_lex_state = 4}, - [199] = {.lex_state = 12, .external_lex_state = 2}, - [200] = {.lex_state = 195, .external_lex_state = 4}, - [201] = {.lex_state = 195, .external_lex_state = 4}, + [193] = {.lex_state = 9, .external_lex_state = 4}, + [194] = {.lex_state = 245, .external_lex_state = 4}, + [195] = {.lex_state = 12, .external_lex_state = 2}, + [196] = {.lex_state = 245, .external_lex_state = 4}, + [197] = {.lex_state = 9, .external_lex_state = 4}, + [198] = {.lex_state = 245, .external_lex_state = 4}, + [199] = {.lex_state = 245, .external_lex_state = 4}, + [200] = {.lex_state = 12, .external_lex_state = 2}, + [201] = {.lex_state = 244, .external_lex_state = 4}, [202] = {.lex_state = 12, .external_lex_state = 2}, - [203] = {.lex_state = 195, .external_lex_state = 4}, - [204] = {.lex_state = 12, .external_lex_state = 2}, - [205] = {.lex_state = 12, .external_lex_state = 2}, - [206] = {.lex_state = 195, .external_lex_state = 4}, - [207] = {.lex_state = 195, .external_lex_state = 4}, - [208] = {.lex_state = 195, .external_lex_state = 4}, + [203] = {.lex_state = 12, .external_lex_state = 2}, + [204] = {.lex_state = 244, .external_lex_state = 4}, + [205] = {.lex_state = 244, .external_lex_state = 4}, + [206] = {.lex_state = 12, .external_lex_state = 2}, + [207] = {.lex_state = 244, .external_lex_state = 4}, + [208] = {.lex_state = 244, .external_lex_state = 4}, [209] = {.lex_state = 12, .external_lex_state = 2}, - [210] = {.lex_state = 195, .external_lex_state = 4}, - [211] = {.lex_state = 195, .external_lex_state = 4}, - [212] = {.lex_state = 12, .external_lex_state = 2}, - [213] = {.lex_state = 195, .external_lex_state = 4}, - [214] = {.lex_state = 12, .external_lex_state = 2}, - [215] = {.lex_state = 195, .external_lex_state = 4}, - [216] = {.lex_state = 195, .external_lex_state = 4}, - [217] = {.lex_state = 12, .external_lex_state = 2}, - [218] = {.lex_state = 12, .external_lex_state = 2}, - [219] = {.lex_state = 195, .external_lex_state = 4}, - [220] = {.lex_state = 195, .external_lex_state = 4}, - [221] = {.lex_state = 195, .external_lex_state = 4}, + [210] = {.lex_state = 244, .external_lex_state = 4}, + [211] = {.lex_state = 12, .external_lex_state = 2}, + [212] = {.lex_state = 244, .external_lex_state = 4}, + [213] = {.lex_state = 244, .external_lex_state = 4}, + [214] = {.lex_state = 244, .external_lex_state = 4}, + [215] = {.lex_state = 244, .external_lex_state = 4}, + [216] = {.lex_state = 12, .external_lex_state = 2}, + [217] = {.lex_state = 244, .external_lex_state = 4}, + [218] = {.lex_state = 244, .external_lex_state = 4}, + [219] = {.lex_state = 244, .external_lex_state = 4}, + [220] = {.lex_state = 12, .external_lex_state = 2}, + [221] = {.lex_state = 244, .external_lex_state = 4}, [222] = {.lex_state = 12, .external_lex_state = 2}, [223] = {.lex_state = 12, .external_lex_state = 2}, [224] = {.lex_state = 12, .external_lex_state = 2}, @@ -10518,18 +11014,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [244] = {.lex_state = 12, .external_lex_state = 2}, [245] = {.lex_state = 12, .external_lex_state = 2}, [246] = {.lex_state = 12, .external_lex_state = 2}, - [247] = {.lex_state = 12, .external_lex_state = 2}, + [247] = {.lex_state = 14, .external_lex_state = 2}, [248] = {.lex_state = 12, .external_lex_state = 2}, [249] = {.lex_state = 12, .external_lex_state = 2}, [250] = {.lex_state = 12, .external_lex_state = 2}, [251] = {.lex_state = 12, .external_lex_state = 2}, [252] = {.lex_state = 12, .external_lex_state = 2}, - [253] = {.lex_state = 12, .external_lex_state = 2}, + [253] = {.lex_state = 14, .external_lex_state = 2}, [254] = {.lex_state = 12, .external_lex_state = 2}, [255] = {.lex_state = 12, .external_lex_state = 2}, [256] = {.lex_state = 14, .external_lex_state = 2}, [257] = {.lex_state = 12, .external_lex_state = 2}, - [258] = {.lex_state = 12, .external_lex_state = 2}, + [258] = {.lex_state = 14, .external_lex_state = 2}, [259] = {.lex_state = 12, .external_lex_state = 2}, [260] = {.lex_state = 12, .external_lex_state = 2}, [261] = {.lex_state = 12, .external_lex_state = 2}, @@ -10556,19 +11052,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [282] = {.lex_state = 12, .external_lex_state = 2}, [283] = {.lex_state = 12, .external_lex_state = 2}, [284] = {.lex_state = 12, .external_lex_state = 2}, - [285] = {.lex_state = 14, .external_lex_state = 2}, - [286] = {.lex_state = 14, .external_lex_state = 2}, + [285] = {.lex_state = 12, .external_lex_state = 2}, + [286] = {.lex_state = 12, .external_lex_state = 2}, [287] = {.lex_state = 12, .external_lex_state = 2}, [288] = {.lex_state = 12, .external_lex_state = 2}, [289] = {.lex_state = 12, .external_lex_state = 2}, - [290] = {.lex_state = 14, .external_lex_state = 2}, + [290] = {.lex_state = 12, .external_lex_state = 2}, [291] = {.lex_state = 12, .external_lex_state = 2}, [292] = {.lex_state = 12, .external_lex_state = 2}, [293] = {.lex_state = 12, .external_lex_state = 2}, - [294] = {.lex_state = 14, .external_lex_state = 2}, + [294] = {.lex_state = 12, .external_lex_state = 2}, [295] = {.lex_state = 12, .external_lex_state = 2}, [296] = {.lex_state = 12, .external_lex_state = 2}, - [297] = {.lex_state = 12, .external_lex_state = 2}, + [297] = {.lex_state = 14, .external_lex_state = 2}, [298] = {.lex_state = 12, .external_lex_state = 2}, [299] = {.lex_state = 12, .external_lex_state = 2}, [300] = {.lex_state = 12, .external_lex_state = 2}, @@ -10694,17 +11190,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [420] = {.lex_state = 12, .external_lex_state = 2}, [421] = {.lex_state = 12, .external_lex_state = 2}, [422] = {.lex_state = 12, .external_lex_state = 2}, - [423] = {.lex_state = 203, .external_lex_state = 4}, - [424] = {.lex_state = 203, .external_lex_state = 4}, - [425] = {.lex_state = 203, .external_lex_state = 4}, - [426] = {.lex_state = 203, .external_lex_state = 4}, - [427] = {.lex_state = 203, .external_lex_state = 4}, - [428] = {.lex_state = 203, .external_lex_state = 4}, + [423] = {.lex_state = 252, .external_lex_state = 4}, + [424] = {.lex_state = 252, .external_lex_state = 4}, + [425] = {.lex_state = 252, .external_lex_state = 4}, + [426] = {.lex_state = 252, .external_lex_state = 4}, + [427] = {.lex_state = 252, .external_lex_state = 4}, + [428] = {.lex_state = 252, .external_lex_state = 4}, [429] = {.lex_state = 22, .external_lex_state = 4}, - [430] = {.lex_state = 203, .external_lex_state = 4}, + [430] = {.lex_state = 22, .external_lex_state = 4}, [431] = {.lex_state = 22, .external_lex_state = 4}, - [432] = {.lex_state = 203, .external_lex_state = 4}, - [433] = {.lex_state = 22, .external_lex_state = 4}, + [432] = {.lex_state = 252, .external_lex_state = 4}, + [433] = {.lex_state = 252, .external_lex_state = 4}, [434] = {.lex_state = 23, .external_lex_state = 4}, [435] = {.lex_state = 23, .external_lex_state = 4}, [436] = {.lex_state = 23, .external_lex_state = 4}, @@ -10713,129 +11209,129 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [439] = {.lex_state = 23, .external_lex_state = 4}, [440] = {.lex_state = 24, .external_lex_state = 3}, [441] = {.lex_state = 24, .external_lex_state = 3}, - [442] = {.lex_state = 26, .external_lex_state = 4}, - [443] = {.lex_state = 24, .external_lex_state = 4}, + [442] = {.lex_state = 24, .external_lex_state = 4}, + [443] = {.lex_state = 25, .external_lex_state = 4}, [444] = {.lex_state = 24, .external_lex_state = 4}, [445] = {.lex_state = 26, .external_lex_state = 4}, - [446] = {.lex_state = 24, .external_lex_state = 3}, - [447] = {.lex_state = 25, .external_lex_state = 4}, - [448] = {.lex_state = 24, .external_lex_state = 4}, + [446] = {.lex_state = 16, .external_lex_state = 2}, + [447] = {.lex_state = 26, .external_lex_state = 4}, + [448] = {.lex_state = 25, .external_lex_state = 4}, [449] = {.lex_state = 24, .external_lex_state = 3}, - [450] = {.lex_state = 24, .external_lex_state = 4}, - [451] = {.lex_state = 24, .external_lex_state = 3}, + [450] = {.lex_state = 24, .external_lex_state = 3}, + [451] = {.lex_state = 24, .external_lex_state = 4}, [452] = {.lex_state = 24, .external_lex_state = 4}, - [453] = {.lex_state = 26, .external_lex_state = 4}, + [453] = {.lex_state = 25, .external_lex_state = 4}, [454] = {.lex_state = 24, .external_lex_state = 4}, - [455] = {.lex_state = 24, .external_lex_state = 4}, - [456] = {.lex_state = 16, .external_lex_state = 2}, - [457] = {.lex_state = 25, .external_lex_state = 4}, - [458] = {.lex_state = 25, .external_lex_state = 4}, - [459] = {.lex_state = 15, .external_lex_state = 2}, - [460] = {.lex_state = 24, .external_lex_state = 3}, - [461] = {.lex_state = 202, .external_lex_state = 2}, + [455] = {.lex_state = 26, .external_lex_state = 4}, + [456] = {.lex_state = 24, .external_lex_state = 4}, + [457] = {.lex_state = 24, .external_lex_state = 4}, + [458] = {.lex_state = 24, .external_lex_state = 3}, + [459] = {.lex_state = 16, .external_lex_state = 5}, + [460] = {.lex_state = 15, .external_lex_state = 2}, + [461] = {.lex_state = 251, .external_lex_state = 2}, [462] = {.lex_state = 16, .external_lex_state = 5}, - [463] = {.lex_state = 16, .external_lex_state = 5}, - [464] = {.lex_state = 202, .external_lex_state = 5}, - [465] = {.lex_state = 202, .external_lex_state = 5}, + [463] = {.lex_state = 24, .external_lex_state = 3}, + [464] = {.lex_state = 24, .external_lex_state = 4}, + [465] = {.lex_state = 15, .external_lex_state = 5}, [466] = {.lex_state = 24, .external_lex_state = 4}, - [467] = {.lex_state = 15, .external_lex_state = 5}, - [468] = {.lex_state = 20, .external_lex_state = 5}, - [469] = {.lex_state = 24, .external_lex_state = 4}, - [470] = {.lex_state = 16, .external_lex_state = 2}, - [471] = {.lex_state = 24, .external_lex_state = 3}, + [467] = {.lex_state = 16, .external_lex_state = 2}, + [468] = {.lex_state = 250, .external_lex_state = 2}, + [469] = {.lex_state = 20, .external_lex_state = 2}, + [470] = {.lex_state = 20, .external_lex_state = 5}, + [471] = {.lex_state = 24, .external_lex_state = 4}, [472] = {.lex_state = 20, .external_lex_state = 5}, - [473] = {.lex_state = 24, .external_lex_state = 4}, + [473] = {.lex_state = 251, .external_lex_state = 5}, [474] = {.lex_state = 15, .external_lex_state = 5}, - [475] = {.lex_state = 24, .external_lex_state = 4}, - [476] = {.lex_state = 24, .external_lex_state = 3}, - [477] = {.lex_state = 20, .external_lex_state = 2}, - [478] = {.lex_state = 16, .external_lex_state = 2}, - [479] = {.lex_state = 24, .external_lex_state = 4}, - [480] = {.lex_state = 201, .external_lex_state = 2}, - [481] = {.lex_state = 18, .external_lex_state = 2}, - [482] = {.lex_state = 21, .external_lex_state = 5}, - [483] = {.lex_state = 20, .external_lex_state = 2}, - [484] = {.lex_state = 199, .external_lex_state = 5}, + [475] = {.lex_state = 16, .external_lex_state = 2}, + [476] = {.lex_state = 24, .external_lex_state = 4}, + [477] = {.lex_state = 24, .external_lex_state = 3}, + [478] = {.lex_state = 251, .external_lex_state = 5}, + [479] = {.lex_state = 24, .external_lex_state = 3}, + [480] = {.lex_state = 24, .external_lex_state = 4}, + [481] = {.lex_state = 20, .external_lex_state = 2}, + [482] = {.lex_state = 26, .external_lex_state = 3}, + [483] = {.lex_state = 27, .external_lex_state = 4}, + [484] = {.lex_state = 21, .external_lex_state = 2}, [485] = {.lex_state = 21, .external_lex_state = 5}, - [486] = {.lex_state = 21, .external_lex_state = 5}, - [487] = {.lex_state = 21, .external_lex_state = 5}, - [488] = {.lex_state = 27, .external_lex_state = 4}, + [486] = {.lex_state = 20, .external_lex_state = 2}, + [487] = {.lex_state = 251, .external_lex_state = 2}, + [488] = {.lex_state = 21, .external_lex_state = 5}, [489] = {.lex_state = 21, .external_lex_state = 5}, [490] = {.lex_state = 21, .external_lex_state = 5}, [491] = {.lex_state = 21, .external_lex_state = 5}, - [492] = {.lex_state = 20, .external_lex_state = 2}, - [493] = {.lex_state = 25, .external_lex_state = 4}, - [494] = {.lex_state = 26, .external_lex_state = 3}, - [495] = {.lex_state = 201, .external_lex_state = 5}, - [496] = {.lex_state = 26, .external_lex_state = 3}, - [497] = {.lex_state = 21, .external_lex_state = 5}, - [498] = {.lex_state = 202, .external_lex_state = 2}, - [499] = {.lex_state = 18, .external_lex_state = 5}, - [500] = {.lex_state = 21, .external_lex_state = 5}, - [501] = {.lex_state = 25, .external_lex_state = 4}, - [502] = {.lex_state = 20, .external_lex_state = 2}, - [503] = {.lex_state = 21, .external_lex_state = 5}, + [492] = {.lex_state = 25, .external_lex_state = 4}, + [493] = {.lex_state = 21, .external_lex_state = 5}, + [494] = {.lex_state = 21, .external_lex_state = 5}, + [495] = {.lex_state = 21, .external_lex_state = 5}, + [496] = {.lex_state = 251, .external_lex_state = 2}, + [497] = {.lex_state = 25, .external_lex_state = 4}, + [498] = {.lex_state = 26, .external_lex_state = 3}, + [499] = {.lex_state = 21, .external_lex_state = 5}, + [500] = {.lex_state = 25, .external_lex_state = 4}, + [501] = {.lex_state = 248, .external_lex_state = 5}, + [502] = {.lex_state = 248, .external_lex_state = 5}, + [503] = {.lex_state = 248, .external_lex_state = 2}, [504] = {.lex_state = 21, .external_lex_state = 5}, [505] = {.lex_state = 21, .external_lex_state = 2}, - [506] = {.lex_state = 21, .external_lex_state = 5}, - [507] = {.lex_state = 202, .external_lex_state = 2}, - [508] = {.lex_state = 15, .external_lex_state = 2}, - [509] = {.lex_state = 26, .external_lex_state = 3}, - [510] = {.lex_state = 199, .external_lex_state = 2}, - [511] = {.lex_state = 21, .external_lex_state = 2}, - [512] = {.lex_state = 21, .external_lex_state = 5}, + [506] = {.lex_state = 18, .external_lex_state = 2}, + [507] = {.lex_state = 21, .external_lex_state = 5}, + [508] = {.lex_state = 250, .external_lex_state = 5}, + [509] = {.lex_state = 21, .external_lex_state = 5}, + [510] = {.lex_state = 21, .external_lex_state = 5}, + [511] = {.lex_state = 21, .external_lex_state = 5}, + [512] = {.lex_state = 26, .external_lex_state = 3}, [513] = {.lex_state = 21, .external_lex_state = 5}, - [514] = {.lex_state = 25, .external_lex_state = 4}, - [515] = {.lex_state = 20, .external_lex_state = 2}, - [516] = {.lex_state = 201, .external_lex_state = 5}, - [517] = {.lex_state = 25, .external_lex_state = 4}, + [514] = {.lex_state = 250, .external_lex_state = 5}, + [515] = {.lex_state = 25, .external_lex_state = 4}, + [516] = {.lex_state = 18, .external_lex_state = 5}, + [517] = {.lex_state = 21, .external_lex_state = 5}, [518] = {.lex_state = 15, .external_lex_state = 2}, [519] = {.lex_state = 18, .external_lex_state = 5}, - [520] = {.lex_state = 25, .external_lex_state = 4}, - [521] = {.lex_state = 21, .external_lex_state = 5}, - [522] = {.lex_state = 21, .external_lex_state = 5}, - [523] = {.lex_state = 199, .external_lex_state = 5}, + [520] = {.lex_state = 15, .external_lex_state = 2}, + [521] = {.lex_state = 20, .external_lex_state = 2}, + [522] = {.lex_state = 20, .external_lex_state = 2}, + [523] = {.lex_state = 25, .external_lex_state = 4}, [524] = {.lex_state = 21, .external_lex_state = 2}, - [525] = {.lex_state = 19, .external_lex_state = 5}, - [526] = {.lex_state = 21, .external_lex_state = 2}, - [527] = {.lex_state = 21, .external_lex_state = 2}, - [528] = {.lex_state = 21, .external_lex_state = 2}, - [529] = {.lex_state = 201, .external_lex_state = 2}, + [525] = {.lex_state = 21, .external_lex_state = 2}, + [526] = {.lex_state = 19, .external_lex_state = 5}, + [527] = {.lex_state = 18, .external_lex_state = 2}, + [528] = {.lex_state = 19, .external_lex_state = 5}, + [529] = {.lex_state = 19, .external_lex_state = 5}, [530] = {.lex_state = 19, .external_lex_state = 5}, - [531] = {.lex_state = 200, .external_lex_state = 5}, - [532] = {.lex_state = 200, .external_lex_state = 5}, - [533] = {.lex_state = 21, .external_lex_state = 2}, - [534] = {.lex_state = 21, .external_lex_state = 2}, - [535] = {.lex_state = 21, .external_lex_state = 2}, - [536] = {.lex_state = 21, .external_lex_state = 2}, - [537] = {.lex_state = 21, .external_lex_state = 2}, + [531] = {.lex_state = 19, .external_lex_state = 5}, + [532] = {.lex_state = 249, .external_lex_state = 5}, + [533] = {.lex_state = 19, .external_lex_state = 5}, + [534] = {.lex_state = 19, .external_lex_state = 5}, + [535] = {.lex_state = 19, .external_lex_state = 5}, + [536] = {.lex_state = 19, .external_lex_state = 5}, + [537] = {.lex_state = 18, .external_lex_state = 2}, [538] = {.lex_state = 21, .external_lex_state = 2}, - [539] = {.lex_state = 21, .external_lex_state = 2}, - [540] = {.lex_state = 201, .external_lex_state = 2}, + [539] = {.lex_state = 248, .external_lex_state = 2}, + [540] = {.lex_state = 249, .external_lex_state = 5}, [541] = {.lex_state = 21, .external_lex_state = 2}, [542] = {.lex_state = 21, .external_lex_state = 2}, [543] = {.lex_state = 21, .external_lex_state = 2}, [544] = {.lex_state = 21, .external_lex_state = 2}, - [545] = {.lex_state = 21, .external_lex_state = 2}, - [546] = {.lex_state = 21, .external_lex_state = 2}, - [547] = {.lex_state = 21, .external_lex_state = 2}, + [545] = {.lex_state = 249, .external_lex_state = 5}, + [546] = {.lex_state = 249, .external_lex_state = 5}, + [547] = {.lex_state = 249, .external_lex_state = 5}, [548] = {.lex_state = 21, .external_lex_state = 2}, - [549] = {.lex_state = 199, .external_lex_state = 2}, - [550] = {.lex_state = 200, .external_lex_state = 2}, + [549] = {.lex_state = 21, .external_lex_state = 2}, + [550] = {.lex_state = 21, .external_lex_state = 2}, [551] = {.lex_state = 21, .external_lex_state = 2}, - [552] = {.lex_state = 21, .external_lex_state = 2}, - [553] = {.lex_state = 200, .external_lex_state = 2}, - [554] = {.lex_state = 21, .external_lex_state = 2}, - [555] = {.lex_state = 21, .external_lex_state = 2}, + [552] = {.lex_state = 249, .external_lex_state = 5}, + [553] = {.lex_state = 249, .external_lex_state = 5}, + [554] = {.lex_state = 249, .external_lex_state = 5}, + [555] = {.lex_state = 249, .external_lex_state = 5}, [556] = {.lex_state = 21, .external_lex_state = 2}, [557] = {.lex_state = 21, .external_lex_state = 2}, [558] = {.lex_state = 21, .external_lex_state = 2}, - [559] = {.lex_state = 19, .external_lex_state = 5}, + [559] = {.lex_state = 21, .external_lex_state = 2}, [560] = {.lex_state = 21, .external_lex_state = 2}, - [561] = {.lex_state = 21, .external_lex_state = 2}, + [561] = {.lex_state = 248, .external_lex_state = 2}, [562] = {.lex_state = 21, .external_lex_state = 2}, - [563] = {.lex_state = 21, .external_lex_state = 2}, - [564] = {.lex_state = 21, .external_lex_state = 2}, + [563] = {.lex_state = 250, .external_lex_state = 2}, + [564] = {.lex_state = 249, .external_lex_state = 5}, [565] = {.lex_state = 21, .external_lex_state = 2}, [566] = {.lex_state = 21, .external_lex_state = 2}, [567] = {.lex_state = 21, .external_lex_state = 2}, @@ -10844,9 +11340,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [570] = {.lex_state = 21, .external_lex_state = 2}, [571] = {.lex_state = 21, .external_lex_state = 2}, [572] = {.lex_state = 21, .external_lex_state = 2}, - [573] = {.lex_state = 198, .external_lex_state = 5}, + [573] = {.lex_state = 21, .external_lex_state = 2}, [574] = {.lex_state = 21, .external_lex_state = 2}, - [575] = {.lex_state = 200, .external_lex_state = 5}, + [575] = {.lex_state = 250, .external_lex_state = 2}, [576] = {.lex_state = 21, .external_lex_state = 2}, [577] = {.lex_state = 21, .external_lex_state = 2}, [578] = {.lex_state = 21, .external_lex_state = 2}, @@ -10854,58 +11350,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [580] = {.lex_state = 21, .external_lex_state = 2}, [581] = {.lex_state = 21, .external_lex_state = 2}, [582] = {.lex_state = 21, .external_lex_state = 2}, - [583] = {.lex_state = 21, .external_lex_state = 2}, - [584] = {.lex_state = 200, .external_lex_state = 5}, - [585] = {.lex_state = 200, .external_lex_state = 5}, + [583] = {.lex_state = 247, .external_lex_state = 5}, + [584] = {.lex_state = 21, .external_lex_state = 2}, + [585] = {.lex_state = 21, .external_lex_state = 2}, [586] = {.lex_state = 21, .external_lex_state = 2}, [587] = {.lex_state = 21, .external_lex_state = 2}, - [588] = {.lex_state = 200, .external_lex_state = 5}, + [588] = {.lex_state = 21, .external_lex_state = 2}, [589] = {.lex_state = 21, .external_lex_state = 2}, - [590] = {.lex_state = 200, .external_lex_state = 5}, + [590] = {.lex_state = 21, .external_lex_state = 2}, [591] = {.lex_state = 21, .external_lex_state = 2}, - [592] = {.lex_state = 200, .external_lex_state = 5}, - [593] = {.lex_state = 200, .external_lex_state = 5}, - [594] = {.lex_state = 199, .external_lex_state = 2}, + [592] = {.lex_state = 21, .external_lex_state = 2}, + [593] = {.lex_state = 21, .external_lex_state = 2}, + [594] = {.lex_state = 21, .external_lex_state = 2}, [595] = {.lex_state = 21, .external_lex_state = 2}, - [596] = {.lex_state = 19, .external_lex_state = 5}, - [597] = {.lex_state = 18, .external_lex_state = 2}, + [596] = {.lex_state = 21, .external_lex_state = 2}, + [597] = {.lex_state = 21, .external_lex_state = 2}, [598] = {.lex_state = 21, .external_lex_state = 2}, [599] = {.lex_state = 21, .external_lex_state = 2}, - [600] = {.lex_state = 19, .external_lex_state = 5}, + [600] = {.lex_state = 21, .external_lex_state = 2}, [601] = {.lex_state = 21, .external_lex_state = 2}, [602] = {.lex_state = 21, .external_lex_state = 2}, [603] = {.lex_state = 21, .external_lex_state = 2}, [604] = {.lex_state = 21, .external_lex_state = 2}, [605] = {.lex_state = 21, .external_lex_state = 2}, - [606] = {.lex_state = 18, .external_lex_state = 2}, + [606] = {.lex_state = 21, .external_lex_state = 2}, [607] = {.lex_state = 21, .external_lex_state = 2}, [608] = {.lex_state = 21, .external_lex_state = 2}, [609] = {.lex_state = 21, .external_lex_state = 2}, - [610] = {.lex_state = 198, .external_lex_state = 2}, + [610] = {.lex_state = 21, .external_lex_state = 2}, [611] = {.lex_state = 21, .external_lex_state = 2}, - [612] = {.lex_state = 200, .external_lex_state = 5}, - [613] = {.lex_state = 200, .external_lex_state = 5}, - [614] = {.lex_state = 199, .external_lex_state = 2}, - [615] = {.lex_state = 19, .external_lex_state = 5}, - [616] = {.lex_state = 199, .external_lex_state = 2}, - [617] = {.lex_state = 200, .external_lex_state = 5}, - [618] = {.lex_state = 19, .external_lex_state = 5}, - [619] = {.lex_state = 19, .external_lex_state = 5}, - [620] = {.lex_state = 200, .external_lex_state = 5}, - [621] = {.lex_state = 200, .external_lex_state = 5}, + [612] = {.lex_state = 21, .external_lex_state = 2}, + [613] = {.lex_state = 21, .external_lex_state = 2}, + [614] = {.lex_state = 21, .external_lex_state = 2}, + [615] = {.lex_state = 21, .external_lex_state = 2}, + [616] = {.lex_state = 21, .external_lex_state = 2}, + [617] = {.lex_state = 247, .external_lex_state = 2}, + [618] = {.lex_state = 21, .external_lex_state = 2}, + [619] = {.lex_state = 21, .external_lex_state = 2}, + [620] = {.lex_state = 21, .external_lex_state = 2}, + [621] = {.lex_state = 21, .external_lex_state = 2}, [622] = {.lex_state = 21, .external_lex_state = 2}, - [623] = {.lex_state = 198, .external_lex_state = 5}, + [623] = {.lex_state = 21, .external_lex_state = 2}, [624] = {.lex_state = 21, .external_lex_state = 2}, [625] = {.lex_state = 21, .external_lex_state = 2}, [626] = {.lex_state = 21, .external_lex_state = 2}, - [627] = {.lex_state = 21, .external_lex_state = 2}, + [627] = {.lex_state = 249, .external_lex_state = 2}, [628] = {.lex_state = 21, .external_lex_state = 2}, [629] = {.lex_state = 21, .external_lex_state = 2}, [630] = {.lex_state = 21, .external_lex_state = 2}, - [631] = {.lex_state = 19, .external_lex_state = 5}, - [632] = {.lex_state = 18, .external_lex_state = 2}, + [631] = {.lex_state = 21, .external_lex_state = 2}, + [632] = {.lex_state = 21, .external_lex_state = 2}, [633] = {.lex_state = 21, .external_lex_state = 2}, - [634] = {.lex_state = 200, .external_lex_state = 5}, + [634] = {.lex_state = 21, .external_lex_state = 2}, [635] = {.lex_state = 21, .external_lex_state = 2}, [636] = {.lex_state = 21, .external_lex_state = 2}, [637] = {.lex_state = 21, .external_lex_state = 2}, @@ -10915,476 +11411,476 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [641] = {.lex_state = 21, .external_lex_state = 2}, [642] = {.lex_state = 21, .external_lex_state = 2}, [643] = {.lex_state = 21, .external_lex_state = 2}, - [644] = {.lex_state = 19, .external_lex_state = 5}, - [645] = {.lex_state = 19, .external_lex_state = 5}, + [644] = {.lex_state = 21, .external_lex_state = 2}, + [645] = {.lex_state = 249, .external_lex_state = 2}, [646] = {.lex_state = 21, .external_lex_state = 2}, [647] = {.lex_state = 21, .external_lex_state = 2}, [648] = {.lex_state = 21, .external_lex_state = 2}, [649] = {.lex_state = 21, .external_lex_state = 2}, - [650] = {.lex_state = 21, .external_lex_state = 2}, - [651] = {.lex_state = 19, .external_lex_state = 5}, - [652] = {.lex_state = 21, .external_lex_state = 2}, - [653] = {.lex_state = 21, .external_lex_state = 2}, - [654] = {.lex_state = 21, .external_lex_state = 2}, - [655] = {.lex_state = 21, .external_lex_state = 2}, - [656] = {.lex_state = 21, .external_lex_state = 2}, - [657] = {.lex_state = 18, .external_lex_state = 2}, - [658] = {.lex_state = 21, .external_lex_state = 2}, - [659] = {.lex_state = 19, .external_lex_state = 5}, - [660] = {.lex_state = 21, .external_lex_state = 2}, - [661] = {.lex_state = 21, .external_lex_state = 2}, - [662] = {.lex_state = 19, .external_lex_state = 5}, + [650] = {.lex_state = 247, .external_lex_state = 5}, + [651] = {.lex_state = 21, .external_lex_state = 2}, + [652] = {.lex_state = 249, .external_lex_state = 5}, + [653] = {.lex_state = 249, .external_lex_state = 5}, + [654] = {.lex_state = 19, .external_lex_state = 5}, + [655] = {.lex_state = 19, .external_lex_state = 5}, + [656] = {.lex_state = 249, .external_lex_state = 5}, + [657] = {.lex_state = 248, .external_lex_state = 2}, + [658] = {.lex_state = 19, .external_lex_state = 5}, + [659] = {.lex_state = 248, .external_lex_state = 2}, + [660] = {.lex_state = 249, .external_lex_state = 5}, + [661] = {.lex_state = 249, .external_lex_state = 5}, + [662] = {.lex_state = 249, .external_lex_state = 5}, [663] = {.lex_state = 21, .external_lex_state = 2}, - [664] = {.lex_state = 21, .external_lex_state = 2}, - [665] = {.lex_state = 200, .external_lex_state = 5}, - [666] = {.lex_state = 19, .external_lex_state = 5}, + [664] = {.lex_state = 19, .external_lex_state = 5}, + [665] = {.lex_state = 21, .external_lex_state = 2}, + [666] = {.lex_state = 18, .external_lex_state = 2}, [667] = {.lex_state = 19, .external_lex_state = 5}, - [668] = {.lex_state = 200, .external_lex_state = 2}, - [669] = {.lex_state = 19, .external_lex_state = 2}, - [670] = {.lex_state = 200, .external_lex_state = 2}, - [671] = {.lex_state = 19, .external_lex_state = 2}, - [672] = {.lex_state = 19, .external_lex_state = 2}, + [668] = {.lex_state = 18, .external_lex_state = 2}, + [669] = {.lex_state = 19, .external_lex_state = 5}, + [670] = {.lex_state = 19, .external_lex_state = 5}, + [671] = {.lex_state = 249, .external_lex_state = 2}, + [672] = {.lex_state = 249, .external_lex_state = 2}, [673] = {.lex_state = 19, .external_lex_state = 2}, [674] = {.lex_state = 19, .external_lex_state = 2}, [675] = {.lex_state = 19, .external_lex_state = 2}, [676] = {.lex_state = 19, .external_lex_state = 2}, - [677] = {.lex_state = 19, .external_lex_state = 2}, - [678] = {.lex_state = 19, .external_lex_state = 2}, - [679] = {.lex_state = 19, .external_lex_state = 2}, + [677] = {.lex_state = 247, .external_lex_state = 2}, + [678] = {.lex_state = 246, .external_lex_state = 5}, + [679] = {.lex_state = 25, .external_lex_state = 4}, [680] = {.lex_state = 19, .external_lex_state = 2}, [681] = {.lex_state = 19, .external_lex_state = 2}, - [682] = {.lex_state = 19, .external_lex_state = 2}, + [682] = {.lex_state = 246, .external_lex_state = 5}, [683] = {.lex_state = 19, .external_lex_state = 2}, - [684] = {.lex_state = 25, .external_lex_state = 4}, - [685] = {.lex_state = 200, .external_lex_state = 2}, - [686] = {.lex_state = 200, .external_lex_state = 2}, - [687] = {.lex_state = 198, .external_lex_state = 2}, + [684] = {.lex_state = 19, .external_lex_state = 2}, + [685] = {.lex_state = 19, .external_lex_state = 2}, + [686] = {.lex_state = 246, .external_lex_state = 5}, + [687] = {.lex_state = 19, .external_lex_state = 2}, [688] = {.lex_state = 19, .external_lex_state = 2}, - [689] = {.lex_state = 200, .external_lex_state = 2}, - [690] = {.lex_state = 200, .external_lex_state = 2}, + [689] = {.lex_state = 19, .external_lex_state = 2}, + [690] = {.lex_state = 19, .external_lex_state = 2}, [691] = {.lex_state = 19, .external_lex_state = 2}, - [692] = {.lex_state = 200, .external_lex_state = 2}, + [692] = {.lex_state = 19, .external_lex_state = 2}, [693] = {.lex_state = 19, .external_lex_state = 2}, - [694] = {.lex_state = 200, .external_lex_state = 2}, - [695] = {.lex_state = 200, .external_lex_state = 2}, - [696] = {.lex_state = 197, .external_lex_state = 5}, + [694] = {.lex_state = 19, .external_lex_state = 2}, + [695] = {.lex_state = 19, .external_lex_state = 2}, + [696] = {.lex_state = 19, .external_lex_state = 2}, [697] = {.lex_state = 19, .external_lex_state = 2}, - [698] = {.lex_state = 200, .external_lex_state = 2}, - [699] = {.lex_state = 19, .external_lex_state = 2}, + [698] = {.lex_state = 19, .external_lex_state = 2}, + [699] = {.lex_state = 246, .external_lex_state = 5}, [700] = {.lex_state = 19, .external_lex_state = 2}, [701] = {.lex_state = 19, .external_lex_state = 2}, - [702] = {.lex_state = 19, .external_lex_state = 2}, + [702] = {.lex_state = 247, .external_lex_state = 2}, [703] = {.lex_state = 19, .external_lex_state = 2}, [704] = {.lex_state = 19, .external_lex_state = 2}, - [705] = {.lex_state = 197, .external_lex_state = 5}, + [705] = {.lex_state = 246, .external_lex_state = 5}, [706] = {.lex_state = 19, .external_lex_state = 2}, [707] = {.lex_state = 19, .external_lex_state = 2}, [708] = {.lex_state = 19, .external_lex_state = 2}, - [709] = {.lex_state = 197, .external_lex_state = 5}, + [709] = {.lex_state = 19, .external_lex_state = 2}, [710] = {.lex_state = 19, .external_lex_state = 2}, - [711] = {.lex_state = 197, .external_lex_state = 5}, + [711] = {.lex_state = 19, .external_lex_state = 2}, [712] = {.lex_state = 19, .external_lex_state = 2}, [713] = {.lex_state = 19, .external_lex_state = 2}, - [714] = {.lex_state = 19, .external_lex_state = 2}, - [715] = {.lex_state = 19, .external_lex_state = 2}, + [714] = {.lex_state = 246, .external_lex_state = 5}, + [715] = {.lex_state = 25, .external_lex_state = 4}, [716] = {.lex_state = 19, .external_lex_state = 2}, [717] = {.lex_state = 19, .external_lex_state = 2}, - [718] = {.lex_state = 25, .external_lex_state = 4}, - [719] = {.lex_state = 19, .external_lex_state = 2}, - [720] = {.lex_state = 19, .external_lex_state = 2}, - [721] = {.lex_state = 19, .external_lex_state = 2}, + [718] = {.lex_state = 246, .external_lex_state = 5}, + [719] = {.lex_state = 25, .external_lex_state = 4}, + [720] = {.lex_state = 246, .external_lex_state = 5}, + [721] = {.lex_state = 246, .external_lex_state = 5}, [722] = {.lex_state = 19, .external_lex_state = 2}, [723] = {.lex_state = 19, .external_lex_state = 2}, - [724] = {.lex_state = 19, .external_lex_state = 2}, + [724] = {.lex_state = 246, .external_lex_state = 5}, [725] = {.lex_state = 19, .external_lex_state = 2}, [726] = {.lex_state = 19, .external_lex_state = 2}, [727] = {.lex_state = 19, .external_lex_state = 2}, - [728] = {.lex_state = 200, .external_lex_state = 2}, - [729] = {.lex_state = 200, .external_lex_state = 2}, - [730] = {.lex_state = 200, .external_lex_state = 2}, + [728] = {.lex_state = 19, .external_lex_state = 2}, + [729] = {.lex_state = 249, .external_lex_state = 2}, + [730] = {.lex_state = 249, .external_lex_state = 2}, [731] = {.lex_state = 19, .external_lex_state = 2}, [732] = {.lex_state = 19, .external_lex_state = 2}, - [733] = {.lex_state = 25, .external_lex_state = 4}, + [733] = {.lex_state = 19, .external_lex_state = 2}, [734] = {.lex_state = 19, .external_lex_state = 2}, - [735] = {.lex_state = 19, .external_lex_state = 2}, - [736] = {.lex_state = 19, .external_lex_state = 2}, - [737] = {.lex_state = 19, .external_lex_state = 2}, - [738] = {.lex_state = 19, .external_lex_state = 2}, - [739] = {.lex_state = 19, .external_lex_state = 2}, - [740] = {.lex_state = 19, .external_lex_state = 2}, - [741] = {.lex_state = 19, .external_lex_state = 2}, - [742] = {.lex_state = 19, .external_lex_state = 2}, - [743] = {.lex_state = 200, .external_lex_state = 2}, - [744] = {.lex_state = 200, .external_lex_state = 2}, - [745] = {.lex_state = 200, .external_lex_state = 2}, - [746] = {.lex_state = 200, .external_lex_state = 2}, - [747] = {.lex_state = 197, .external_lex_state = 5}, - [748] = {.lex_state = 200, .external_lex_state = 2}, - [749] = {.lex_state = 200, .external_lex_state = 2}, - [750] = {.lex_state = 19, .external_lex_state = 2}, + [735] = {.lex_state = 249, .external_lex_state = 2}, + [736] = {.lex_state = 249, .external_lex_state = 2}, + [737] = {.lex_state = 249, .external_lex_state = 2}, + [738] = {.lex_state = 249, .external_lex_state = 2}, + [739] = {.lex_state = 249, .external_lex_state = 2}, + [740] = {.lex_state = 249, .external_lex_state = 2}, + [741] = {.lex_state = 249, .external_lex_state = 2}, + [742] = {.lex_state = 249, .external_lex_state = 2}, + [743] = {.lex_state = 249, .external_lex_state = 2}, + [744] = {.lex_state = 249, .external_lex_state = 2}, + [745] = {.lex_state = 249, .external_lex_state = 2}, + [746] = {.lex_state = 249, .external_lex_state = 2}, + [747] = {.lex_state = 249, .external_lex_state = 2}, + [748] = {.lex_state = 249, .external_lex_state = 2}, + [749] = {.lex_state = 249, .external_lex_state = 2}, + [750] = {.lex_state = 249, .external_lex_state = 2}, [751] = {.lex_state = 19, .external_lex_state = 2}, - [752] = {.lex_state = 200, .external_lex_state = 2}, + [752] = {.lex_state = 19, .external_lex_state = 2}, [753] = {.lex_state = 19, .external_lex_state = 2}, - [754] = {.lex_state = 19, .external_lex_state = 2}, + [754] = {.lex_state = 249, .external_lex_state = 2}, [755] = {.lex_state = 19, .external_lex_state = 2}, - [756] = {.lex_state = 19, .external_lex_state = 2}, + [756] = {.lex_state = 249, .external_lex_state = 2}, [757] = {.lex_state = 19, .external_lex_state = 2}, - [758] = {.lex_state = 197, .external_lex_state = 5}, - [759] = {.lex_state = 200, .external_lex_state = 2}, - [760] = {.lex_state = 200, .external_lex_state = 2}, + [758] = {.lex_state = 19, .external_lex_state = 2}, + [759] = {.lex_state = 19, .external_lex_state = 2}, + [760] = {.lex_state = 19, .external_lex_state = 2}, [761] = {.lex_state = 19, .external_lex_state = 2}, - [762] = {.lex_state = 200, .external_lex_state = 2}, + [762] = {.lex_state = 19, .external_lex_state = 2}, [763] = {.lex_state = 19, .external_lex_state = 2}, - [764] = {.lex_state = 19, .external_lex_state = 2}, - [765] = {.lex_state = 200, .external_lex_state = 2}, + [764] = {.lex_state = 249, .external_lex_state = 2}, + [765] = {.lex_state = 249, .external_lex_state = 2}, [766] = {.lex_state = 19, .external_lex_state = 2}, - [767] = {.lex_state = 19, .external_lex_state = 2}, - [768] = {.lex_state = 19, .external_lex_state = 2}, - [769] = {.lex_state = 200, .external_lex_state = 2}, - [770] = {.lex_state = 19, .external_lex_state = 2}, - [771] = {.lex_state = 200, .external_lex_state = 2}, - [772] = {.lex_state = 19, .external_lex_state = 2}, - [773] = {.lex_state = 200, .external_lex_state = 2}, - [774] = {.lex_state = 19, .external_lex_state = 2}, - [775] = {.lex_state = 19, .external_lex_state = 2}, - [776] = {.lex_state = 19, .external_lex_state = 2}, - [777] = {.lex_state = 19, .external_lex_state = 2}, - [778] = {.lex_state = 19, .external_lex_state = 2}, - [779] = {.lex_state = 19, .external_lex_state = 2}, - [780] = {.lex_state = 200, .external_lex_state = 2}, - [781] = {.lex_state = 19, .external_lex_state = 2}, - [782] = {.lex_state = 19, .external_lex_state = 2}, - [783] = {.lex_state = 200, .external_lex_state = 2}, - [784] = {.lex_state = 200, .external_lex_state = 2}, - [785] = {.lex_state = 200, .external_lex_state = 2}, - [786] = {.lex_state = 19, .external_lex_state = 2}, - [787] = {.lex_state = 19, .external_lex_state = 2}, - [788] = {.lex_state = 200, .external_lex_state = 2}, - [789] = {.lex_state = 200, .external_lex_state = 2}, - [790] = {.lex_state = 200, .external_lex_state = 2}, - [791] = {.lex_state = 200, .external_lex_state = 2}, - [792] = {.lex_state = 200, .external_lex_state = 2}, - [793] = {.lex_state = 19, .external_lex_state = 2}, - [794] = {.lex_state = 19, .external_lex_state = 2}, + [767] = {.lex_state = 249, .external_lex_state = 2}, + [768] = {.lex_state = 249, .external_lex_state = 2}, + [769] = {.lex_state = 249, .external_lex_state = 2}, + [770] = {.lex_state = 249, .external_lex_state = 2}, + [771] = {.lex_state = 249, .external_lex_state = 2}, + [772] = {.lex_state = 249, .external_lex_state = 2}, + [773] = {.lex_state = 249, .external_lex_state = 2}, + [774] = {.lex_state = 249, .external_lex_state = 2}, + [775] = {.lex_state = 249, .external_lex_state = 2}, + [776] = {.lex_state = 249, .external_lex_state = 2}, + [777] = {.lex_state = 249, .external_lex_state = 2}, + [778] = {.lex_state = 249, .external_lex_state = 2}, + [779] = {.lex_state = 249, .external_lex_state = 2}, + [780] = {.lex_state = 249, .external_lex_state = 2}, + [781] = {.lex_state = 249, .external_lex_state = 2}, + [782] = {.lex_state = 249, .external_lex_state = 2}, + [783] = {.lex_state = 249, .external_lex_state = 2}, + [784] = {.lex_state = 249, .external_lex_state = 2}, + [785] = {.lex_state = 249, .external_lex_state = 2}, + [786] = {.lex_state = 249, .external_lex_state = 2}, + [787] = {.lex_state = 249, .external_lex_state = 2}, + [788] = {.lex_state = 25, .external_lex_state = 4}, + [789] = {.lex_state = 249, .external_lex_state = 2}, + [790] = {.lex_state = 19, .external_lex_state = 2}, + [791] = {.lex_state = 249, .external_lex_state = 2}, + [792] = {.lex_state = 249, .external_lex_state = 2}, + [793] = {.lex_state = 249, .external_lex_state = 2}, + [794] = {.lex_state = 249, .external_lex_state = 2}, [795] = {.lex_state = 19, .external_lex_state = 2}, - [796] = {.lex_state = 197, .external_lex_state = 5}, - [797] = {.lex_state = 197, .external_lex_state = 5}, - [798] = {.lex_state = 197, .external_lex_state = 5}, - [799] = {.lex_state = 200, .external_lex_state = 2}, + [796] = {.lex_state = 249, .external_lex_state = 2}, + [797] = {.lex_state = 19, .external_lex_state = 2}, + [798] = {.lex_state = 19, .external_lex_state = 2}, + [799] = {.lex_state = 249, .external_lex_state = 2}, [800] = {.lex_state = 19, .external_lex_state = 2}, - [801] = {.lex_state = 200, .external_lex_state = 2}, - [802] = {.lex_state = 200, .external_lex_state = 2}, - [803] = {.lex_state = 19, .external_lex_state = 2}, - [804] = {.lex_state = 200, .external_lex_state = 2}, - [805] = {.lex_state = 200, .external_lex_state = 2}, - [806] = {.lex_state = 19, .external_lex_state = 2}, + [801] = {.lex_state = 249, .external_lex_state = 2}, + [802] = {.lex_state = 249, .external_lex_state = 2}, + [803] = {.lex_state = 249, .external_lex_state = 2}, + [804] = {.lex_state = 19, .external_lex_state = 2}, + [805] = {.lex_state = 19, .external_lex_state = 2}, + [806] = {.lex_state = 249, .external_lex_state = 2}, [807] = {.lex_state = 19, .external_lex_state = 2}, - [808] = {.lex_state = 19, .external_lex_state = 2}, - [809] = {.lex_state = 200, .external_lex_state = 2}, - [810] = {.lex_state = 200, .external_lex_state = 2}, - [811] = {.lex_state = 198, .external_lex_state = 2}, - [812] = {.lex_state = 198, .external_lex_state = 2}, - [813] = {.lex_state = 197, .external_lex_state = 5}, - [814] = {.lex_state = 200, .external_lex_state = 2}, - [815] = {.lex_state = 25, .external_lex_state = 4}, - [816] = {.lex_state = 197, .external_lex_state = 5}, - [817] = {.lex_state = 200, .external_lex_state = 2}, - [818] = {.lex_state = 197, .external_lex_state = 5}, - [819] = {.lex_state = 200, .external_lex_state = 2}, - [820] = {.lex_state = 200, .external_lex_state = 2}, - [821] = {.lex_state = 200, .external_lex_state = 2}, - [822] = {.lex_state = 200, .external_lex_state = 2}, - [823] = {.lex_state = 200, .external_lex_state = 2}, + [808] = {.lex_state = 249, .external_lex_state = 2}, + [809] = {.lex_state = 249, .external_lex_state = 2}, + [810] = {.lex_state = 249, .external_lex_state = 2}, + [811] = {.lex_state = 246, .external_lex_state = 5}, + [812] = {.lex_state = 246, .external_lex_state = 5}, + [813] = {.lex_state = 246, .external_lex_state = 5}, + [814] = {.lex_state = 19, .external_lex_state = 2}, + [815] = {.lex_state = 19, .external_lex_state = 2}, + [816] = {.lex_state = 19, .external_lex_state = 2}, + [817] = {.lex_state = 19, .external_lex_state = 2}, + [818] = {.lex_state = 247, .external_lex_state = 2}, + [819] = {.lex_state = 19, .external_lex_state = 2}, + [820] = {.lex_state = 19, .external_lex_state = 2}, + [821] = {.lex_state = 19, .external_lex_state = 2}, + [822] = {.lex_state = 19, .external_lex_state = 2}, + [823] = {.lex_state = 19, .external_lex_state = 2}, [824] = {.lex_state = 19, .external_lex_state = 2}, - [825] = {.lex_state = 200, .external_lex_state = 2}, + [825] = {.lex_state = 19, .external_lex_state = 2}, [826] = {.lex_state = 19, .external_lex_state = 2}, - [827] = {.lex_state = 200, .external_lex_state = 2}, - [828] = {.lex_state = 197, .external_lex_state = 5}, - [829] = {.lex_state = 200, .external_lex_state = 2}, - [830] = {.lex_state = 19, .external_lex_state = 2}, - [831] = {.lex_state = 200, .external_lex_state = 2}, - [832] = {.lex_state = 200, .external_lex_state = 2}, - [833] = {.lex_state = 200, .external_lex_state = 2}, - [834] = {.lex_state = 200, .external_lex_state = 2}, - [835] = {.lex_state = 200, .external_lex_state = 2}, - [836] = {.lex_state = 19, .external_lex_state = 2}, - [837] = {.lex_state = 19, .external_lex_state = 2}, - [838] = {.lex_state = 200, .external_lex_state = 2}, - [839] = {.lex_state = 200, .external_lex_state = 2}, - [840] = {.lex_state = 200, .external_lex_state = 2}, - [841] = {.lex_state = 19, .external_lex_state = 2}, - [842] = {.lex_state = 200, .external_lex_state = 2}, - [843] = {.lex_state = 200, .external_lex_state = 2}, - [844] = {.lex_state = 200, .external_lex_state = 2}, - [845] = {.lex_state = 200, .external_lex_state = 2}, - [846] = {.lex_state = 200, .external_lex_state = 2}, - [847] = {.lex_state = 197, .external_lex_state = 5}, - [848] = {.lex_state = 200, .external_lex_state = 2}, - [849] = {.lex_state = 200, .external_lex_state = 2}, - [850] = {.lex_state = 200, .external_lex_state = 2}, - [851] = {.lex_state = 200, .external_lex_state = 2}, - [852] = {.lex_state = 200, .external_lex_state = 2}, - [853] = {.lex_state = 200, .external_lex_state = 2}, - [854] = {.lex_state = 19, .external_lex_state = 2}, - [855] = {.lex_state = 200, .external_lex_state = 2}, - [856] = {.lex_state = 200, .external_lex_state = 2}, - [857] = {.lex_state = 200, .external_lex_state = 2}, - [858] = {.lex_state = 19, .external_lex_state = 2}, - [859] = {.lex_state = 200, .external_lex_state = 2}, - [860] = {.lex_state = 200, .external_lex_state = 2}, - [861] = {.lex_state = 200, .external_lex_state = 2}, - [862] = {.lex_state = 200, .external_lex_state = 2}, - [863] = {.lex_state = 200, .external_lex_state = 2}, + [827] = {.lex_state = 249, .external_lex_state = 2}, + [828] = {.lex_state = 249, .external_lex_state = 2}, + [829] = {.lex_state = 249, .external_lex_state = 2}, + [830] = {.lex_state = 249, .external_lex_state = 2}, + [831] = {.lex_state = 249, .external_lex_state = 2}, + [832] = {.lex_state = 19, .external_lex_state = 2}, + [833] = {.lex_state = 25, .external_lex_state = 4}, + [834] = {.lex_state = 249, .external_lex_state = 2}, + [835] = {.lex_state = 19, .external_lex_state = 2}, + [836] = {.lex_state = 249, .external_lex_state = 2}, + [837] = {.lex_state = 249, .external_lex_state = 2}, + [838] = {.lex_state = 249, .external_lex_state = 2}, + [839] = {.lex_state = 249, .external_lex_state = 2}, + [840] = {.lex_state = 249, .external_lex_state = 2}, + [841] = {.lex_state = 249, .external_lex_state = 2}, + [842] = {.lex_state = 249, .external_lex_state = 2}, + [843] = {.lex_state = 249, .external_lex_state = 2}, + [844] = {.lex_state = 19, .external_lex_state = 2}, + [845] = {.lex_state = 249, .external_lex_state = 2}, + [846] = {.lex_state = 246, .external_lex_state = 5}, + [847] = {.lex_state = 249, .external_lex_state = 2}, + [848] = {.lex_state = 249, .external_lex_state = 2}, + [849] = {.lex_state = 249, .external_lex_state = 2}, + [850] = {.lex_state = 19, .external_lex_state = 2}, + [851] = {.lex_state = 249, .external_lex_state = 2}, + [852] = {.lex_state = 249, .external_lex_state = 2}, + [853] = {.lex_state = 249, .external_lex_state = 2}, + [854] = {.lex_state = 249, .external_lex_state = 2}, + [855] = {.lex_state = 249, .external_lex_state = 2}, + [856] = {.lex_state = 249, .external_lex_state = 2}, + [857] = {.lex_state = 249, .external_lex_state = 2}, + [858] = {.lex_state = 249, .external_lex_state = 2}, + [859] = {.lex_state = 249, .external_lex_state = 2}, + [860] = {.lex_state = 249, .external_lex_state = 2}, + [861] = {.lex_state = 19, .external_lex_state = 2}, + [862] = {.lex_state = 249, .external_lex_state = 2}, + [863] = {.lex_state = 19, .external_lex_state = 2}, [864] = {.lex_state = 19, .external_lex_state = 2}, - [865] = {.lex_state = 200, .external_lex_state = 2}, - [866] = {.lex_state = 200, .external_lex_state = 2}, - [867] = {.lex_state = 200, .external_lex_state = 2}, - [868] = {.lex_state = 19, .external_lex_state = 2}, - [869] = {.lex_state = 200, .external_lex_state = 2}, - [870] = {.lex_state = 200, .external_lex_state = 2}, - [871] = {.lex_state = 200, .external_lex_state = 2}, - [872] = {.lex_state = 200, .external_lex_state = 2}, - [873] = {.lex_state = 197, .external_lex_state = 5}, - [874] = {.lex_state = 198, .external_lex_state = 2}, - [875] = {.lex_state = 25, .external_lex_state = 4}, - [876] = {.lex_state = 197, .external_lex_state = 5}, - [877] = {.lex_state = 200, .external_lex_state = 2}, - [878] = {.lex_state = 200, .external_lex_state = 2}, - [879] = {.lex_state = 200, .external_lex_state = 2}, - [880] = {.lex_state = 200, .external_lex_state = 2}, - [881] = {.lex_state = 200, .external_lex_state = 2}, - [882] = {.lex_state = 200, .external_lex_state = 2}, + [865] = {.lex_state = 19, .external_lex_state = 2}, + [866] = {.lex_state = 19, .external_lex_state = 2}, + [867] = {.lex_state = 19, .external_lex_state = 2}, + [868] = {.lex_state = 246, .external_lex_state = 5}, + [869] = {.lex_state = 249, .external_lex_state = 2}, + [870] = {.lex_state = 249, .external_lex_state = 2}, + [871] = {.lex_state = 19, .external_lex_state = 2}, + [872] = {.lex_state = 249, .external_lex_state = 2}, + [873] = {.lex_state = 249, .external_lex_state = 2}, + [874] = {.lex_state = 19, .external_lex_state = 2}, + [875] = {.lex_state = 19, .external_lex_state = 2}, + [876] = {.lex_state = 249, .external_lex_state = 2}, + [877] = {.lex_state = 249, .external_lex_state = 2}, + [878] = {.lex_state = 249, .external_lex_state = 2}, + [879] = {.lex_state = 19, .external_lex_state = 2}, + [880] = {.lex_state = 19, .external_lex_state = 2}, + [881] = {.lex_state = 19, .external_lex_state = 2}, + [882] = {.lex_state = 19, .external_lex_state = 2}, [883] = {.lex_state = 19, .external_lex_state = 2}, - [884] = {.lex_state = 200, .external_lex_state = 2}, - [885] = {.lex_state = 200, .external_lex_state = 2}, - [886] = {.lex_state = 200, .external_lex_state = 2}, - [887] = {.lex_state = 200, .external_lex_state = 2}, - [888] = {.lex_state = 197, .external_lex_state = 2}, - [889] = {.lex_state = 197, .external_lex_state = 2}, - [890] = {.lex_state = 197, .external_lex_state = 2}, - [891] = {.lex_state = 197, .external_lex_state = 2}, - [892] = {.lex_state = 197, .external_lex_state = 2}, - [893] = {.lex_state = 197, .external_lex_state = 2}, - [894] = {.lex_state = 197, .external_lex_state = 2}, - [895] = {.lex_state = 197, .external_lex_state = 2}, - [896] = {.lex_state = 197, .external_lex_state = 2}, - [897] = {.lex_state = 197, .external_lex_state = 2}, - [898] = {.lex_state = 197, .external_lex_state = 2}, - [899] = {.lex_state = 197, .external_lex_state = 2}, - [900] = {.lex_state = 197, .external_lex_state = 2}, - [901] = {.lex_state = 197, .external_lex_state = 2}, - [902] = {.lex_state = 197, .external_lex_state = 2}, - [903] = {.lex_state = 197, .external_lex_state = 2}, - [904] = {.lex_state = 197, .external_lex_state = 2}, - [905] = {.lex_state = 197, .external_lex_state = 2}, - [906] = {.lex_state = 197, .external_lex_state = 2}, - [907] = {.lex_state = 197, .external_lex_state = 2}, - [908] = {.lex_state = 197, .external_lex_state = 2}, - [909] = {.lex_state = 197, .external_lex_state = 2}, - [910] = {.lex_state = 197, .external_lex_state = 2}, - [911] = {.lex_state = 197, .external_lex_state = 2}, - [912] = {.lex_state = 197, .external_lex_state = 2}, - [913] = {.lex_state = 197, .external_lex_state = 2}, - [914] = {.lex_state = 197, .external_lex_state = 2}, - [915] = {.lex_state = 197, .external_lex_state = 2}, - [916] = {.lex_state = 197, .external_lex_state = 2}, - [917] = {.lex_state = 197, .external_lex_state = 2}, - [918] = {.lex_state = 197, .external_lex_state = 2}, - [919] = {.lex_state = 197, .external_lex_state = 2}, - [920] = {.lex_state = 197, .external_lex_state = 2}, - [921] = {.lex_state = 197, .external_lex_state = 2}, - [922] = {.lex_state = 197, .external_lex_state = 2}, - [923] = {.lex_state = 197, .external_lex_state = 2}, - [924] = {.lex_state = 197, .external_lex_state = 2}, - [925] = {.lex_state = 197, .external_lex_state = 2}, - [926] = {.lex_state = 197, .external_lex_state = 2}, - [927] = {.lex_state = 197, .external_lex_state = 2}, - [928] = {.lex_state = 197, .external_lex_state = 2}, - [929] = {.lex_state = 197, .external_lex_state = 2}, - [930] = {.lex_state = 197, .external_lex_state = 2}, - [931] = {.lex_state = 203, .external_lex_state = 4}, - [932] = {.lex_state = 197, .external_lex_state = 2}, - [933] = {.lex_state = 197, .external_lex_state = 2}, - [934] = {.lex_state = 197, .external_lex_state = 2}, - [935] = {.lex_state = 197, .external_lex_state = 2}, - [936] = {.lex_state = 197, .external_lex_state = 2}, - [937] = {.lex_state = 197, .external_lex_state = 2}, - [938] = {.lex_state = 197, .external_lex_state = 2}, - [939] = {.lex_state = 197, .external_lex_state = 2}, - [940] = {.lex_state = 197, .external_lex_state = 2}, - [941] = {.lex_state = 197, .external_lex_state = 2}, - [942] = {.lex_state = 197, .external_lex_state = 2}, - [943] = {.lex_state = 197, .external_lex_state = 2}, - [944] = {.lex_state = 197, .external_lex_state = 2}, - [945] = {.lex_state = 197, .external_lex_state = 2}, - [946] = {.lex_state = 197, .external_lex_state = 2}, - [947] = {.lex_state = 203, .external_lex_state = 4}, - [948] = {.lex_state = 197, .external_lex_state = 2}, - [949] = {.lex_state = 197, .external_lex_state = 2}, - [950] = {.lex_state = 197, .external_lex_state = 2}, - [951] = {.lex_state = 197, .external_lex_state = 2}, - [952] = {.lex_state = 197, .external_lex_state = 2}, - [953] = {.lex_state = 197, .external_lex_state = 2}, - [954] = {.lex_state = 197, .external_lex_state = 2}, - [955] = {.lex_state = 197, .external_lex_state = 2}, - [956] = {.lex_state = 197, .external_lex_state = 2}, - [957] = {.lex_state = 197, .external_lex_state = 2}, - [958] = {.lex_state = 197, .external_lex_state = 2}, - [959] = {.lex_state = 197, .external_lex_state = 2}, - [960] = {.lex_state = 197, .external_lex_state = 2}, - [961] = {.lex_state = 197, .external_lex_state = 2}, - [962] = {.lex_state = 197, .external_lex_state = 2}, - [963] = {.lex_state = 197, .external_lex_state = 2}, - [964] = {.lex_state = 197, .external_lex_state = 2}, - [965] = {.lex_state = 197, .external_lex_state = 2}, - [966] = {.lex_state = 197, .external_lex_state = 2}, - [967] = {.lex_state = 197, .external_lex_state = 2}, - [968] = {.lex_state = 197, .external_lex_state = 2}, - [969] = {.lex_state = 197, .external_lex_state = 2}, - [970] = {.lex_state = 197, .external_lex_state = 2}, - [971] = {.lex_state = 197, .external_lex_state = 2}, - [972] = {.lex_state = 197, .external_lex_state = 2}, - [973] = {.lex_state = 197, .external_lex_state = 2}, - [974] = {.lex_state = 197, .external_lex_state = 2}, - [975] = {.lex_state = 197, .external_lex_state = 2}, - [976] = {.lex_state = 197, .external_lex_state = 2}, - [977] = {.lex_state = 197, .external_lex_state = 2}, - [978] = {.lex_state = 197, .external_lex_state = 2}, - [979] = {.lex_state = 197, .external_lex_state = 2}, - [980] = {.lex_state = 197, .external_lex_state = 2}, - [981] = {.lex_state = 197, .external_lex_state = 2}, - [982] = {.lex_state = 197, .external_lex_state = 2}, - [983] = {.lex_state = 203, .external_lex_state = 4}, - [984] = {.lex_state = 197, .external_lex_state = 2}, - [985] = {.lex_state = 197, .external_lex_state = 2}, - [986] = {.lex_state = 197, .external_lex_state = 2}, - [987] = {.lex_state = 197, .external_lex_state = 2}, - [988] = {.lex_state = 197, .external_lex_state = 2}, - [989] = {.lex_state = 203, .external_lex_state = 3}, - [990] = {.lex_state = 27, .external_lex_state = 3}, - [991] = {.lex_state = 203, .external_lex_state = 3}, - [992] = {.lex_state = 203, .external_lex_state = 3}, - [993] = {.lex_state = 203, .external_lex_state = 3}, - [994] = {.lex_state = 203, .external_lex_state = 3}, - [995] = {.lex_state = 203, .external_lex_state = 3}, - [996] = {.lex_state = 203, .external_lex_state = 3}, - [997] = {.lex_state = 203, .external_lex_state = 3}, - [998] = {.lex_state = 203, .external_lex_state = 3}, - [999] = {.lex_state = 197, .external_lex_state = 2}, - [1000] = {.lex_state = 197, .external_lex_state = 2}, - [1001] = {.lex_state = 197, .external_lex_state = 2}, - [1002] = {.lex_state = 197, .external_lex_state = 2}, - [1003] = {.lex_state = 197, .external_lex_state = 2}, - [1004] = {.lex_state = 197, .external_lex_state = 2}, - [1005] = {.lex_state = 197, .external_lex_state = 2}, - [1006] = {.lex_state = 203, .external_lex_state = 3}, - [1007] = {.lex_state = 203, .external_lex_state = 3}, - [1008] = {.lex_state = 203, .external_lex_state = 3}, - [1009] = {.lex_state = 203, .external_lex_state = 4}, - [1010] = {.lex_state = 203, .external_lex_state = 4}, - [1011] = {.lex_state = 203, .external_lex_state = 4}, - [1012] = {.lex_state = 203, .external_lex_state = 4}, - [1013] = {.lex_state = 203, .external_lex_state = 4}, - [1014] = {.lex_state = 203, .external_lex_state = 4}, - [1015] = {.lex_state = 203, .external_lex_state = 4}, - [1016] = {.lex_state = 203, .external_lex_state = 4}, - [1017] = {.lex_state = 203, .external_lex_state = 4}, - [1018] = {.lex_state = 203, .external_lex_state = 3}, - [1019] = {.lex_state = 203, .external_lex_state = 4}, - [1020] = {.lex_state = 203, .external_lex_state = 3}, - [1021] = {.lex_state = 203, .external_lex_state = 4}, - [1022] = {.lex_state = 203, .external_lex_state = 4}, - [1023] = {.lex_state = 203, .external_lex_state = 4}, - [1024] = {.lex_state = 203, .external_lex_state = 4}, - [1025] = {.lex_state = 203, .external_lex_state = 3}, - [1026] = {.lex_state = 203, .external_lex_state = 4}, - [1027] = {.lex_state = 203, .external_lex_state = 4}, - [1028] = {.lex_state = 203, .external_lex_state = 3}, - [1029] = {.lex_state = 203, .external_lex_state = 3}, - [1030] = {.lex_state = 203, .external_lex_state = 4}, - [1031] = {.lex_state = 203, .external_lex_state = 3}, - [1032] = {.lex_state = 203, .external_lex_state = 4}, - [1033] = {.lex_state = 203, .external_lex_state = 4}, - [1034] = {.lex_state = 203, .external_lex_state = 4}, - [1035] = {.lex_state = 203, .external_lex_state = 3}, - [1036] = {.lex_state = 203, .external_lex_state = 4}, - [1037] = {.lex_state = 203, .external_lex_state = 4}, - [1038] = {.lex_state = 203, .external_lex_state = 4}, - [1039] = {.lex_state = 203, .external_lex_state = 4}, - [1040] = {.lex_state = 203, .external_lex_state = 4}, - [1041] = {.lex_state = 203, .external_lex_state = 4}, - [1042] = {.lex_state = 203, .external_lex_state = 4}, - [1043] = {.lex_state = 203, .external_lex_state = 4}, - [1044] = {.lex_state = 203, .external_lex_state = 3}, - [1045] = {.lex_state = 203, .external_lex_state = 3}, - [1046] = {.lex_state = 203, .external_lex_state = 3}, - [1047] = {.lex_state = 203, .external_lex_state = 4}, - [1048] = {.lex_state = 203, .external_lex_state = 4}, - [1049] = {.lex_state = 203, .external_lex_state = 3}, - [1050] = {.lex_state = 203, .external_lex_state = 4}, - [1051] = {.lex_state = 203, .external_lex_state = 3}, - [1052] = {.lex_state = 203, .external_lex_state = 3}, - [1053] = {.lex_state = 203, .external_lex_state = 3}, - [1054] = {.lex_state = 203, .external_lex_state = 3}, - [1055] = {.lex_state = 203, .external_lex_state = 3}, - [1056] = {.lex_state = 203, .external_lex_state = 3}, - [1057] = {.lex_state = 203, .external_lex_state = 3}, - [1058] = {.lex_state = 203, .external_lex_state = 3}, - [1059] = {.lex_state = 203, .external_lex_state = 3}, - [1060] = {.lex_state = 203, .external_lex_state = 3}, - [1061] = {.lex_state = 203, .external_lex_state = 3}, - [1062] = {.lex_state = 203, .external_lex_state = 3}, - [1063] = {.lex_state = 203, .external_lex_state = 3}, - [1064] = {.lex_state = 203, .external_lex_state = 3}, - [1065] = {.lex_state = 203, .external_lex_state = 3}, - [1066] = {.lex_state = 30, .external_lex_state = 3}, - [1067] = {.lex_state = 12, .external_lex_state = 2}, - [1068] = {.lex_state = 30, .external_lex_state = 3}, - [1069] = {.lex_state = 30, .external_lex_state = 3}, - [1070] = {.lex_state = 12, .external_lex_state = 2}, - [1071] = {.lex_state = 30, .external_lex_state = 4}, - [1072] = {.lex_state = 30, .external_lex_state = 3}, - [1073] = {.lex_state = 30, .external_lex_state = 3}, - [1074] = {.lex_state = 12, .external_lex_state = 2}, - [1075] = {.lex_state = 30, .external_lex_state = 3}, - [1076] = {.lex_state = 12, .external_lex_state = 2}, - [1077] = {.lex_state = 30, .external_lex_state = 3}, - [1078] = {.lex_state = 30, .external_lex_state = 3}, + [884] = {.lex_state = 19, .external_lex_state = 2}, + [885] = {.lex_state = 19, .external_lex_state = 2}, + [886] = {.lex_state = 19, .external_lex_state = 2}, + [887] = {.lex_state = 246, .external_lex_state = 5}, + [888] = {.lex_state = 249, .external_lex_state = 2}, + [889] = {.lex_state = 19, .external_lex_state = 2}, + [890] = {.lex_state = 249, .external_lex_state = 2}, + [891] = {.lex_state = 249, .external_lex_state = 2}, + [892] = {.lex_state = 19, .external_lex_state = 2}, + [893] = {.lex_state = 249, .external_lex_state = 2}, + [894] = {.lex_state = 249, .external_lex_state = 2}, + [895] = {.lex_state = 247, .external_lex_state = 2}, + [896] = {.lex_state = 19, .external_lex_state = 2}, + [897] = {.lex_state = 246, .external_lex_state = 2}, + [898] = {.lex_state = 246, .external_lex_state = 2}, + [899] = {.lex_state = 246, .external_lex_state = 2}, + [900] = {.lex_state = 246, .external_lex_state = 2}, + [901] = {.lex_state = 246, .external_lex_state = 2}, + [902] = {.lex_state = 246, .external_lex_state = 2}, + [903] = {.lex_state = 246, .external_lex_state = 2}, + [904] = {.lex_state = 246, .external_lex_state = 2}, + [905] = {.lex_state = 246, .external_lex_state = 2}, + [906] = {.lex_state = 246, .external_lex_state = 2}, + [907] = {.lex_state = 246, .external_lex_state = 2}, + [908] = {.lex_state = 246, .external_lex_state = 2}, + [909] = {.lex_state = 246, .external_lex_state = 2}, + [910] = {.lex_state = 246, .external_lex_state = 2}, + [911] = {.lex_state = 246, .external_lex_state = 2}, + [912] = {.lex_state = 246, .external_lex_state = 2}, + [913] = {.lex_state = 246, .external_lex_state = 2}, + [914] = {.lex_state = 246, .external_lex_state = 2}, + [915] = {.lex_state = 246, .external_lex_state = 2}, + [916] = {.lex_state = 246, .external_lex_state = 2}, + [917] = {.lex_state = 246, .external_lex_state = 2}, + [918] = {.lex_state = 246, .external_lex_state = 2}, + [919] = {.lex_state = 246, .external_lex_state = 2}, + [920] = {.lex_state = 246, .external_lex_state = 2}, + [921] = {.lex_state = 246, .external_lex_state = 2}, + [922] = {.lex_state = 252, .external_lex_state = 4}, + [923] = {.lex_state = 246, .external_lex_state = 2}, + [924] = {.lex_state = 246, .external_lex_state = 2}, + [925] = {.lex_state = 246, .external_lex_state = 2}, + [926] = {.lex_state = 246, .external_lex_state = 2}, + [927] = {.lex_state = 246, .external_lex_state = 2}, + [928] = {.lex_state = 246, .external_lex_state = 2}, + [929] = {.lex_state = 246, .external_lex_state = 2}, + [930] = {.lex_state = 246, .external_lex_state = 2}, + [931] = {.lex_state = 246, .external_lex_state = 2}, + [932] = {.lex_state = 246, .external_lex_state = 2}, + [933] = {.lex_state = 246, .external_lex_state = 2}, + [934] = {.lex_state = 246, .external_lex_state = 2}, + [935] = {.lex_state = 246, .external_lex_state = 2}, + [936] = {.lex_state = 246, .external_lex_state = 2}, + [937] = {.lex_state = 246, .external_lex_state = 2}, + [938] = {.lex_state = 252, .external_lex_state = 4}, + [939] = {.lex_state = 246, .external_lex_state = 2}, + [940] = {.lex_state = 246, .external_lex_state = 2}, + [941] = {.lex_state = 246, .external_lex_state = 2}, + [942] = {.lex_state = 246, .external_lex_state = 2}, + [943] = {.lex_state = 246, .external_lex_state = 2}, + [944] = {.lex_state = 246, .external_lex_state = 2}, + [945] = {.lex_state = 246, .external_lex_state = 2}, + [946] = {.lex_state = 246, .external_lex_state = 2}, + [947] = {.lex_state = 246, .external_lex_state = 2}, + [948] = {.lex_state = 246, .external_lex_state = 2}, + [949] = {.lex_state = 246, .external_lex_state = 2}, + [950] = {.lex_state = 246, .external_lex_state = 2}, + [951] = {.lex_state = 246, .external_lex_state = 2}, + [952] = {.lex_state = 246, .external_lex_state = 2}, + [953] = {.lex_state = 246, .external_lex_state = 2}, + [954] = {.lex_state = 246, .external_lex_state = 2}, + [955] = {.lex_state = 246, .external_lex_state = 2}, + [956] = {.lex_state = 246, .external_lex_state = 2}, + [957] = {.lex_state = 246, .external_lex_state = 2}, + [958] = {.lex_state = 246, .external_lex_state = 2}, + [959] = {.lex_state = 246, .external_lex_state = 2}, + [960] = {.lex_state = 246, .external_lex_state = 2}, + [961] = {.lex_state = 246, .external_lex_state = 2}, + [962] = {.lex_state = 246, .external_lex_state = 2}, + [963] = {.lex_state = 246, .external_lex_state = 2}, + [964] = {.lex_state = 246, .external_lex_state = 2}, + [965] = {.lex_state = 246, .external_lex_state = 2}, + [966] = {.lex_state = 246, .external_lex_state = 2}, + [967] = {.lex_state = 246, .external_lex_state = 2}, + [968] = {.lex_state = 246, .external_lex_state = 2}, + [969] = {.lex_state = 246, .external_lex_state = 2}, + [970] = {.lex_state = 246, .external_lex_state = 2}, + [971] = {.lex_state = 246, .external_lex_state = 2}, + [972] = {.lex_state = 246, .external_lex_state = 2}, + [973] = {.lex_state = 246, .external_lex_state = 2}, + [974] = {.lex_state = 246, .external_lex_state = 2}, + [975] = {.lex_state = 246, .external_lex_state = 2}, + [976] = {.lex_state = 246, .external_lex_state = 2}, + [977] = {.lex_state = 246, .external_lex_state = 2}, + [978] = {.lex_state = 246, .external_lex_state = 2}, + [979] = {.lex_state = 246, .external_lex_state = 2}, + [980] = {.lex_state = 246, .external_lex_state = 2}, + [981] = {.lex_state = 246, .external_lex_state = 2}, + [982] = {.lex_state = 246, .external_lex_state = 2}, + [983] = {.lex_state = 246, .external_lex_state = 2}, + [984] = {.lex_state = 246, .external_lex_state = 2}, + [985] = {.lex_state = 246, .external_lex_state = 2}, + [986] = {.lex_state = 246, .external_lex_state = 2}, + [987] = {.lex_state = 246, .external_lex_state = 2}, + [988] = {.lex_state = 246, .external_lex_state = 2}, + [989] = {.lex_state = 246, .external_lex_state = 2}, + [990] = {.lex_state = 246, .external_lex_state = 2}, + [991] = {.lex_state = 246, .external_lex_state = 2}, + [992] = {.lex_state = 252, .external_lex_state = 4}, + [993] = {.lex_state = 246, .external_lex_state = 2}, + [994] = {.lex_state = 246, .external_lex_state = 2}, + [995] = {.lex_state = 246, .external_lex_state = 2}, + [996] = {.lex_state = 246, .external_lex_state = 2}, + [997] = {.lex_state = 246, .external_lex_state = 2}, + [998] = {.lex_state = 246, .external_lex_state = 2}, + [999] = {.lex_state = 246, .external_lex_state = 2}, + [1000] = {.lex_state = 246, .external_lex_state = 2}, + [1001] = {.lex_state = 252, .external_lex_state = 3}, + [1002] = {.lex_state = 252, .external_lex_state = 3}, + [1003] = {.lex_state = 252, .external_lex_state = 3}, + [1004] = {.lex_state = 252, .external_lex_state = 3}, + [1005] = {.lex_state = 252, .external_lex_state = 3}, + [1006] = {.lex_state = 252, .external_lex_state = 3}, + [1007] = {.lex_state = 27, .external_lex_state = 3}, + [1008] = {.lex_state = 252, .external_lex_state = 3}, + [1009] = {.lex_state = 252, .external_lex_state = 3}, + [1010] = {.lex_state = 252, .external_lex_state = 3}, + [1011] = {.lex_state = 246, .external_lex_state = 2}, + [1012] = {.lex_state = 246, .external_lex_state = 2}, + [1013] = {.lex_state = 252, .external_lex_state = 3}, + [1014] = {.lex_state = 252, .external_lex_state = 3}, + [1015] = {.lex_state = 252, .external_lex_state = 3}, + [1016] = {.lex_state = 246, .external_lex_state = 2}, + [1017] = {.lex_state = 246, .external_lex_state = 2}, + [1018] = {.lex_state = 246, .external_lex_state = 2}, + [1019] = {.lex_state = 246, .external_lex_state = 2}, + [1020] = {.lex_state = 246, .external_lex_state = 2}, + [1021] = {.lex_state = 252, .external_lex_state = 4}, + [1022] = {.lex_state = 252, .external_lex_state = 3}, + [1023] = {.lex_state = 252, .external_lex_state = 3}, + [1024] = {.lex_state = 252, .external_lex_state = 4}, + [1025] = {.lex_state = 252, .external_lex_state = 4}, + [1026] = {.lex_state = 252, .external_lex_state = 4}, + [1027] = {.lex_state = 252, .external_lex_state = 4}, + [1028] = {.lex_state = 252, .external_lex_state = 3}, + [1029] = {.lex_state = 252, .external_lex_state = 4}, + [1030] = {.lex_state = 252, .external_lex_state = 4}, + [1031] = {.lex_state = 252, .external_lex_state = 4}, + [1032] = {.lex_state = 252, .external_lex_state = 4}, + [1033] = {.lex_state = 252, .external_lex_state = 3}, + [1034] = {.lex_state = 252, .external_lex_state = 4}, + [1035] = {.lex_state = 252, .external_lex_state = 4}, + [1036] = {.lex_state = 252, .external_lex_state = 4}, + [1037] = {.lex_state = 252, .external_lex_state = 3}, + [1038] = {.lex_state = 252, .external_lex_state = 4}, + [1039] = {.lex_state = 252, .external_lex_state = 4}, + [1040] = {.lex_state = 252, .external_lex_state = 4}, + [1041] = {.lex_state = 252, .external_lex_state = 4}, + [1042] = {.lex_state = 252, .external_lex_state = 4}, + [1043] = {.lex_state = 252, .external_lex_state = 4}, + [1044] = {.lex_state = 252, .external_lex_state = 4}, + [1045] = {.lex_state = 252, .external_lex_state = 4}, + [1046] = {.lex_state = 252, .external_lex_state = 4}, + [1047] = {.lex_state = 252, .external_lex_state = 4}, + [1048] = {.lex_state = 252, .external_lex_state = 4}, + [1049] = {.lex_state = 252, .external_lex_state = 4}, + [1050] = {.lex_state = 252, .external_lex_state = 3}, + [1051] = {.lex_state = 252, .external_lex_state = 4}, + [1052] = {.lex_state = 252, .external_lex_state = 3}, + [1053] = {.lex_state = 252, .external_lex_state = 4}, + [1054] = {.lex_state = 252, .external_lex_state = 4}, + [1055] = {.lex_state = 252, .external_lex_state = 4}, + [1056] = {.lex_state = 252, .external_lex_state = 4}, + [1057] = {.lex_state = 252, .external_lex_state = 3}, + [1058] = {.lex_state = 252, .external_lex_state = 4}, + [1059] = {.lex_state = 252, .external_lex_state = 3}, + [1060] = {.lex_state = 252, .external_lex_state = 3}, + [1061] = {.lex_state = 252, .external_lex_state = 3}, + [1062] = {.lex_state = 252, .external_lex_state = 3}, + [1063] = {.lex_state = 252, .external_lex_state = 4}, + [1064] = {.lex_state = 252, .external_lex_state = 3}, + [1065] = {.lex_state = 252, .external_lex_state = 3}, + [1066] = {.lex_state = 252, .external_lex_state = 3}, + [1067] = {.lex_state = 252, .external_lex_state = 3}, + [1068] = {.lex_state = 252, .external_lex_state = 3}, + [1069] = {.lex_state = 252, .external_lex_state = 3}, + [1070] = {.lex_state = 252, .external_lex_state = 3}, + [1071] = {.lex_state = 252, .external_lex_state = 3}, + [1072] = {.lex_state = 252, .external_lex_state = 3}, + [1073] = {.lex_state = 252, .external_lex_state = 3}, + [1074] = {.lex_state = 252, .external_lex_state = 3}, + [1075] = {.lex_state = 252, .external_lex_state = 3}, + [1076] = {.lex_state = 252, .external_lex_state = 3}, + [1077] = {.lex_state = 252, .external_lex_state = 3}, + [1078] = {.lex_state = 30, .external_lex_state = 4}, [1079] = {.lex_state = 30, .external_lex_state = 3}, - [1080] = {.lex_state = 12, .external_lex_state = 2}, + [1080] = {.lex_state = 30, .external_lex_state = 3}, [1081] = {.lex_state = 12, .external_lex_state = 2}, - [1082] = {.lex_state = 30, .external_lex_state = 4}, - [1083] = {.lex_state = 30, .external_lex_state = 4}, + [1082] = {.lex_state = 30, .external_lex_state = 3}, + [1083] = {.lex_state = 12, .external_lex_state = 2}, [1084] = {.lex_state = 30, .external_lex_state = 3}, [1085] = {.lex_state = 30, .external_lex_state = 3}, [1086] = {.lex_state = 30, .external_lex_state = 3}, - [1087] = {.lex_state = 30, .external_lex_state = 3}, + [1087] = {.lex_state = 12, .external_lex_state = 2}, [1088] = {.lex_state = 30, .external_lex_state = 3}, - [1089] = {.lex_state = 30, .external_lex_state = 3}, + [1089] = {.lex_state = 12, .external_lex_state = 2}, [1090] = {.lex_state = 30, .external_lex_state = 3}, - [1091] = {.lex_state = 30, .external_lex_state = 3}, - [1092] = {.lex_state = 30, .external_lex_state = 3}, - [1093] = {.lex_state = 30, .external_lex_state = 3}, + [1091] = {.lex_state = 12, .external_lex_state = 2}, + [1092] = {.lex_state = 30, .external_lex_state = 4}, + [1093] = {.lex_state = 12, .external_lex_state = 2}, [1094] = {.lex_state = 30, .external_lex_state = 3}, [1095] = {.lex_state = 30, .external_lex_state = 4}, - [1096] = {.lex_state = 30, .external_lex_state = 4}, + [1096] = {.lex_state = 30, .external_lex_state = 3}, [1097] = {.lex_state = 30, .external_lex_state = 3}, - [1098] = {.lex_state = 30, .external_lex_state = 4}, + [1098] = {.lex_state = 30, .external_lex_state = 3}, [1099] = {.lex_state = 30, .external_lex_state = 3}, [1100] = {.lex_state = 30, .external_lex_state = 3}, [1101] = {.lex_state = 30, .external_lex_state = 3}, - [1102] = {.lex_state = 30, .external_lex_state = 3}, + [1102] = {.lex_state = 30, .external_lex_state = 4}, [1103] = {.lex_state = 30, .external_lex_state = 3}, [1104] = {.lex_state = 30, .external_lex_state = 3}, - [1105] = {.lex_state = 30, .external_lex_state = 4}, + [1105] = {.lex_state = 30, .external_lex_state = 3}, [1106] = {.lex_state = 30, .external_lex_state = 3}, [1107] = {.lex_state = 30, .external_lex_state = 3}, [1108] = {.lex_state = 30, .external_lex_state = 3}, [1109] = {.lex_state = 30, .external_lex_state = 3}, - [1110] = {.lex_state = 30, .external_lex_state = 4}, - [1111] = {.lex_state = 30, .external_lex_state = 4}, - [1112] = {.lex_state = 29, .external_lex_state = 3}, - [1113] = {.lex_state = 30, .external_lex_state = 4}, + [1110] = {.lex_state = 30, .external_lex_state = 3}, + [1111] = {.lex_state = 30, .external_lex_state = 3}, + [1112] = {.lex_state = 30, .external_lex_state = 4}, + [1113] = {.lex_state = 30, .external_lex_state = 3}, [1114] = {.lex_state = 30, .external_lex_state = 3}, [1115] = {.lex_state = 30, .external_lex_state = 3}, [1116] = {.lex_state = 30, .external_lex_state = 3}, @@ -11394,13 +11890,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1120] = {.lex_state = 30, .external_lex_state = 3}, [1121] = {.lex_state = 30, .external_lex_state = 3}, [1122] = {.lex_state = 30, .external_lex_state = 3}, - [1123] = {.lex_state = 30, .external_lex_state = 3}, + [1123] = {.lex_state = 30, .external_lex_state = 4}, [1124] = {.lex_state = 30, .external_lex_state = 3}, - [1125] = {.lex_state = 30, .external_lex_state = 3}, - [1126] = {.lex_state = 30, .external_lex_state = 4}, + [1125] = {.lex_state = 30, .external_lex_state = 4}, + [1126] = {.lex_state = 30, .external_lex_state = 3}, [1127] = {.lex_state = 30, .external_lex_state = 3}, - [1128] = {.lex_state = 30, .external_lex_state = 3}, - [1129] = {.lex_state = 30, .external_lex_state = 3}, + [1128] = {.lex_state = 30, .external_lex_state = 4}, + [1129] = {.lex_state = 30, .external_lex_state = 4}, [1130] = {.lex_state = 30, .external_lex_state = 3}, [1131] = {.lex_state = 30, .external_lex_state = 3}, [1132] = {.lex_state = 30, .external_lex_state = 3}, @@ -11428,10 +11924,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1154] = {.lex_state = 30, .external_lex_state = 3}, [1155] = {.lex_state = 30, .external_lex_state = 3}, [1156] = {.lex_state = 30, .external_lex_state = 3}, - [1157] = {.lex_state = 30, .external_lex_state = 3}, + [1157] = {.lex_state = 30, .external_lex_state = 4}, [1158] = {.lex_state = 30, .external_lex_state = 3}, [1159] = {.lex_state = 30, .external_lex_state = 3}, - [1160] = {.lex_state = 30, .external_lex_state = 3}, + [1160] = {.lex_state = 30, .external_lex_state = 4}, [1161] = {.lex_state = 30, .external_lex_state = 3}, [1162] = {.lex_state = 30, .external_lex_state = 3}, [1163] = {.lex_state = 30, .external_lex_state = 3}, @@ -11440,7 +11936,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1166] = {.lex_state = 30, .external_lex_state = 3}, [1167] = {.lex_state = 30, .external_lex_state = 3}, [1168] = {.lex_state = 30, .external_lex_state = 3}, - [1169] = {.lex_state = 30, .external_lex_state = 4}, + [1169] = {.lex_state = 30, .external_lex_state = 3}, [1170] = {.lex_state = 30, .external_lex_state = 3}, [1171] = {.lex_state = 30, .external_lex_state = 3}, [1172] = {.lex_state = 30, .external_lex_state = 3}, @@ -11448,19 +11944,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1174] = {.lex_state = 30, .external_lex_state = 3}, [1175] = {.lex_state = 30, .external_lex_state = 3}, [1176] = {.lex_state = 30, .external_lex_state = 3}, - [1177] = {.lex_state = 30, .external_lex_state = 3}, - [1178] = {.lex_state = 30, .external_lex_state = 4}, - [1179] = {.lex_state = 30, .external_lex_state = 4}, - [1180] = {.lex_state = 30, .external_lex_state = 4}, - [1181] = {.lex_state = 30, .external_lex_state = 4}, - [1182] = {.lex_state = 30, .external_lex_state = 4}, - [1183] = {.lex_state = 30, .external_lex_state = 4}, - [1184] = {.lex_state = 30, .external_lex_state = 4}, - [1185] = {.lex_state = 30, .external_lex_state = 4}, - [1186] = {.lex_state = 30, .external_lex_state = 4}, - [1187] = {.lex_state = 30, .external_lex_state = 4}, + [1177] = {.lex_state = 29, .external_lex_state = 3}, + [1178] = {.lex_state = 30, .external_lex_state = 3}, + [1179] = {.lex_state = 30, .external_lex_state = 3}, + [1180] = {.lex_state = 30, .external_lex_state = 3}, + [1181] = {.lex_state = 30, .external_lex_state = 3}, + [1182] = {.lex_state = 30, .external_lex_state = 3}, + [1183] = {.lex_state = 30, .external_lex_state = 3}, + [1184] = {.lex_state = 30, .external_lex_state = 3}, + [1185] = {.lex_state = 30, .external_lex_state = 3}, + [1186] = {.lex_state = 30, .external_lex_state = 3}, + [1187] = {.lex_state = 30, .external_lex_state = 3}, [1188] = {.lex_state = 30, .external_lex_state = 4}, - [1189] = {.lex_state = 30, .external_lex_state = 4}, + [1189] = {.lex_state = 30, .external_lex_state = 3}, [1190] = {.lex_state = 30, .external_lex_state = 4}, [1191] = {.lex_state = 30, .external_lex_state = 4}, [1192] = {.lex_state = 30, .external_lex_state = 4}, @@ -11483,15 +11979,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1209] = {.lex_state = 30, .external_lex_state = 4}, [1210] = {.lex_state = 30, .external_lex_state = 4}, [1211] = {.lex_state = 30, .external_lex_state = 4}, - [1212] = {.lex_state = 30, .external_lex_state = 3}, + [1212] = {.lex_state = 30, .external_lex_state = 4}, [1213] = {.lex_state = 30, .external_lex_state = 4}, [1214] = {.lex_state = 30, .external_lex_state = 4}, [1215] = {.lex_state = 30, .external_lex_state = 4}, [1216] = {.lex_state = 30, .external_lex_state = 4}, - [1217] = {.lex_state = 30, .external_lex_state = 4}, + [1217] = {.lex_state = 30, .external_lex_state = 3}, [1218] = {.lex_state = 30, .external_lex_state = 4}, - [1219] = {.lex_state = 30, .external_lex_state = 3}, - [1220] = {.lex_state = 30, .external_lex_state = 4}, + [1219] = {.lex_state = 30, .external_lex_state = 4}, + [1220] = {.lex_state = 30, .external_lex_state = 3}, [1221] = {.lex_state = 30, .external_lex_state = 4}, [1222] = {.lex_state = 30, .external_lex_state = 4}, [1223] = {.lex_state = 30, .external_lex_state = 4}, @@ -11500,17 +11996,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1226] = {.lex_state = 30, .external_lex_state = 4}, [1227] = {.lex_state = 30, .external_lex_state = 4}, [1228] = {.lex_state = 30, .external_lex_state = 4}, - [1229] = {.lex_state = 30, .external_lex_state = 3}, + [1229] = {.lex_state = 30, .external_lex_state = 4}, [1230] = {.lex_state = 30, .external_lex_state = 4}, [1231] = {.lex_state = 30, .external_lex_state = 4}, - [1232] = {.lex_state = 30, .external_lex_state = 3}, + [1232] = {.lex_state = 30, .external_lex_state = 4}, [1233] = {.lex_state = 30, .external_lex_state = 4}, - [1234] = {.lex_state = 30, .external_lex_state = 3}, + [1234] = {.lex_state = 30, .external_lex_state = 4}, [1235] = {.lex_state = 30, .external_lex_state = 4}, [1236] = {.lex_state = 30, .external_lex_state = 4}, - [1237] = {.lex_state = 30, .external_lex_state = 3}, + [1237] = {.lex_state = 30, .external_lex_state = 4}, [1238] = {.lex_state = 30, .external_lex_state = 4}, - [1239] = {.lex_state = 30, .external_lex_state = 4}, + [1239] = {.lex_state = 30, .external_lex_state = 3}, [1240] = {.lex_state = 30, .external_lex_state = 4}, [1241] = {.lex_state = 30, .external_lex_state = 4}, [1242] = {.lex_state = 30, .external_lex_state = 4}, @@ -11518,7 +12014,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1244] = {.lex_state = 30, .external_lex_state = 4}, [1245] = {.lex_state = 30, .external_lex_state = 4}, [1246] = {.lex_state = 30, .external_lex_state = 4}, - [1247] = {.lex_state = 30, .external_lex_state = 4}, + [1247] = {.lex_state = 30, .external_lex_state = 3}, [1248] = {.lex_state = 30, .external_lex_state = 4}, [1249] = {.lex_state = 30, .external_lex_state = 4}, [1250] = {.lex_state = 30, .external_lex_state = 4}, @@ -11533,152 +12029,152 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1259] = {.lex_state = 30, .external_lex_state = 4}, [1260] = {.lex_state = 30, .external_lex_state = 4}, [1261] = {.lex_state = 30, .external_lex_state = 4}, - [1262] = {.lex_state = 30, .external_lex_state = 3}, + [1262] = {.lex_state = 30, .external_lex_state = 4}, [1263] = {.lex_state = 30, .external_lex_state = 4}, [1264] = {.lex_state = 30, .external_lex_state = 4}, - [1265] = {.lex_state = 30, .external_lex_state = 3}, - [1266] = {.lex_state = 30, .external_lex_state = 3}, + [1265] = {.lex_state = 30, .external_lex_state = 4}, + [1266] = {.lex_state = 30, .external_lex_state = 4}, [1267] = {.lex_state = 30, .external_lex_state = 4}, - [1268] = {.lex_state = 30, .external_lex_state = 4}, + [1268] = {.lex_state = 30, .external_lex_state = 3}, [1269] = {.lex_state = 30, .external_lex_state = 3}, [1270] = {.lex_state = 30, .external_lex_state = 4}, [1271] = {.lex_state = 30, .external_lex_state = 4}, - [1272] = {.lex_state = 30, .external_lex_state = 3}, + [1272] = {.lex_state = 30, .external_lex_state = 4}, [1273] = {.lex_state = 30, .external_lex_state = 4}, - [1274] = {.lex_state = 30, .external_lex_state = 3}, - [1275] = {.lex_state = 30, .external_lex_state = 4}, + [1274] = {.lex_state = 30, .external_lex_state = 4}, + [1275] = {.lex_state = 30, .external_lex_state = 3}, [1276] = {.lex_state = 30, .external_lex_state = 4}, [1277] = {.lex_state = 30, .external_lex_state = 4}, [1278] = {.lex_state = 30, .external_lex_state = 4}, - [1279] = {.lex_state = 30, .external_lex_state = 3}, - [1280] = {.lex_state = 30, .external_lex_state = 4}, - [1281] = {.lex_state = 30, .external_lex_state = 4}, - [1282] = {.lex_state = 30, .external_lex_state = 3}, + [1279] = {.lex_state = 30, .external_lex_state = 4}, + [1280] = {.lex_state = 30, .external_lex_state = 3}, + [1281] = {.lex_state = 30, .external_lex_state = 3}, + [1282] = {.lex_state = 30, .external_lex_state = 4}, [1283] = {.lex_state = 30, .external_lex_state = 4}, - [1284] = {.lex_state = 30, .external_lex_state = 3}, - [1285] = {.lex_state = 30, .external_lex_state = 3}, + [1284] = {.lex_state = 30, .external_lex_state = 4}, + [1285] = {.lex_state = 30, .external_lex_state = 4}, [1286] = {.lex_state = 30, .external_lex_state = 4}, - [1287] = {.lex_state = 30, .external_lex_state = 3}, - [1288] = {.lex_state = 30, .external_lex_state = 3}, + [1287] = {.lex_state = 30, .external_lex_state = 4}, + [1288] = {.lex_state = 30, .external_lex_state = 4}, [1289] = {.lex_state = 30, .external_lex_state = 4}, - [1290] = {.lex_state = 30, .external_lex_state = 4}, - [1291] = {.lex_state = 30, .external_lex_state = 4}, - [1292] = {.lex_state = 30, .external_lex_state = 4}, - [1293] = {.lex_state = 30, .external_lex_state = 4}, - [1294] = {.lex_state = 30, .external_lex_state = 4}, - [1295] = {.lex_state = 30, .external_lex_state = 3}, + [1290] = {.lex_state = 30, .external_lex_state = 3}, + [1291] = {.lex_state = 30, .external_lex_state = 3}, + [1292] = {.lex_state = 30, .external_lex_state = 3}, + [1293] = {.lex_state = 30, .external_lex_state = 3}, + [1294] = {.lex_state = 30, .external_lex_state = 3}, + [1295] = {.lex_state = 30, .external_lex_state = 4}, [1296] = {.lex_state = 30, .external_lex_state = 4}, [1297] = {.lex_state = 30, .external_lex_state = 4}, [1298] = {.lex_state = 30, .external_lex_state = 4}, [1299] = {.lex_state = 30, .external_lex_state = 3}, [1300] = {.lex_state = 30, .external_lex_state = 3}, [1301] = {.lex_state = 30, .external_lex_state = 3}, - [1302] = {.lex_state = 30, .external_lex_state = 4}, - [1303] = {.lex_state = 30, .external_lex_state = 4}, - [1304] = {.lex_state = 30, .external_lex_state = 3}, - [1305] = {.lex_state = 30, .external_lex_state = 4}, - [1306] = {.lex_state = 30, .external_lex_state = 4}, + [1302] = {.lex_state = 30, .external_lex_state = 3}, + [1303] = {.lex_state = 30, .external_lex_state = 3}, + [1304] = {.lex_state = 30, .external_lex_state = 4}, + [1305] = {.lex_state = 30, .external_lex_state = 3}, + [1306] = {.lex_state = 30, .external_lex_state = 3}, [1307] = {.lex_state = 30, .external_lex_state = 3}, [1308] = {.lex_state = 30, .external_lex_state = 4}, [1309] = {.lex_state = 30, .external_lex_state = 4}, - [1310] = {.lex_state = 30, .external_lex_state = 4}, - [1311] = {.lex_state = 30, .external_lex_state = 3}, + [1310] = {.lex_state = 30, .external_lex_state = 3}, + [1311] = {.lex_state = 30, .external_lex_state = 4}, [1312] = {.lex_state = 30, .external_lex_state = 4}, - [1313] = {.lex_state = 30, .external_lex_state = 4}, - [1314] = {.lex_state = 29, .external_lex_state = 4}, + [1313] = {.lex_state = 30, .external_lex_state = 3}, + [1314] = {.lex_state = 30, .external_lex_state = 3}, [1315] = {.lex_state = 30, .external_lex_state = 3}, - [1316] = {.lex_state = 30, .external_lex_state = 3}, - [1317] = {.lex_state = 30, .external_lex_state = 3}, - [1318] = {.lex_state = 30, .external_lex_state = 3}, + [1316] = {.lex_state = 30, .external_lex_state = 4}, + [1317] = {.lex_state = 30, .external_lex_state = 4}, + [1318] = {.lex_state = 30, .external_lex_state = 4}, [1319] = {.lex_state = 30, .external_lex_state = 4}, [1320] = {.lex_state = 30, .external_lex_state = 3}, - [1321] = {.lex_state = 30, .external_lex_state = 3}, + [1321] = {.lex_state = 30, .external_lex_state = 4}, [1322] = {.lex_state = 30, .external_lex_state = 4}, - [1323] = {.lex_state = 30, .external_lex_state = 4}, + [1323] = {.lex_state = 30, .external_lex_state = 3}, [1324] = {.lex_state = 30, .external_lex_state = 3}, - [1325] = {.lex_state = 30, .external_lex_state = 4}, + [1325] = {.lex_state = 30, .external_lex_state = 3}, [1326] = {.lex_state = 30, .external_lex_state = 3}, [1327] = {.lex_state = 30, .external_lex_state = 4}, [1328] = {.lex_state = 30, .external_lex_state = 4}, - [1329] = {.lex_state = 30, .external_lex_state = 3}, - [1330] = {.lex_state = 30, .external_lex_state = 3}, + [1329] = {.lex_state = 30, .external_lex_state = 4}, + [1330] = {.lex_state = 30, .external_lex_state = 4}, [1331] = {.lex_state = 30, .external_lex_state = 4}, - [1332] = {.lex_state = 30, .external_lex_state = 3}, - [1333] = {.lex_state = 30, .external_lex_state = 3}, + [1332] = {.lex_state = 30, .external_lex_state = 4}, + [1333] = {.lex_state = 30, .external_lex_state = 4}, [1334] = {.lex_state = 30, .external_lex_state = 4}, - [1335] = {.lex_state = 32, .external_lex_state = 4}, + [1335] = {.lex_state = 30, .external_lex_state = 4}, [1336] = {.lex_state = 30, .external_lex_state = 3}, [1337] = {.lex_state = 30, .external_lex_state = 4}, [1338] = {.lex_state = 30, .external_lex_state = 4}, [1339] = {.lex_state = 30, .external_lex_state = 3}, [1340] = {.lex_state = 30, .external_lex_state = 3}, [1341] = {.lex_state = 30, .external_lex_state = 4}, - [1342] = {.lex_state = 30, .external_lex_state = 4}, + [1342] = {.lex_state = 30, .external_lex_state = 3}, [1343] = {.lex_state = 30, .external_lex_state = 4}, - [1344] = {.lex_state = 30, .external_lex_state = 4}, + [1344] = {.lex_state = 30, .external_lex_state = 3}, [1345] = {.lex_state = 30, .external_lex_state = 4}, - [1346] = {.lex_state = 30, .external_lex_state = 4}, - [1347] = {.lex_state = 30, .external_lex_state = 4}, + [1346] = {.lex_state = 30, .external_lex_state = 3}, + [1347] = {.lex_state = 30, .external_lex_state = 3}, [1348] = {.lex_state = 30, .external_lex_state = 4}, [1349] = {.lex_state = 30, .external_lex_state = 3}, [1350] = {.lex_state = 30, .external_lex_state = 4}, [1351] = {.lex_state = 30, .external_lex_state = 4}, - [1352] = {.lex_state = 30, .external_lex_state = 4}, - [1353] = {.lex_state = 30, .external_lex_state = 3}, + [1352] = {.lex_state = 30, .external_lex_state = 3}, + [1353] = {.lex_state = 30, .external_lex_state = 4}, [1354] = {.lex_state = 30, .external_lex_state = 4}, - [1355] = {.lex_state = 30, .external_lex_state = 3}, + [1355] = {.lex_state = 30, .external_lex_state = 4}, [1356] = {.lex_state = 30, .external_lex_state = 4}, - [1357] = {.lex_state = 30, .external_lex_state = 4}, + [1357] = {.lex_state = 30, .external_lex_state = 3}, [1358] = {.lex_state = 30, .external_lex_state = 4}, [1359] = {.lex_state = 30, .external_lex_state = 4}, - [1360] = {.lex_state = 30, .external_lex_state = 4}, - [1361] = {.lex_state = 30, .external_lex_state = 4}, - [1362] = {.lex_state = 30, .external_lex_state = 4}, - [1363] = {.lex_state = 30, .external_lex_state = 4}, - [1364] = {.lex_state = 30, .external_lex_state = 4}, - [1365] = {.lex_state = 30, .external_lex_state = 3}, + [1360] = {.lex_state = 30, .external_lex_state = 3}, + [1361] = {.lex_state = 30, .external_lex_state = 3}, + [1362] = {.lex_state = 30, .external_lex_state = 3}, + [1363] = {.lex_state = 29, .external_lex_state = 4}, + [1364] = {.lex_state = 32, .external_lex_state = 4}, + [1365] = {.lex_state = 30, .external_lex_state = 4}, [1366] = {.lex_state = 30, .external_lex_state = 4}, [1367] = {.lex_state = 30, .external_lex_state = 4}, [1368] = {.lex_state = 30, .external_lex_state = 4}, [1369] = {.lex_state = 30, .external_lex_state = 4}, - [1370] = {.lex_state = 30, .external_lex_state = 3}, + [1370] = {.lex_state = 30, .external_lex_state = 4}, [1371] = {.lex_state = 30, .external_lex_state = 4}, - [1372] = {.lex_state = 30, .external_lex_state = 3}, - [1373] = {.lex_state = 30, .external_lex_state = 3}, - [1374] = {.lex_state = 30, .external_lex_state = 3}, - [1375] = {.lex_state = 30, .external_lex_state = 3}, - [1376] = {.lex_state = 30, .external_lex_state = 3}, - [1377] = {.lex_state = 30, .external_lex_state = 3}, - [1378] = {.lex_state = 30, .external_lex_state = 3}, - [1379] = {.lex_state = 30, .external_lex_state = 4}, + [1372] = {.lex_state = 30, .external_lex_state = 4}, + [1373] = {.lex_state = 30, .external_lex_state = 4}, + [1374] = {.lex_state = 30, .external_lex_state = 4}, + [1375] = {.lex_state = 30, .external_lex_state = 4}, + [1376] = {.lex_state = 30, .external_lex_state = 4}, + [1377] = {.lex_state = 30, .external_lex_state = 4}, + [1378] = {.lex_state = 30, .external_lex_state = 4}, + [1379] = {.lex_state = 30, .external_lex_state = 3}, [1380] = {.lex_state = 30, .external_lex_state = 3}, [1381] = {.lex_state = 30, .external_lex_state = 4}, [1382] = {.lex_state = 30, .external_lex_state = 4}, - [1383] = {.lex_state = 30, .external_lex_state = 3}, + [1383] = {.lex_state = 30, .external_lex_state = 4}, [1384] = {.lex_state = 30, .external_lex_state = 4}, - [1385] = {.lex_state = 30, .external_lex_state = 3}, - [1386] = {.lex_state = 30, .external_lex_state = 3}, - [1387] = {.lex_state = 30, .external_lex_state = 3}, - [1388] = {.lex_state = 30, .external_lex_state = 3}, + [1385] = {.lex_state = 30, .external_lex_state = 4}, + [1386] = {.lex_state = 30, .external_lex_state = 4}, + [1387] = {.lex_state = 30, .external_lex_state = 4}, + [1388] = {.lex_state = 30, .external_lex_state = 4}, [1389] = {.lex_state = 30, .external_lex_state = 4}, [1390] = {.lex_state = 30, .external_lex_state = 4}, [1391] = {.lex_state = 30, .external_lex_state = 3}, - [1392] = {.lex_state = 30, .external_lex_state = 3}, + [1392] = {.lex_state = 30, .external_lex_state = 4}, [1393] = {.lex_state = 30, .external_lex_state = 3}, [1394] = {.lex_state = 30, .external_lex_state = 3}, [1395] = {.lex_state = 30, .external_lex_state = 3}, [1396] = {.lex_state = 30, .external_lex_state = 3}, [1397] = {.lex_state = 30, .external_lex_state = 3}, - [1398] = {.lex_state = 30, .external_lex_state = 4}, - [1399] = {.lex_state = 30, .external_lex_state = 3}, + [1398] = {.lex_state = 30, .external_lex_state = 3}, + [1399] = {.lex_state = 30, .external_lex_state = 4}, [1400] = {.lex_state = 30, .external_lex_state = 3}, [1401] = {.lex_state = 30, .external_lex_state = 4}, - [1402] = {.lex_state = 30, .external_lex_state = 4}, + [1402] = {.lex_state = 30, .external_lex_state = 3}, [1403] = {.lex_state = 30, .external_lex_state = 3}, - [1404] = {.lex_state = 30, .external_lex_state = 4}, - [1405] = {.lex_state = 30, .external_lex_state = 4}, + [1404] = {.lex_state = 30, .external_lex_state = 3}, + [1405] = {.lex_state = 30, .external_lex_state = 3}, [1406] = {.lex_state = 30, .external_lex_state = 3}, - [1407] = {.lex_state = 30, .external_lex_state = 3}, + [1407] = {.lex_state = 30, .external_lex_state = 4}, [1408] = {.lex_state = 30, .external_lex_state = 3}, [1409] = {.lex_state = 30, .external_lex_state = 4}, [1410] = {.lex_state = 30, .external_lex_state = 3}, @@ -11689,7 +12185,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1415] = {.lex_state = 30, .external_lex_state = 3}, [1416] = {.lex_state = 30, .external_lex_state = 3}, [1417] = {.lex_state = 30, .external_lex_state = 3}, - [1418] = {.lex_state = 30, .external_lex_state = 3}, + [1418] = {.lex_state = 30, .external_lex_state = 4}, [1419] = {.lex_state = 30, .external_lex_state = 3}, [1420] = {.lex_state = 30, .external_lex_state = 3}, [1421] = {.lex_state = 30, .external_lex_state = 3}, @@ -11723,30 +12219,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1449] = {.lex_state = 30, .external_lex_state = 3}, [1450] = {.lex_state = 30, .external_lex_state = 3}, [1451] = {.lex_state = 30, .external_lex_state = 3}, - [1452] = {.lex_state = 37, .external_lex_state = 2}, - [1453] = {.lex_state = 37, .external_lex_state = 2}, - [1454] = {.lex_state = 37, .external_lex_state = 2}, + [1452] = {.lex_state = 30, .external_lex_state = 3}, + [1453] = {.lex_state = 30, .external_lex_state = 3}, + [1454] = {.lex_state = 30, .external_lex_state = 3}, [1455] = {.lex_state = 30, .external_lex_state = 3}, [1456] = {.lex_state = 30, .external_lex_state = 3}, [1457] = {.lex_state = 30, .external_lex_state = 3}, - [1458] = {.lex_state = 37, .external_lex_state = 2}, - [1459] = {.lex_state = 37, .external_lex_state = 2}, - [1460] = {.lex_state = 37, .external_lex_state = 2}, + [1458] = {.lex_state = 30, .external_lex_state = 3}, + [1459] = {.lex_state = 30, .external_lex_state = 3}, + [1460] = {.lex_state = 30, .external_lex_state = 3}, [1461] = {.lex_state = 30, .external_lex_state = 3}, - [1462] = {.lex_state = 30, .external_lex_state = 3}, + [1462] = {.lex_state = 37, .external_lex_state = 2}, [1463] = {.lex_state = 32, .external_lex_state = 3}, - [1464] = {.lex_state = 37, .external_lex_state = 2}, - [1465] = {.lex_state = 37, .external_lex_state = 2}, - [1466] = {.lex_state = 37, .external_lex_state = 2}, - [1467] = {.lex_state = 37, .external_lex_state = 2}, + [1464] = {.lex_state = 30, .external_lex_state = 3}, + [1465] = {.lex_state = 30, .external_lex_state = 3}, + [1466] = {.lex_state = 30, .external_lex_state = 3}, + [1467] = {.lex_state = 30, .external_lex_state = 3}, [1468] = {.lex_state = 37, .external_lex_state = 2}, [1469] = {.lex_state = 37, .external_lex_state = 2}, - [1470] = {.lex_state = 37, .external_lex_state = 2}, + [1470] = {.lex_state = 30, .external_lex_state = 3}, [1471] = {.lex_state = 37, .external_lex_state = 2}, [1472] = {.lex_state = 37, .external_lex_state = 2}, - [1473] = {.lex_state = 37, .external_lex_state = 2}, + [1473] = {.lex_state = 30, .external_lex_state = 3}, [1474] = {.lex_state = 37, .external_lex_state = 2}, - [1475] = {.lex_state = 37, .external_lex_state = 2}, + [1475] = {.lex_state = 30, .external_lex_state = 3}, [1476] = {.lex_state = 37, .external_lex_state = 2}, [1477] = {.lex_state = 37, .external_lex_state = 2}, [1478] = {.lex_state = 37, .external_lex_state = 2}, @@ -11760,21 +12256,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1486] = {.lex_state = 37, .external_lex_state = 2}, [1487] = {.lex_state = 37, .external_lex_state = 2}, [1488] = {.lex_state = 37, .external_lex_state = 2}, - [1489] = {.lex_state = 33, .external_lex_state = 2}, + [1489] = {.lex_state = 37, .external_lex_state = 2}, [1490] = {.lex_state = 37, .external_lex_state = 2}, - [1491] = {.lex_state = 33, .external_lex_state = 2}, - [1492] = {.lex_state = 33, .external_lex_state = 2}, - [1493] = {.lex_state = 33, .external_lex_state = 2}, - [1494] = {.lex_state = 33, .external_lex_state = 2}, - [1495] = {.lex_state = 33, .external_lex_state = 2}, - [1496] = {.lex_state = 33, .external_lex_state = 2}, - [1497] = {.lex_state = 33, .external_lex_state = 2}, - [1498] = {.lex_state = 33, .external_lex_state = 2}, - [1499] = {.lex_state = 33, .external_lex_state = 2}, - [1500] = {.lex_state = 33, .external_lex_state = 2}, - [1501] = {.lex_state = 33, .external_lex_state = 2}, + [1491] = {.lex_state = 37, .external_lex_state = 2}, + [1492] = {.lex_state = 37, .external_lex_state = 2}, + [1493] = {.lex_state = 37, .external_lex_state = 2}, + [1494] = {.lex_state = 37, .external_lex_state = 2}, + [1495] = {.lex_state = 37, .external_lex_state = 2}, + [1496] = {.lex_state = 37, .external_lex_state = 2}, + [1497] = {.lex_state = 37, .external_lex_state = 2}, + [1498] = {.lex_state = 37, .external_lex_state = 2}, + [1499] = {.lex_state = 37, .external_lex_state = 2}, + [1500] = {.lex_state = 37, .external_lex_state = 2}, + [1501] = {.lex_state = 37, .external_lex_state = 2}, [1502] = {.lex_state = 33, .external_lex_state = 2}, - [1503] = {.lex_state = 33, .external_lex_state = 2}, + [1503] = {.lex_state = 37, .external_lex_state = 2}, [1504] = {.lex_state = 33, .external_lex_state = 2}, [1505] = {.lex_state = 33, .external_lex_state = 2}, [1506] = {.lex_state = 33, .external_lex_state = 2}, @@ -11784,47 +12280,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1510] = {.lex_state = 33, .external_lex_state = 2}, [1511] = {.lex_state = 33, .external_lex_state = 2}, [1512] = {.lex_state = 33, .external_lex_state = 2}, - [1513] = {.lex_state = 33, .external_lex_state = 5}, + [1513] = {.lex_state = 33, .external_lex_state = 2}, [1514] = {.lex_state = 33, .external_lex_state = 2}, [1515] = {.lex_state = 33, .external_lex_state = 2}, [1516] = {.lex_state = 33, .external_lex_state = 2}, - [1517] = {.lex_state = 35, .external_lex_state = 2}, - [1518] = {.lex_state = 33, .external_lex_state = 5}, - [1519] = {.lex_state = 33, .external_lex_state = 5}, - [1520] = {.lex_state = 37, .external_lex_state = 2}, - [1521] = {.lex_state = 33, .external_lex_state = 5}, + [1517] = {.lex_state = 33, .external_lex_state = 2}, + [1518] = {.lex_state = 33, .external_lex_state = 2}, + [1519] = {.lex_state = 33, .external_lex_state = 2}, + [1520] = {.lex_state = 33, .external_lex_state = 2}, + [1521] = {.lex_state = 33, .external_lex_state = 2}, [1522] = {.lex_state = 33, .external_lex_state = 2}, - [1523] = {.lex_state = 33, .external_lex_state = 5}, - [1524] = {.lex_state = 33, .external_lex_state = 2}, + [1523] = {.lex_state = 33, .external_lex_state = 2}, + [1524] = {.lex_state = 33, .external_lex_state = 5}, [1525] = {.lex_state = 33, .external_lex_state = 2}, - [1526] = {.lex_state = 37, .external_lex_state = 2}, - [1527] = {.lex_state = 33, .external_lex_state = 5}, - [1528] = {.lex_state = 33, .external_lex_state = 5}, - [1529] = {.lex_state = 33, .external_lex_state = 5}, - [1530] = {.lex_state = 37, .external_lex_state = 5}, - [1531] = {.lex_state = 33, .external_lex_state = 5}, - [1532] = {.lex_state = 33, .external_lex_state = 5}, - [1533] = {.lex_state = 33, .external_lex_state = 5}, - [1534] = {.lex_state = 37, .external_lex_state = 5}, - [1535] = {.lex_state = 35, .external_lex_state = 2}, - [1536] = {.lex_state = 33, .external_lex_state = 5}, + [1526] = {.lex_state = 33, .external_lex_state = 2}, + [1527] = {.lex_state = 33, .external_lex_state = 2}, + [1528] = {.lex_state = 33, .external_lex_state = 2}, + [1529] = {.lex_state = 33, .external_lex_state = 2}, + [1530] = {.lex_state = 33, .external_lex_state = 2}, + [1531] = {.lex_state = 33, .external_lex_state = 2}, + [1532] = {.lex_state = 35, .external_lex_state = 2}, + [1533] = {.lex_state = 33, .external_lex_state = 2}, + [1534] = {.lex_state = 37, .external_lex_state = 2}, + [1535] = {.lex_state = 33, .external_lex_state = 2}, + [1536] = {.lex_state = 33, .external_lex_state = 2}, [1537] = {.lex_state = 33, .external_lex_state = 2}, [1538] = {.lex_state = 37, .external_lex_state = 2}, - [1539] = {.lex_state = 37, .external_lex_state = 2}, - [1540] = {.lex_state = 37, .external_lex_state = 2}, - [1541] = {.lex_state = 37, .external_lex_state = 2}, - [1542] = {.lex_state = 37, .external_lex_state = 2}, - [1543] = {.lex_state = 37, .external_lex_state = 2}, - [1544] = {.lex_state = 37, .external_lex_state = 2}, - [1545] = {.lex_state = 37, .external_lex_state = 2}, - [1546] = {.lex_state = 37, .external_lex_state = 2}, - [1547] = {.lex_state = 37, .external_lex_state = 2}, - [1548] = {.lex_state = 37, .external_lex_state = 2}, - [1549] = {.lex_state = 37, .external_lex_state = 2}, - [1550] = {.lex_state = 37, .external_lex_state = 2}, - [1551] = {.lex_state = 37, .external_lex_state = 2}, - [1552] = {.lex_state = 37, .external_lex_state = 2}, - [1553] = {.lex_state = 37, .external_lex_state = 2}, + [1539] = {.lex_state = 33, .external_lex_state = 5}, + [1540] = {.lex_state = 33, .external_lex_state = 5}, + [1541] = {.lex_state = 33, .external_lex_state = 5}, + [1542] = {.lex_state = 33, .external_lex_state = 5}, + [1543] = {.lex_state = 33, .external_lex_state = 5}, + [1544] = {.lex_state = 33, .external_lex_state = 5}, + [1545] = {.lex_state = 33, .external_lex_state = 5}, + [1546] = {.lex_state = 37, .external_lex_state = 5}, + [1547] = {.lex_state = 35, .external_lex_state = 2}, + [1548] = {.lex_state = 37, .external_lex_state = 5}, + [1549] = {.lex_state = 33, .external_lex_state = 5}, + [1550] = {.lex_state = 33, .external_lex_state = 2}, + [1551] = {.lex_state = 33, .external_lex_state = 5}, + [1552] = {.lex_state = 33, .external_lex_state = 5}, + [1553] = {.lex_state = 33, .external_lex_state = 5}, [1554] = {.lex_state = 37, .external_lex_state = 2}, [1555] = {.lex_state = 37, .external_lex_state = 2}, [1556] = {.lex_state = 37, .external_lex_state = 2}, @@ -11833,13 +12329,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1559] = {.lex_state = 37, .external_lex_state = 2}, [1560] = {.lex_state = 37, .external_lex_state = 2}, [1561] = {.lex_state = 37, .external_lex_state = 2}, - [1562] = {.lex_state = 35, .external_lex_state = 2}, + [1562] = {.lex_state = 37, .external_lex_state = 2}, [1563] = {.lex_state = 37, .external_lex_state = 2}, [1564] = {.lex_state = 37, .external_lex_state = 2}, [1565] = {.lex_state = 37, .external_lex_state = 2}, [1566] = {.lex_state = 37, .external_lex_state = 2}, - [1567] = {.lex_state = 35, .external_lex_state = 2}, - [1568] = {.lex_state = 36, .external_lex_state = 2}, + [1567] = {.lex_state = 37, .external_lex_state = 2}, + [1568] = {.lex_state = 37, .external_lex_state = 2}, [1569] = {.lex_state = 37, .external_lex_state = 2}, [1570] = {.lex_state = 37, .external_lex_state = 2}, [1571] = {.lex_state = 37, .external_lex_state = 2}, @@ -11851,29 +12347,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1577] = {.lex_state = 37, .external_lex_state = 2}, [1578] = {.lex_state = 37, .external_lex_state = 2}, [1579] = {.lex_state = 37, .external_lex_state = 2}, - [1580] = {.lex_state = 33, .external_lex_state = 2}, - [1581] = {.lex_state = 33, .external_lex_state = 2}, - [1582] = {.lex_state = 36, .external_lex_state = 2}, - [1583] = {.lex_state = 33, .external_lex_state = 2}, - [1584] = {.lex_state = 33, .external_lex_state = 2}, - [1585] = {.lex_state = 33, .external_lex_state = 2}, + [1580] = {.lex_state = 37, .external_lex_state = 2}, + [1581] = {.lex_state = 37, .external_lex_state = 2}, + [1582] = {.lex_state = 37, .external_lex_state = 2}, + [1583] = {.lex_state = 36, .external_lex_state = 2}, + [1584] = {.lex_state = 37, .external_lex_state = 2}, + [1585] = {.lex_state = 37, .external_lex_state = 2}, [1586] = {.lex_state = 37, .external_lex_state = 2}, - [1587] = {.lex_state = 33, .external_lex_state = 2}, - [1588] = {.lex_state = 33, .external_lex_state = 2}, - [1589] = {.lex_state = 203, .external_lex_state = 2}, - [1590] = {.lex_state = 33, .external_lex_state = 2}, - [1591] = {.lex_state = 35, .external_lex_state = 2}, - [1592] = {.lex_state = 33, .external_lex_state = 2}, - [1593] = {.lex_state = 203, .external_lex_state = 2}, - [1594] = {.lex_state = 33, .external_lex_state = 2}, + [1587] = {.lex_state = 37, .external_lex_state = 2}, + [1588] = {.lex_state = 37, .external_lex_state = 2}, + [1589] = {.lex_state = 37, .external_lex_state = 2}, + [1590] = {.lex_state = 37, .external_lex_state = 2}, + [1591] = {.lex_state = 37, .external_lex_state = 2}, + [1592] = {.lex_state = 37, .external_lex_state = 2}, + [1593] = {.lex_state = 35, .external_lex_state = 2}, + [1594] = {.lex_state = 37, .external_lex_state = 2}, [1595] = {.lex_state = 35, .external_lex_state = 2}, - [1596] = {.lex_state = 203, .external_lex_state = 2}, - [1597] = {.lex_state = 33, .external_lex_state = 2}, + [1596] = {.lex_state = 33, .external_lex_state = 2}, + [1597] = {.lex_state = 37, .external_lex_state = 2}, [1598] = {.lex_state = 33, .external_lex_state = 2}, [1599] = {.lex_state = 33, .external_lex_state = 2}, - [1600] = {.lex_state = 33, .external_lex_state = 2}, + [1600] = {.lex_state = 36, .external_lex_state = 2}, [1601] = {.lex_state = 33, .external_lex_state = 2}, - [1602] = {.lex_state = 33, .external_lex_state = 2}, + [1602] = {.lex_state = 252, .external_lex_state = 2}, [1603] = {.lex_state = 33, .external_lex_state = 2}, [1604] = {.lex_state = 33, .external_lex_state = 2}, [1605] = {.lex_state = 33, .external_lex_state = 2}, @@ -11881,1212 +12377,1257 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1607] = {.lex_state = 33, .external_lex_state = 2}, [1608] = {.lex_state = 33, .external_lex_state = 2}, [1609] = {.lex_state = 33, .external_lex_state = 2}, - [1610] = {.lex_state = 203, .external_lex_state = 2}, - [1611] = {.lex_state = 33, .external_lex_state = 2}, + [1610] = {.lex_state = 33, .external_lex_state = 2}, + [1611] = {.lex_state = 252, .external_lex_state = 2}, [1612] = {.lex_state = 33, .external_lex_state = 2}, [1613] = {.lex_state = 35, .external_lex_state = 2}, [1614] = {.lex_state = 33, .external_lex_state = 2}, - [1615] = {.lex_state = 33, .external_lex_state = 2}, + [1615] = {.lex_state = 35, .external_lex_state = 2}, [1616] = {.lex_state = 33, .external_lex_state = 2}, [1617] = {.lex_state = 33, .external_lex_state = 2}, [1618] = {.lex_state = 33, .external_lex_state = 2}, - [1619] = {.lex_state = 33, .external_lex_state = 2}, - [1620] = {.lex_state = 203, .external_lex_state = 2}, + [1619] = {.lex_state = 252, .external_lex_state = 2}, + [1620] = {.lex_state = 33, .external_lex_state = 2}, [1621] = {.lex_state = 33, .external_lex_state = 2}, - [1622] = {.lex_state = 33, .external_lex_state = 2}, + [1622] = {.lex_state = 35, .external_lex_state = 2}, [1623] = {.lex_state = 33, .external_lex_state = 2}, - [1624] = {.lex_state = 203, .external_lex_state = 2}, + [1624] = {.lex_state = 33, .external_lex_state = 2}, [1625] = {.lex_state = 35, .external_lex_state = 2}, - [1626] = {.lex_state = 35, .external_lex_state = 2}, + [1626] = {.lex_state = 33, .external_lex_state = 2}, [1627] = {.lex_state = 33, .external_lex_state = 2}, [1628] = {.lex_state = 33, .external_lex_state = 2}, - [1629] = {.lex_state = 35, .external_lex_state = 2}, - [1630] = {.lex_state = 37, .external_lex_state = 2}, + [1629] = {.lex_state = 33, .external_lex_state = 2}, + [1630] = {.lex_state = 33, .external_lex_state = 2}, [1631] = {.lex_state = 33, .external_lex_state = 2}, - [1632] = {.lex_state = 37, .external_lex_state = 2}, - [1633] = {.lex_state = 33, .external_lex_state = 2}, - [1634] = {.lex_state = 37, .external_lex_state = 2}, + [1632] = {.lex_state = 33, .external_lex_state = 2}, + [1633] = {.lex_state = 252, .external_lex_state = 2}, + [1634] = {.lex_state = 33, .external_lex_state = 2}, [1635] = {.lex_state = 33, .external_lex_state = 2}, - [1636] = {.lex_state = 33, .external_lex_state = 2}, - [1637] = {.lex_state = 203, .external_lex_state = 2}, + [1636] = {.lex_state = 252, .external_lex_state = 2}, + [1637] = {.lex_state = 35, .external_lex_state = 2}, [1638] = {.lex_state = 33, .external_lex_state = 2}, [1639] = {.lex_state = 33, .external_lex_state = 2}, - [1640] = {.lex_state = 203, .external_lex_state = 2}, - [1641] = {.lex_state = 37, .external_lex_state = 2}, - [1642] = {.lex_state = 33, .external_lex_state = 2}, - [1643] = {.lex_state = 203, .external_lex_state = 2}, + [1640] = {.lex_state = 33, .external_lex_state = 2}, + [1641] = {.lex_state = 33, .external_lex_state = 2}, + [1642] = {.lex_state = 252, .external_lex_state = 2}, + [1643] = {.lex_state = 33, .external_lex_state = 2}, [1644] = {.lex_state = 33, .external_lex_state = 2}, - [1645] = {.lex_state = 37, .external_lex_state = 2}, + [1645] = {.lex_state = 35, .external_lex_state = 2}, [1646] = {.lex_state = 37, .external_lex_state = 2}, [1647] = {.lex_state = 33, .external_lex_state = 2}, [1648] = {.lex_state = 33, .external_lex_state = 2}, - [1649] = {.lex_state = 203, .external_lex_state = 2}, - [1650] = {.lex_state = 33, .external_lex_state = 2}, + [1649] = {.lex_state = 33, .external_lex_state = 2}, + [1650] = {.lex_state = 37, .external_lex_state = 2}, [1651] = {.lex_state = 33, .external_lex_state = 2}, - [1652] = {.lex_state = 33, .external_lex_state = 2}, - [1653] = {.lex_state = 203, .external_lex_state = 2}, + [1652] = {.lex_state = 252, .external_lex_state = 2}, + [1653] = {.lex_state = 252, .external_lex_state = 2}, [1654] = {.lex_state = 33, .external_lex_state = 2}, [1655] = {.lex_state = 33, .external_lex_state = 2}, - [1656] = {.lex_state = 33, .external_lex_state = 2}, + [1656] = {.lex_state = 252, .external_lex_state = 2}, [1657] = {.lex_state = 33, .external_lex_state = 2}, - [1658] = {.lex_state = 33, .external_lex_state = 2}, - [1659] = {.lex_state = 34, .external_lex_state = 2}, - [1660] = {.lex_state = 34, .external_lex_state = 2}, - [1661] = {.lex_state = 34, .external_lex_state = 2}, - [1662] = {.lex_state = 34, .external_lex_state = 2}, - [1663] = {.lex_state = 34, .external_lex_state = 2}, - [1664] = {.lex_state = 54, .external_lex_state = 2}, - [1665] = {.lex_state = 54, .external_lex_state = 2}, - [1666] = {.lex_state = 54, .external_lex_state = 2}, - [1667] = {.lex_state = 54, .external_lex_state = 2}, - [1668] = {.lex_state = 54, .external_lex_state = 2}, - [1669] = {.lex_state = 54, .external_lex_state = 2}, - [1670] = {.lex_state = 54, .external_lex_state = 2}, - [1671] = {.lex_state = 54, .external_lex_state = 2}, - [1672] = {.lex_state = 51, .external_lex_state = 2}, - [1673] = {.lex_state = 51, .external_lex_state = 2}, - [1674] = {.lex_state = 51, .external_lex_state = 2}, - [1675] = {.lex_state = 54, .external_lex_state = 2}, - [1676] = {.lex_state = 51, .external_lex_state = 2}, - [1677] = {.lex_state = 51, .external_lex_state = 2}, - [1678] = {.lex_state = 51, .external_lex_state = 2}, - [1679] = {.lex_state = 51, .external_lex_state = 2}, - [1680] = {.lex_state = 51, .external_lex_state = 2}, - [1681] = {.lex_state = 51, .external_lex_state = 2}, - [1682] = {.lex_state = 51, .external_lex_state = 2}, - [1683] = {.lex_state = 51, .external_lex_state = 2}, - [1684] = {.lex_state = 51, .external_lex_state = 2}, - [1685] = {.lex_state = 51, .external_lex_state = 2}, - [1686] = {.lex_state = 51, .external_lex_state = 2}, - [1687] = {.lex_state = 51, .external_lex_state = 2}, - [1688] = {.lex_state = 51, .external_lex_state = 2}, - [1689] = {.lex_state = 51, .external_lex_state = 2}, - [1690] = {.lex_state = 51, .external_lex_state = 2}, - [1691] = {.lex_state = 51, .external_lex_state = 2}, - [1692] = {.lex_state = 51, .external_lex_state = 2}, - [1693] = {.lex_state = 51, .external_lex_state = 2}, - [1694] = {.lex_state = 51, .external_lex_state = 2}, - [1695] = {.lex_state = 51, .external_lex_state = 2}, - [1696] = {.lex_state = 51, .external_lex_state = 2}, - [1697] = {.lex_state = 51, .external_lex_state = 2}, - [1698] = {.lex_state = 51, .external_lex_state = 2}, - [1699] = {.lex_state = 51, .external_lex_state = 2}, - [1700] = {.lex_state = 51, .external_lex_state = 2}, - [1701] = {.lex_state = 51, .external_lex_state = 2}, - [1702] = {.lex_state = 51, .external_lex_state = 2}, - [1703] = {.lex_state = 51, .external_lex_state = 2}, - [1704] = {.lex_state = 51, .external_lex_state = 2}, - [1705] = {.lex_state = 51, .external_lex_state = 2}, - [1706] = {.lex_state = 38, .external_lex_state = 2}, - [1707] = {.lex_state = 38, .external_lex_state = 2}, - [1708] = {.lex_state = 34, .external_lex_state = 2}, - [1709] = {.lex_state = 34, .external_lex_state = 2}, - [1710] = {.lex_state = 34, .external_lex_state = 2}, - [1711] = {.lex_state = 203, .external_lex_state = 2}, - [1712] = {.lex_state = 203, .external_lex_state = 5}, - [1713] = {.lex_state = 34, .external_lex_state = 2}, - [1714] = {.lex_state = 34, .external_lex_state = 2}, - [1715] = {.lex_state = 34, .external_lex_state = 2}, - [1716] = {.lex_state = 34, .external_lex_state = 2}, - [1717] = {.lex_state = 38, .external_lex_state = 2}, - [1718] = {.lex_state = 38, .external_lex_state = 2}, - [1719] = {.lex_state = 203, .external_lex_state = 2}, - [1720] = {.lex_state = 38, .external_lex_state = 2}, - [1721] = {.lex_state = 203, .external_lex_state = 2}, - [1722] = {.lex_state = 34, .external_lex_state = 2}, - [1723] = {.lex_state = 34, .external_lex_state = 2}, + [1658] = {.lex_state = 37, .external_lex_state = 2}, + [1659] = {.lex_state = 33, .external_lex_state = 2}, + [1660] = {.lex_state = 33, .external_lex_state = 2}, + [1661] = {.lex_state = 33, .external_lex_state = 2}, + [1662] = {.lex_state = 33, .external_lex_state = 2}, + [1663] = {.lex_state = 33, .external_lex_state = 2}, + [1664] = {.lex_state = 33, .external_lex_state = 2}, + [1665] = {.lex_state = 37, .external_lex_state = 2}, + [1666] = {.lex_state = 252, .external_lex_state = 2}, + [1667] = {.lex_state = 37, .external_lex_state = 2}, + [1668] = {.lex_state = 33, .external_lex_state = 2}, + [1669] = {.lex_state = 33, .external_lex_state = 2}, + [1670] = {.lex_state = 37, .external_lex_state = 2}, + [1671] = {.lex_state = 33, .external_lex_state = 2}, + [1672] = {.lex_state = 33, .external_lex_state = 2}, + [1673] = {.lex_state = 33, .external_lex_state = 2}, + [1674] = {.lex_state = 252, .external_lex_state = 2}, + [1675] = {.lex_state = 34, .external_lex_state = 2}, + [1676] = {.lex_state = 34, .external_lex_state = 2}, + [1677] = {.lex_state = 34, .external_lex_state = 2}, + [1678] = {.lex_state = 45, .external_lex_state = 2}, + [1679] = {.lex_state = 45, .external_lex_state = 2}, + [1680] = {.lex_state = 45, .external_lex_state = 2}, + [1681] = {.lex_state = 45, .external_lex_state = 2}, + [1682] = {.lex_state = 45, .external_lex_state = 2}, + [1683] = {.lex_state = 45, .external_lex_state = 2}, + [1684] = {.lex_state = 34, .external_lex_state = 2}, + [1685] = {.lex_state = 34, .external_lex_state = 2}, + [1686] = {.lex_state = 45, .external_lex_state = 2}, + [1687] = {.lex_state = 45, .external_lex_state = 2}, + [1688] = {.lex_state = 45, .external_lex_state = 2}, + [1689] = {.lex_state = 57, .external_lex_state = 2}, + [1690] = {.lex_state = 57, .external_lex_state = 2}, + [1691] = {.lex_state = 57, .external_lex_state = 2}, + [1692] = {.lex_state = 57, .external_lex_state = 2}, + [1693] = {.lex_state = 57, .external_lex_state = 2}, + [1694] = {.lex_state = 57, .external_lex_state = 2}, + [1695] = {.lex_state = 57, .external_lex_state = 2}, + [1696] = {.lex_state = 57, .external_lex_state = 2}, + [1697] = {.lex_state = 57, .external_lex_state = 2}, + [1698] = {.lex_state = 57, .external_lex_state = 2}, + [1699] = {.lex_state = 57, .external_lex_state = 2}, + [1700] = {.lex_state = 57, .external_lex_state = 2}, + [1701] = {.lex_state = 39, .external_lex_state = 2}, + [1702] = {.lex_state = 57, .external_lex_state = 2}, + [1703] = {.lex_state = 57, .external_lex_state = 2}, + [1704] = {.lex_state = 57, .external_lex_state = 2}, + [1705] = {.lex_state = 57, .external_lex_state = 2}, + [1706] = {.lex_state = 57, .external_lex_state = 2}, + [1707] = {.lex_state = 57, .external_lex_state = 2}, + [1708] = {.lex_state = 39, .external_lex_state = 2}, + [1709] = {.lex_state = 57, .external_lex_state = 2}, + [1710] = {.lex_state = 57, .external_lex_state = 2}, + [1711] = {.lex_state = 57, .external_lex_state = 2}, + [1712] = {.lex_state = 57, .external_lex_state = 2}, + [1713] = {.lex_state = 57, .external_lex_state = 2}, + [1714] = {.lex_state = 57, .external_lex_state = 2}, + [1715] = {.lex_state = 57, .external_lex_state = 2}, + [1716] = {.lex_state = 57, .external_lex_state = 2}, + [1717] = {.lex_state = 57, .external_lex_state = 2}, + [1718] = {.lex_state = 57, .external_lex_state = 2}, + [1719] = {.lex_state = 57, .external_lex_state = 2}, + [1720] = {.lex_state = 57, .external_lex_state = 2}, + [1721] = {.lex_state = 57, .external_lex_state = 2}, + [1722] = {.lex_state = 57, .external_lex_state = 2}, + [1723] = {.lex_state = 57, .external_lex_state = 2}, [1724] = {.lex_state = 34, .external_lex_state = 2}, [1725] = {.lex_state = 34, .external_lex_state = 2}, [1726] = {.lex_state = 34, .external_lex_state = 2}, - [1727] = {.lex_state = 38, .external_lex_state = 2}, - [1728] = {.lex_state = 34, .external_lex_state = 2}, - [1729] = {.lex_state = 38, .external_lex_state = 2}, + [1727] = {.lex_state = 34, .external_lex_state = 2}, + [1728] = {.lex_state = 252, .external_lex_state = 2}, + [1729] = {.lex_state = 34, .external_lex_state = 2}, [1730] = {.lex_state = 34, .external_lex_state = 2}, - [1731] = {.lex_state = 203, .external_lex_state = 2}, + [1731] = {.lex_state = 34, .external_lex_state = 2}, [1732] = {.lex_state = 34, .external_lex_state = 2}, - [1733] = {.lex_state = 203, .external_lex_state = 2}, - [1734] = {.lex_state = 34, .external_lex_state = 2}, - [1735] = {.lex_state = 34, .external_lex_state = 2}, - [1736] = {.lex_state = 203, .external_lex_state = 2}, - [1737] = {.lex_state = 38, .external_lex_state = 2}, - [1738] = {.lex_state = 203, .external_lex_state = 2}, - [1739] = {.lex_state = 38, .external_lex_state = 5}, + [1733] = {.lex_state = 252, .external_lex_state = 2}, + [1734] = {.lex_state = 252, .external_lex_state = 2}, + [1735] = {.lex_state = 39, .external_lex_state = 2}, + [1736] = {.lex_state = 252, .external_lex_state = 2}, + [1737] = {.lex_state = 34, .external_lex_state = 2}, + [1738] = {.lex_state = 252, .external_lex_state = 2}, + [1739] = {.lex_state = 34, .external_lex_state = 2}, [1740] = {.lex_state = 34, .external_lex_state = 2}, - [1741] = {.lex_state = 51, .external_lex_state = 2}, - [1742] = {.lex_state = 38, .external_lex_state = 5}, - [1743] = {.lex_state = 203, .external_lex_state = 5}, + [1741] = {.lex_state = 252, .external_lex_state = 5}, + [1742] = {.lex_state = 34, .external_lex_state = 2}, + [1743] = {.lex_state = 39, .external_lex_state = 2}, [1744] = {.lex_state = 34, .external_lex_state = 2}, - [1745] = {.lex_state = 203, .external_lex_state = 2}, - [1746] = {.lex_state = 203, .external_lex_state = 2}, + [1745] = {.lex_state = 34, .external_lex_state = 2}, + [1746] = {.lex_state = 34, .external_lex_state = 2}, [1747] = {.lex_state = 34, .external_lex_state = 2}, - [1748] = {.lex_state = 203, .external_lex_state = 2}, - [1749] = {.lex_state = 203, .external_lex_state = 2}, - [1750] = {.lex_state = 203, .external_lex_state = 2}, - [1751] = {.lex_state = 203, .external_lex_state = 2}, - [1752] = {.lex_state = 30, .external_lex_state = 2}, - [1753] = {.lex_state = 203, .external_lex_state = 6}, - [1754] = {.lex_state = 203, .external_lex_state = 2}, - [1755] = {.lex_state = 38, .external_lex_state = 5}, - [1756] = {.lex_state = 34, .external_lex_state = 2}, - [1757] = {.lex_state = 203, .external_lex_state = 5}, - [1758] = {.lex_state = 51, .external_lex_state = 2}, - [1759] = {.lex_state = 203, .external_lex_state = 6}, - [1760] = {.lex_state = 203, .external_lex_state = 2}, - [1761] = {.lex_state = 38, .external_lex_state = 5}, - [1762] = {.lex_state = 203, .external_lex_state = 2}, - [1763] = {.lex_state = 203, .external_lex_state = 5}, - [1764] = {.lex_state = 203, .external_lex_state = 2}, - [1765] = {.lex_state = 203, .external_lex_state = 5}, - [1766] = {.lex_state = 51, .external_lex_state = 2}, - [1767] = {.lex_state = 203, .external_lex_state = 6}, - [1768] = {.lex_state = 38, .external_lex_state = 5}, - [1769] = {.lex_state = 34, .external_lex_state = 2}, - [1770] = {.lex_state = 203, .external_lex_state = 2}, - [1771] = {.lex_state = 203, .external_lex_state = 2}, - [1772] = {.lex_state = 38, .external_lex_state = 5}, - [1773] = {.lex_state = 38, .external_lex_state = 5}, - [1774] = {.lex_state = 203, .external_lex_state = 2}, - [1775] = {.lex_state = 51, .external_lex_state = 2}, - [1776] = {.lex_state = 38, .external_lex_state = 5}, + [1748] = {.lex_state = 39, .external_lex_state = 2}, + [1749] = {.lex_state = 39, .external_lex_state = 2}, + [1750] = {.lex_state = 57, .external_lex_state = 2}, + [1751] = {.lex_state = 252, .external_lex_state = 2}, + [1752] = {.lex_state = 34, .external_lex_state = 2}, + [1753] = {.lex_state = 252, .external_lex_state = 2}, + [1754] = {.lex_state = 34, .external_lex_state = 2}, + [1755] = {.lex_state = 252, .external_lex_state = 5}, + [1756] = {.lex_state = 39, .external_lex_state = 5}, + [1757] = {.lex_state = 39, .external_lex_state = 2}, + [1758] = {.lex_state = 34, .external_lex_state = 2}, + [1759] = {.lex_state = 39, .external_lex_state = 5}, + [1760] = {.lex_state = 39, .external_lex_state = 2}, + [1761] = {.lex_state = 252, .external_lex_state = 2}, + [1762] = {.lex_state = 252, .external_lex_state = 2}, + [1763] = {.lex_state = 39, .external_lex_state = 5}, + [1764] = {.lex_state = 45, .external_lex_state = 2}, + [1765] = {.lex_state = 39, .external_lex_state = 5}, + [1766] = {.lex_state = 252, .external_lex_state = 6}, + [1767] = {.lex_state = 45, .external_lex_state = 2}, + [1768] = {.lex_state = 252, .external_lex_state = 2}, + [1769] = {.lex_state = 252, .external_lex_state = 2}, + [1770] = {.lex_state = 252, .external_lex_state = 2}, + [1771] = {.lex_state = 45, .external_lex_state = 2}, + [1772] = {.lex_state = 34, .external_lex_state = 2}, + [1773] = {.lex_state = 39, .external_lex_state = 5}, + [1774] = {.lex_state = 45, .external_lex_state = 2}, + [1775] = {.lex_state = 39, .external_lex_state = 5}, + [1776] = {.lex_state = 57, .external_lex_state = 2}, [1777] = {.lex_state = 34, .external_lex_state = 2}, - [1778] = {.lex_state = 34, .external_lex_state = 2}, - [1779] = {.lex_state = 38, .external_lex_state = 5}, - [1780] = {.lex_state = 203, .external_lex_state = 2}, - [1781] = {.lex_state = 203, .external_lex_state = 2}, - [1782] = {.lex_state = 38, .external_lex_state = 5}, - [1783] = {.lex_state = 30, .external_lex_state = 2}, - [1784] = {.lex_state = 203, .external_lex_state = 5}, - [1785] = {.lex_state = 203, .external_lex_state = 2}, + [1778] = {.lex_state = 252, .external_lex_state = 2}, + [1779] = {.lex_state = 57, .external_lex_state = 2}, + [1780] = {.lex_state = 45, .external_lex_state = 2}, + [1781] = {.lex_state = 252, .external_lex_state = 2}, + [1782] = {.lex_state = 45, .external_lex_state = 2}, + [1783] = {.lex_state = 252, .external_lex_state = 2}, + [1784] = {.lex_state = 45, .external_lex_state = 2}, + [1785] = {.lex_state = 45, .external_lex_state = 2}, [1786] = {.lex_state = 34, .external_lex_state = 2}, - [1787] = {.lex_state = 34, .external_lex_state = 2}, - [1788] = {.lex_state = 203, .external_lex_state = 2}, - [1789] = {.lex_state = 203, .external_lex_state = 2}, - [1790] = {.lex_state = 34, .external_lex_state = 2}, - [1791] = {.lex_state = 34, .external_lex_state = 2}, - [1792] = {.lex_state = 203, .external_lex_state = 2}, - [1793] = {.lex_state = 38, .external_lex_state = 5}, - [1794] = {.lex_state = 203, .external_lex_state = 6}, - [1795] = {.lex_state = 203, .external_lex_state = 6}, - [1796] = {.lex_state = 203, .external_lex_state = 2}, - [1797] = {.lex_state = 203, .external_lex_state = 2}, - [1798] = {.lex_state = 51, .external_lex_state = 2}, - [1799] = {.lex_state = 52, .external_lex_state = 2}, - [1800] = {.lex_state = 51, .external_lex_state = 2}, - [1801] = {.lex_state = 203, .external_lex_state = 2}, - [1802] = {.lex_state = 52, .external_lex_state = 2}, - [1803] = {.lex_state = 54, .external_lex_state = 2}, - [1804] = {.lex_state = 203, .external_lex_state = 2}, - [1805] = {.lex_state = 52, .external_lex_state = 2}, - [1806] = {.lex_state = 51, .external_lex_state = 2}, - [1807] = {.lex_state = 51, .external_lex_state = 2}, - [1808] = {.lex_state = 203, .external_lex_state = 2}, - [1809] = {.lex_state = 51, .external_lex_state = 2}, - [1810] = {.lex_state = 52, .external_lex_state = 2}, - [1811] = {.lex_state = 54, .external_lex_state = 2}, - [1812] = {.lex_state = 54, .external_lex_state = 2}, - [1813] = {.lex_state = 51, .external_lex_state = 2}, - [1814] = {.lex_state = 52, .external_lex_state = 2}, - [1815] = {.lex_state = 54, .external_lex_state = 2}, - [1816] = {.lex_state = 203, .external_lex_state = 2}, - [1817] = {.lex_state = 51, .external_lex_state = 2}, - [1818] = {.lex_state = 203, .external_lex_state = 5}, - [1819] = {.lex_state = 51, .external_lex_state = 2}, - [1820] = {.lex_state = 51, .external_lex_state = 2}, - [1821] = {.lex_state = 203, .external_lex_state = 2}, - [1822] = {.lex_state = 52, .external_lex_state = 2}, - [1823] = {.lex_state = 51, .external_lex_state = 2}, + [1787] = {.lex_state = 252, .external_lex_state = 6}, + [1788] = {.lex_state = 45, .external_lex_state = 2}, + [1789] = {.lex_state = 252, .external_lex_state = 5}, + [1790] = {.lex_state = 252, .external_lex_state = 6}, + [1791] = {.lex_state = 252, .external_lex_state = 5}, + [1792] = {.lex_state = 34, .external_lex_state = 2}, + [1793] = {.lex_state = 45, .external_lex_state = 2}, + [1794] = {.lex_state = 252, .external_lex_state = 2}, + [1795] = {.lex_state = 252, .external_lex_state = 6}, + [1796] = {.lex_state = 252, .external_lex_state = 5}, + [1797] = {.lex_state = 45, .external_lex_state = 2}, + [1798] = {.lex_state = 45, .external_lex_state = 2}, + [1799] = {.lex_state = 252, .external_lex_state = 2}, + [1800] = {.lex_state = 45, .external_lex_state = 2}, + [1801] = {.lex_state = 57, .external_lex_state = 2}, + [1802] = {.lex_state = 30, .external_lex_state = 2}, + [1803] = {.lex_state = 45, .external_lex_state = 2}, + [1804] = {.lex_state = 252, .external_lex_state = 2}, + [1805] = {.lex_state = 252, .external_lex_state = 6}, + [1806] = {.lex_state = 30, .external_lex_state = 2}, + [1807] = {.lex_state = 252, .external_lex_state = 2}, + [1808] = {.lex_state = 252, .external_lex_state = 2}, + [1809] = {.lex_state = 45, .external_lex_state = 2}, + [1810] = {.lex_state = 45, .external_lex_state = 2}, + [1811] = {.lex_state = 252, .external_lex_state = 2}, + [1812] = {.lex_state = 252, .external_lex_state = 2}, + [1813] = {.lex_state = 252, .external_lex_state = 2}, + [1814] = {.lex_state = 34, .external_lex_state = 2}, + [1815] = {.lex_state = 45, .external_lex_state = 2}, + [1816] = {.lex_state = 39, .external_lex_state = 5}, + [1817] = {.lex_state = 39, .external_lex_state = 5}, + [1818] = {.lex_state = 252, .external_lex_state = 2}, + [1819] = {.lex_state = 252, .external_lex_state = 2}, + [1820] = {.lex_state = 45, .external_lex_state = 2}, + [1821] = {.lex_state = 39, .external_lex_state = 5}, + [1822] = {.lex_state = 252, .external_lex_state = 2}, + [1823] = {.lex_state = 34, .external_lex_state = 2}, [1824] = {.lex_state = 34, .external_lex_state = 2}, - [1825] = {.lex_state = 52, .external_lex_state = 2}, - [1826] = {.lex_state = 54, .external_lex_state = 2}, - [1827] = {.lex_state = 203, .external_lex_state = 2}, - [1828] = {.lex_state = 54, .external_lex_state = 2}, - [1829] = {.lex_state = 52, .external_lex_state = 2}, - [1830] = {.lex_state = 203, .external_lex_state = 2}, - [1831] = {.lex_state = 52, .external_lex_state = 2}, - [1832] = {.lex_state = 51, .external_lex_state = 2}, - [1833] = {.lex_state = 52, .external_lex_state = 2}, - [1834] = {.lex_state = 52, .external_lex_state = 2}, - [1835] = {.lex_state = 54, .external_lex_state = 2}, - [1836] = {.lex_state = 54, .external_lex_state = 2}, - [1837] = {.lex_state = 203, .external_lex_state = 2}, - [1838] = {.lex_state = 54, .external_lex_state = 2}, - [1839] = {.lex_state = 203, .external_lex_state = 2}, - [1840] = {.lex_state = 54, .external_lex_state = 2}, - [1841] = {.lex_state = 51, .external_lex_state = 2}, - [1842] = {.lex_state = 54, .external_lex_state = 2}, - [1843] = {.lex_state = 51, .external_lex_state = 2}, - [1844] = {.lex_state = 54, .external_lex_state = 2}, - [1845] = {.lex_state = 54, .external_lex_state = 2}, - [1846] = {.lex_state = 34, .external_lex_state = 2}, - [1847] = {.lex_state = 54, .external_lex_state = 2}, - [1848] = {.lex_state = 54, .external_lex_state = 2}, - [1849] = {.lex_state = 51, .external_lex_state = 2}, - [1850] = {.lex_state = 203, .external_lex_state = 2}, - [1851] = {.lex_state = 54, .external_lex_state = 2}, - [1852] = {.lex_state = 34, .external_lex_state = 2}, - [1853] = {.lex_state = 51, .external_lex_state = 2}, - [1854] = {.lex_state = 51, .external_lex_state = 2}, - [1855] = {.lex_state = 52, .external_lex_state = 2}, - [1856] = {.lex_state = 54, .external_lex_state = 2}, - [1857] = {.lex_state = 203, .external_lex_state = 2}, - [1858] = {.lex_state = 51, .external_lex_state = 2}, - [1859] = {.lex_state = 54, .external_lex_state = 2}, - [1860] = {.lex_state = 38, .external_lex_state = 5}, - [1861] = {.lex_state = 51, .external_lex_state = 2}, - [1862] = {.lex_state = 52, .external_lex_state = 2}, - [1863] = {.lex_state = 54, .external_lex_state = 2}, - [1864] = {.lex_state = 52, .external_lex_state = 2}, - [1865] = {.lex_state = 203, .external_lex_state = 2}, - [1866] = {.lex_state = 34, .external_lex_state = 2}, - [1867] = {.lex_state = 51, .external_lex_state = 2}, - [1868] = {.lex_state = 51, .external_lex_state = 2}, - [1869] = {.lex_state = 51, .external_lex_state = 2}, - [1870] = {.lex_state = 51, .external_lex_state = 2}, - [1871] = {.lex_state = 51, .external_lex_state = 2}, - [1872] = {.lex_state = 51, .external_lex_state = 2}, - [1873] = {.lex_state = 203, .external_lex_state = 2}, - [1874] = {.lex_state = 3, .external_lex_state = 2}, + [1825] = {.lex_state = 39, .external_lex_state = 5}, + [1826] = {.lex_state = 45, .external_lex_state = 2}, + [1827] = {.lex_state = 252, .external_lex_state = 5}, + [1828] = {.lex_state = 34, .external_lex_state = 2}, + [1829] = {.lex_state = 39, .external_lex_state = 5}, + [1830] = {.lex_state = 34, .external_lex_state = 2}, + [1831] = {.lex_state = 252, .external_lex_state = 2}, + [1832] = {.lex_state = 58, .external_lex_state = 2}, + [1833] = {.lex_state = 57, .external_lex_state = 2}, + [1834] = {.lex_state = 252, .external_lex_state = 2}, + [1835] = {.lex_state = 57, .external_lex_state = 2}, + [1836] = {.lex_state = 57, .external_lex_state = 2}, + [1837] = {.lex_state = 252, .external_lex_state = 2}, + [1838] = {.lex_state = 58, .external_lex_state = 2}, + [1839] = {.lex_state = 58, .external_lex_state = 2}, + [1840] = {.lex_state = 57, .external_lex_state = 2}, + [1841] = {.lex_state = 252, .external_lex_state = 5}, + [1842] = {.lex_state = 252, .external_lex_state = 2}, + [1843] = {.lex_state = 34, .external_lex_state = 2}, + [1844] = {.lex_state = 34, .external_lex_state = 2}, + [1845] = {.lex_state = 57, .external_lex_state = 2}, + [1846] = {.lex_state = 252, .external_lex_state = 2}, + [1847] = {.lex_state = 58, .external_lex_state = 2}, + [1848] = {.lex_state = 252, .external_lex_state = 2}, + [1849] = {.lex_state = 57, .external_lex_state = 2}, + [1850] = {.lex_state = 57, .external_lex_state = 2}, + [1851] = {.lex_state = 58, .external_lex_state = 2}, + [1852] = {.lex_state = 57, .external_lex_state = 2}, + [1853] = {.lex_state = 252, .external_lex_state = 2}, + [1854] = {.lex_state = 58, .external_lex_state = 2}, + [1855] = {.lex_state = 57, .external_lex_state = 2}, + [1856] = {.lex_state = 58, .external_lex_state = 2}, + [1857] = {.lex_state = 57, .external_lex_state = 2}, + [1858] = {.lex_state = 252, .external_lex_state = 2}, + [1859] = {.lex_state = 252, .external_lex_state = 2}, + [1860] = {.lex_state = 57, .external_lex_state = 2}, + [1861] = {.lex_state = 58, .external_lex_state = 2}, + [1862] = {.lex_state = 39, .external_lex_state = 5}, + [1863] = {.lex_state = 57, .external_lex_state = 2}, + [1864] = {.lex_state = 57, .external_lex_state = 2}, + [1865] = {.lex_state = 57, .external_lex_state = 2}, + [1866] = {.lex_state = 58, .external_lex_state = 2}, + [1867] = {.lex_state = 57, .external_lex_state = 2}, + [1868] = {.lex_state = 252, .external_lex_state = 2}, + [1869] = {.lex_state = 57, .external_lex_state = 2}, + [1870] = {.lex_state = 57, .external_lex_state = 2}, + [1871] = {.lex_state = 57, .external_lex_state = 2}, + [1872] = {.lex_state = 252, .external_lex_state = 2}, + [1873] = {.lex_state = 58, .external_lex_state = 2}, + [1874] = {.lex_state = 57, .external_lex_state = 2}, [1875] = {.lex_state = 34, .external_lex_state = 2}, - [1876] = {.lex_state = 203, .external_lex_state = 2}, - [1877] = {.lex_state = 3, .external_lex_state = 2}, - [1878] = {.lex_state = 203, .external_lex_state = 5}, - [1879] = {.lex_state = 203, .external_lex_state = 5}, - [1880] = {.lex_state = 40, .external_lex_state = 7}, - [1881] = {.lex_state = 203, .external_lex_state = 2}, - [1882] = {.lex_state = 41, .external_lex_state = 7}, - [1883] = {.lex_state = 30, .external_lex_state = 2}, - [1884] = {.lex_state = 203, .external_lex_state = 2}, - [1885] = {.lex_state = 203, .external_lex_state = 2}, - [1886] = {.lex_state = 203, .external_lex_state = 2}, - [1887] = {.lex_state = 203, .external_lex_state = 5}, - [1888] = {.lex_state = 203, .external_lex_state = 5}, - [1889] = {.lex_state = 203, .external_lex_state = 5}, - [1890] = {.lex_state = 203, .external_lex_state = 5}, - [1891] = {.lex_state = 40, .external_lex_state = 7}, - [1892] = {.lex_state = 41, .external_lex_state = 7}, - [1893] = {.lex_state = 203, .external_lex_state = 6}, - [1894] = {.lex_state = 203, .external_lex_state = 2}, - [1895] = {.lex_state = 203, .external_lex_state = 5}, - [1896] = {.lex_state = 40, .external_lex_state = 7}, - [1897] = {.lex_state = 41, .external_lex_state = 7}, - [1898] = {.lex_state = 203, .external_lex_state = 2}, - [1899] = {.lex_state = 40, .external_lex_state = 7}, - [1900] = {.lex_state = 203, .external_lex_state = 2}, - [1901] = {.lex_state = 41, .external_lex_state = 7}, - [1902] = {.lex_state = 41, .external_lex_state = 7}, - [1903] = {.lex_state = 203, .external_lex_state = 2}, - [1904] = {.lex_state = 203, .external_lex_state = 5}, - [1905] = {.lex_state = 203, .external_lex_state = 5}, - [1906] = {.lex_state = 203, .external_lex_state = 2}, - [1907] = {.lex_state = 3, .external_lex_state = 2}, - [1908] = {.lex_state = 203, .external_lex_state = 2}, - [1909] = {.lex_state = 203, .external_lex_state = 5}, - [1910] = {.lex_state = 40, .external_lex_state = 7}, - [1911] = {.lex_state = 203, .external_lex_state = 2}, - [1912] = {.lex_state = 203, .external_lex_state = 2}, - [1913] = {.lex_state = 203, .external_lex_state = 5}, - [1914] = {.lex_state = 203, .external_lex_state = 5}, - [1915] = {.lex_state = 40, .external_lex_state = 7}, - [1916] = {.lex_state = 41, .external_lex_state = 7}, + [1876] = {.lex_state = 252, .external_lex_state = 2}, + [1877] = {.lex_state = 58, .external_lex_state = 2}, + [1878] = {.lex_state = 57, .external_lex_state = 2}, + [1879] = {.lex_state = 58, .external_lex_state = 2}, + [1880] = {.lex_state = 252, .external_lex_state = 2}, + [1881] = {.lex_state = 57, .external_lex_state = 2}, + [1882] = {.lex_state = 252, .external_lex_state = 2}, + [1883] = {.lex_state = 58, .external_lex_state = 2}, + [1884] = {.lex_state = 34, .external_lex_state = 2}, + [1885] = {.lex_state = 252, .external_lex_state = 2}, + [1886] = {.lex_state = 252, .external_lex_state = 5}, + [1887] = {.lex_state = 57, .external_lex_state = 2}, + [1888] = {.lex_state = 58, .external_lex_state = 2}, + [1889] = {.lex_state = 57, .external_lex_state = 2}, + [1890] = {.lex_state = 252, .external_lex_state = 5}, + [1891] = {.lex_state = 57, .external_lex_state = 2}, + [1892] = {.lex_state = 47, .external_lex_state = 7}, + [1893] = {.lex_state = 252, .external_lex_state = 5}, + [1894] = {.lex_state = 34, .external_lex_state = 2}, + [1895] = {.lex_state = 252, .external_lex_state = 6}, + [1896] = {.lex_state = 252, .external_lex_state = 2}, + [1897] = {.lex_state = 252, .external_lex_state = 2}, + [1898] = {.lex_state = 252, .external_lex_state = 2}, + [1899] = {.lex_state = 252, .external_lex_state = 5}, + [1900] = {.lex_state = 252, .external_lex_state = 2}, + [1901] = {.lex_state = 252, .external_lex_state = 2}, + [1902] = {.lex_state = 3, .external_lex_state = 2}, + [1903] = {.lex_state = 252, .external_lex_state = 2}, + [1904] = {.lex_state = 252, .external_lex_state = 2}, + [1905] = {.lex_state = 252, .external_lex_state = 5}, + [1906] = {.lex_state = 34, .external_lex_state = 2}, + [1907] = {.lex_state = 252, .external_lex_state = 5}, + [1908] = {.lex_state = 252, .external_lex_state = 5}, + [1909] = {.lex_state = 252, .external_lex_state = 5}, + [1910] = {.lex_state = 252, .external_lex_state = 5}, + [1911] = {.lex_state = 252, .external_lex_state = 5}, + [1912] = {.lex_state = 252, .external_lex_state = 5}, + [1913] = {.lex_state = 252, .external_lex_state = 5}, + [1914] = {.lex_state = 252, .external_lex_state = 5}, + [1915] = {.lex_state = 252, .external_lex_state = 5}, + [1916] = {.lex_state = 252, .external_lex_state = 5}, [1917] = {.lex_state = 34, .external_lex_state = 2}, - [1918] = {.lex_state = 203, .external_lex_state = 5}, - [1919] = {.lex_state = 203, .external_lex_state = 2}, - [1920] = {.lex_state = 203, .external_lex_state = 5}, - [1921] = {.lex_state = 203, .external_lex_state = 5}, - [1922] = {.lex_state = 203, .external_lex_state = 2}, - [1923] = {.lex_state = 203, .external_lex_state = 6}, - [1924] = {.lex_state = 203, .external_lex_state = 2}, - [1925] = {.lex_state = 40, .external_lex_state = 7}, - [1926] = {.lex_state = 41, .external_lex_state = 7}, - [1927] = {.lex_state = 203, .external_lex_state = 2}, - [1928] = {.lex_state = 203, .external_lex_state = 5}, - [1929] = {.lex_state = 203, .external_lex_state = 5}, - [1930] = {.lex_state = 203, .external_lex_state = 5}, - [1931] = {.lex_state = 203, .external_lex_state = 2}, - [1932] = {.lex_state = 203, .external_lex_state = 2}, - [1933] = {.lex_state = 203, .external_lex_state = 2}, - [1934] = {.lex_state = 203, .external_lex_state = 2}, - [1935] = {.lex_state = 38, .external_lex_state = 2}, - [1936] = {.lex_state = 40, .external_lex_state = 7}, - [1937] = {.lex_state = 41, .external_lex_state = 7}, - [1938] = {.lex_state = 203, .external_lex_state = 5}, - [1939] = {.lex_state = 203, .external_lex_state = 5}, - [1940] = {.lex_state = 203, .external_lex_state = 5}, - [1941] = {.lex_state = 203, .external_lex_state = 2}, - [1942] = {.lex_state = 40, .external_lex_state = 7}, - [1943] = {.lex_state = 41, .external_lex_state = 7}, - [1944] = {.lex_state = 203, .external_lex_state = 2}, - [1945] = {.lex_state = 203, .external_lex_state = 5}, - [1946] = {.lex_state = 203, .external_lex_state = 5}, - [1947] = {.lex_state = 203, .external_lex_state = 2}, - [1948] = {.lex_state = 203, .external_lex_state = 2}, - [1949] = {.lex_state = 203, .external_lex_state = 2}, - [1950] = {.lex_state = 203, .external_lex_state = 2}, - [1951] = {.lex_state = 203, .external_lex_state = 2}, - [1952] = {.lex_state = 203, .external_lex_state = 5}, - [1953] = {.lex_state = 203, .external_lex_state = 5}, - [1954] = {.lex_state = 203, .external_lex_state = 5}, - [1955] = {.lex_state = 203, .external_lex_state = 5}, - [1956] = {.lex_state = 34, .external_lex_state = 2}, - [1957] = {.lex_state = 203, .external_lex_state = 5}, - [1958] = {.lex_state = 203, .external_lex_state = 2}, - [1959] = {.lex_state = 203, .external_lex_state = 5}, - [1960] = {.lex_state = 203, .external_lex_state = 5}, - [1961] = {.lex_state = 203, .external_lex_state = 5}, - [1962] = {.lex_state = 203, .external_lex_state = 5}, - [1963] = {.lex_state = 203, .external_lex_state = 2}, - [1964] = {.lex_state = 3, .external_lex_state = 2}, - [1965] = {.lex_state = 203, .external_lex_state = 5}, - [1966] = {.lex_state = 38, .external_lex_state = 2}, - [1967] = {.lex_state = 40, .external_lex_state = 7}, - [1968] = {.lex_state = 41, .external_lex_state = 7}, - [1969] = {.lex_state = 38, .external_lex_state = 2}, - [1970] = {.lex_state = 203, .external_lex_state = 2}, - [1971] = {.lex_state = 203, .external_lex_state = 5}, - [1972] = {.lex_state = 34, .external_lex_state = 2}, - [1973] = {.lex_state = 203, .external_lex_state = 2}, - [1974] = {.lex_state = 203, .external_lex_state = 2}, - [1975] = {.lex_state = 203, .external_lex_state = 2}, - [1976] = {.lex_state = 3, .external_lex_state = 2}, - [1977] = {.lex_state = 34, .external_lex_state = 2}, - [1978] = {.lex_state = 203, .external_lex_state = 2}, - [1979] = {.lex_state = 203, .external_lex_state = 2}, - [1980] = {.lex_state = 34, .external_lex_state = 2}, - [1981] = {.lex_state = 41, .external_lex_state = 7}, - [1982] = {.lex_state = 203, .external_lex_state = 2}, - [1983] = {.lex_state = 40, .external_lex_state = 7}, - [1984] = {.lex_state = 203, .external_lex_state = 2}, - [1985] = {.lex_state = 38, .external_lex_state = 2}, - [1986] = {.lex_state = 34, .external_lex_state = 2}, - [1987] = {.lex_state = 203, .external_lex_state = 2}, - [1988] = {.lex_state = 3, .external_lex_state = 2}, - [1989] = {.lex_state = 34, .external_lex_state = 2}, - [1990] = {.lex_state = 203, .external_lex_state = 2}, - [1991] = {.lex_state = 203, .external_lex_state = 2}, - [1992] = {.lex_state = 34, .external_lex_state = 2}, - [1993] = {.lex_state = 203, .external_lex_state = 5}, - [1994] = {.lex_state = 203, .external_lex_state = 5}, - [1995] = {.lex_state = 203, .external_lex_state = 5}, - [1996] = {.lex_state = 34, .external_lex_state = 2}, - [1997] = {.lex_state = 203, .external_lex_state = 2}, - [1998] = {.lex_state = 34, .external_lex_state = 2}, - [1999] = {.lex_state = 34, .external_lex_state = 2}, - [2000] = {.lex_state = 203, .external_lex_state = 2}, - [2001] = {.lex_state = 203, .external_lex_state = 2}, - [2002] = {.lex_state = 34, .external_lex_state = 2}, - [2003] = {.lex_state = 34, .external_lex_state = 2}, - [2004] = {.lex_state = 203, .external_lex_state = 2}, - [2005] = {.lex_state = 203, .external_lex_state = 2}, - [2006] = {.lex_state = 203, .external_lex_state = 2}, - [2007] = {.lex_state = 34, .external_lex_state = 2}, - [2008] = {.lex_state = 34, .external_lex_state = 2}, - [2009] = {.lex_state = 203, .external_lex_state = 5}, - [2010] = {.lex_state = 203, .external_lex_state = 2}, - [2011] = {.lex_state = 203, .external_lex_state = 2}, - [2012] = {.lex_state = 203, .external_lex_state = 2}, - [2013] = {.lex_state = 203, .external_lex_state = 2}, - [2014] = {.lex_state = 203, .external_lex_state = 5}, - [2015] = {.lex_state = 203, .external_lex_state = 5}, - [2016] = {.lex_state = 203, .external_lex_state = 2}, - [2017] = {.lex_state = 203, .external_lex_state = 5}, - [2018] = {.lex_state = 203, .external_lex_state = 2}, - [2019] = {.lex_state = 34, .external_lex_state = 2}, - [2020] = {.lex_state = 203, .external_lex_state = 2}, - [2021] = {.lex_state = 203, .external_lex_state = 2}, - [2022] = {.lex_state = 34, .external_lex_state = 2}, - [2023] = {.lex_state = 203, .external_lex_state = 2}, - [2024] = {.lex_state = 203, .external_lex_state = 5}, - [2025] = {.lex_state = 34, .external_lex_state = 2}, - [2026] = {.lex_state = 34, .external_lex_state = 2}, - [2027] = {.lex_state = 203, .external_lex_state = 2}, - [2028] = {.lex_state = 203, .external_lex_state = 5}, - [2029] = {.lex_state = 203, .external_lex_state = 2}, - [2030] = {.lex_state = 203, .external_lex_state = 2}, - [2031] = {.lex_state = 203, .external_lex_state = 2}, - [2032] = {.lex_state = 34, .external_lex_state = 2}, - [2033] = {.lex_state = 34, .external_lex_state = 5}, - [2034] = {.lex_state = 38, .external_lex_state = 2}, + [1918] = {.lex_state = 252, .external_lex_state = 2}, + [1919] = {.lex_state = 252, .external_lex_state = 2}, + [1920] = {.lex_state = 252, .external_lex_state = 2}, + [1921] = {.lex_state = 34, .external_lex_state = 2}, + [1922] = {.lex_state = 42, .external_lex_state = 7}, + [1923] = {.lex_state = 47, .external_lex_state = 7}, + [1924] = {.lex_state = 34, .external_lex_state = 2}, + [1925] = {.lex_state = 252, .external_lex_state = 2}, + [1926] = {.lex_state = 252, .external_lex_state = 5}, + [1927] = {.lex_state = 252, .external_lex_state = 5}, + [1928] = {.lex_state = 252, .external_lex_state = 2}, + [1929] = {.lex_state = 252, .external_lex_state = 5}, + [1930] = {.lex_state = 252, .external_lex_state = 2}, + [1931] = {.lex_state = 252, .external_lex_state = 2}, + [1932] = {.lex_state = 42, .external_lex_state = 7}, + [1933] = {.lex_state = 252, .external_lex_state = 5}, + [1934] = {.lex_state = 252, .external_lex_state = 5}, + [1935] = {.lex_state = 252, .external_lex_state = 2}, + [1936] = {.lex_state = 252, .external_lex_state = 5}, + [1937] = {.lex_state = 252, .external_lex_state = 2}, + [1938] = {.lex_state = 252, .external_lex_state = 2}, + [1939] = {.lex_state = 34, .external_lex_state = 2}, + [1940] = {.lex_state = 252, .external_lex_state = 2}, + [1941] = {.lex_state = 47, .external_lex_state = 7}, + [1942] = {.lex_state = 39, .external_lex_state = 2}, + [1943] = {.lex_state = 39, .external_lex_state = 2}, + [1944] = {.lex_state = 3, .external_lex_state = 2}, + [1945] = {.lex_state = 34, .external_lex_state = 2}, + [1946] = {.lex_state = 252, .external_lex_state = 2}, + [1947] = {.lex_state = 252, .external_lex_state = 6}, + [1948] = {.lex_state = 252, .external_lex_state = 2}, + [1949] = {.lex_state = 252, .external_lex_state = 5}, + [1950] = {.lex_state = 252, .external_lex_state = 2}, + [1951] = {.lex_state = 252, .external_lex_state = 5}, + [1952] = {.lex_state = 3, .external_lex_state = 2}, + [1953] = {.lex_state = 30, .external_lex_state = 2}, + [1954] = {.lex_state = 252, .external_lex_state = 5}, + [1955] = {.lex_state = 252, .external_lex_state = 5}, + [1956] = {.lex_state = 42, .external_lex_state = 7}, + [1957] = {.lex_state = 252, .external_lex_state = 2}, + [1958] = {.lex_state = 47, .external_lex_state = 7}, + [1959] = {.lex_state = 252, .external_lex_state = 2}, + [1960] = {.lex_state = 252, .external_lex_state = 5}, + [1961] = {.lex_state = 252, .external_lex_state = 2}, + [1962] = {.lex_state = 34, .external_lex_state = 2}, + [1963] = {.lex_state = 252, .external_lex_state = 2}, + [1964] = {.lex_state = 252, .external_lex_state = 5}, + [1965] = {.lex_state = 252, .external_lex_state = 2}, + [1966] = {.lex_state = 252, .external_lex_state = 5}, + [1967] = {.lex_state = 252, .external_lex_state = 5}, + [1968] = {.lex_state = 44, .external_lex_state = 2}, + [1969] = {.lex_state = 252, .external_lex_state = 5}, + [1970] = {.lex_state = 42, .external_lex_state = 7}, + [1971] = {.lex_state = 252, .external_lex_state = 5}, + [1972] = {.lex_state = 38, .external_lex_state = 2}, + [1973] = {.lex_state = 39, .external_lex_state = 2}, + [1974] = {.lex_state = 252, .external_lex_state = 5}, + [1975] = {.lex_state = 34, .external_lex_state = 2}, + [1976] = {.lex_state = 34, .external_lex_state = 2}, + [1977] = {.lex_state = 3, .external_lex_state = 2}, + [1978] = {.lex_state = 252, .external_lex_state = 5}, + [1979] = {.lex_state = 252, .external_lex_state = 5}, + [1980] = {.lex_state = 252, .external_lex_state = 5}, + [1981] = {.lex_state = 252, .external_lex_state = 2}, + [1982] = {.lex_state = 252, .external_lex_state = 2}, + [1983] = {.lex_state = 3, .external_lex_state = 2}, + [1984] = {.lex_state = 42, .external_lex_state = 7}, + [1985] = {.lex_state = 44, .external_lex_state = 2}, + [1986] = {.lex_state = 47, .external_lex_state = 7}, + [1987] = {.lex_state = 252, .external_lex_state = 2}, + [1988] = {.lex_state = 252, .external_lex_state = 5}, + [1989] = {.lex_state = 252, .external_lex_state = 2}, + [1990] = {.lex_state = 47, .external_lex_state = 7}, + [1991] = {.lex_state = 42, .external_lex_state = 7}, + [1992] = {.lex_state = 252, .external_lex_state = 2}, + [1993] = {.lex_state = 252, .external_lex_state = 5}, + [1994] = {.lex_state = 42, .external_lex_state = 7}, + [1995] = {.lex_state = 47, .external_lex_state = 7}, + [1996] = {.lex_state = 42, .external_lex_state = 7}, + [1997] = {.lex_state = 252, .external_lex_state = 2}, + [1998] = {.lex_state = 252, .external_lex_state = 2}, + [1999] = {.lex_state = 39, .external_lex_state = 2}, + [2000] = {.lex_state = 252, .external_lex_state = 5}, + [2001] = {.lex_state = 252, .external_lex_state = 2}, + [2002] = {.lex_state = 252, .external_lex_state = 2}, + [2003] = {.lex_state = 252, .external_lex_state = 2}, + [2004] = {.lex_state = 42, .external_lex_state = 7}, + [2005] = {.lex_state = 252, .external_lex_state = 2}, + [2006] = {.lex_state = 252, .external_lex_state = 5}, + [2007] = {.lex_state = 47, .external_lex_state = 7}, + [2008] = {.lex_state = 47, .external_lex_state = 7}, + [2009] = {.lex_state = 3, .external_lex_state = 2}, + [2010] = {.lex_state = 252, .external_lex_state = 5}, + [2011] = {.lex_state = 252, .external_lex_state = 2}, + [2012] = {.lex_state = 38, .external_lex_state = 2}, + [2013] = {.lex_state = 34, .external_lex_state = 2}, + [2014] = {.lex_state = 34, .external_lex_state = 2}, + [2015] = {.lex_state = 252, .external_lex_state = 2}, + [2016] = {.lex_state = 38, .external_lex_state = 2}, + [2017] = {.lex_state = 252, .external_lex_state = 2}, + [2018] = {.lex_state = 252, .external_lex_state = 2}, + [2019] = {.lex_state = 252, .external_lex_state = 2}, + [2020] = {.lex_state = 34, .external_lex_state = 2}, + [2021] = {.lex_state = 252, .external_lex_state = 2}, + [2022] = {.lex_state = 252, .external_lex_state = 2}, + [2023] = {.lex_state = 252, .external_lex_state = 5}, + [2024] = {.lex_state = 252, .external_lex_state = 5}, + [2025] = {.lex_state = 252, .external_lex_state = 2}, + [2026] = {.lex_state = 252, .external_lex_state = 2}, + [2027] = {.lex_state = 252, .external_lex_state = 5}, + [2028] = {.lex_state = 252, .external_lex_state = 5}, + [2029] = {.lex_state = 34, .external_lex_state = 2}, + [2030] = {.lex_state = 44, .external_lex_state = 2}, + [2031] = {.lex_state = 252, .external_lex_state = 5}, + [2032] = {.lex_state = 252, .external_lex_state = 5}, + [2033] = {.lex_state = 252, .external_lex_state = 5}, + [2034] = {.lex_state = 39, .external_lex_state = 2}, [2035] = {.lex_state = 34, .external_lex_state = 2}, - [2036] = {.lex_state = 34, .external_lex_state = 5}, - [2037] = {.lex_state = 30, .external_lex_state = 2}, - [2038] = {.lex_state = 30, .external_lex_state = 2}, - [2039] = {.lex_state = 203, .external_lex_state = 5}, - [2040] = {.lex_state = 203, .external_lex_state = 5}, - [2041] = {.lex_state = 203, .external_lex_state = 2}, - [2042] = {.lex_state = 34, .external_lex_state = 2}, - [2043] = {.lex_state = 30, .external_lex_state = 2}, - [2044] = {.lex_state = 203, .external_lex_state = 2}, - [2045] = {.lex_state = 203, .external_lex_state = 2}, - [2046] = {.lex_state = 34, .external_lex_state = 2}, - [2047] = {.lex_state = 203, .external_lex_state = 2}, - [2048] = {.lex_state = 34, .external_lex_state = 2}, - [2049] = {.lex_state = 203, .external_lex_state = 2}, - [2050] = {.lex_state = 34, .external_lex_state = 2}, - [2051] = {.lex_state = 203, .external_lex_state = 2}, - [2052] = {.lex_state = 30, .external_lex_state = 2}, - [2053] = {.lex_state = 30, .external_lex_state = 2}, - [2054] = {.lex_state = 38, .external_lex_state = 2}, - [2055] = {.lex_state = 203, .external_lex_state = 2}, - [2056] = {.lex_state = 203, .external_lex_state = 2}, - [2057] = {.lex_state = 38, .external_lex_state = 2}, - [2058] = {.lex_state = 203, .external_lex_state = 2}, - [2059] = {.lex_state = 203, .external_lex_state = 2}, - [2060] = {.lex_state = 203, .external_lex_state = 2}, - [2061] = {.lex_state = 203, .external_lex_state = 2}, - [2062] = {.lex_state = 203, .external_lex_state = 2}, - [2063] = {.lex_state = 203, .external_lex_state = 2}, - [2064] = {.lex_state = 203, .external_lex_state = 2}, - [2065] = {.lex_state = 203, .external_lex_state = 2}, - [2066] = {.lex_state = 203, .external_lex_state = 2}, - [2067] = {.lex_state = 203, .external_lex_state = 2}, - [2068] = {.lex_state = 203, .external_lex_state = 2}, - [2069] = {.lex_state = 203, .external_lex_state = 5}, - [2070] = {.lex_state = 203, .external_lex_state = 2}, - [2071] = {.lex_state = 34, .external_lex_state = 5}, - [2072] = {.lex_state = 34, .external_lex_state = 5}, - [2073] = {.lex_state = 203, .external_lex_state = 2}, - [2074] = {.lex_state = 203, .external_lex_state = 2}, - [2075] = {.lex_state = 203, .external_lex_state = 2}, - [2076] = {.lex_state = 203, .external_lex_state = 2}, - [2077] = {.lex_state = 203, .external_lex_state = 2}, - [2078] = {.lex_state = 38, .external_lex_state = 2}, - [2079] = {.lex_state = 203, .external_lex_state = 2}, - [2080] = {.lex_state = 203, .external_lex_state = 2}, - [2081] = {.lex_state = 203, .external_lex_state = 2}, - [2082] = {.lex_state = 203, .external_lex_state = 2}, - [2083] = {.lex_state = 203, .external_lex_state = 5}, - [2084] = {.lex_state = 203, .external_lex_state = 2}, - [2085] = {.lex_state = 203, .external_lex_state = 2}, - [2086] = {.lex_state = 203, .external_lex_state = 2}, - [2087] = {.lex_state = 34, .external_lex_state = 2}, - [2088] = {.lex_state = 34, .external_lex_state = 2}, - [2089] = {.lex_state = 34, .external_lex_state = 5}, + [2036] = {.lex_state = 252, .external_lex_state = 2}, + [2037] = {.lex_state = 252, .external_lex_state = 2}, + [2038] = {.lex_state = 34, .external_lex_state = 2}, + [2039] = {.lex_state = 252, .external_lex_state = 2}, + [2040] = {.lex_state = 252, .external_lex_state = 2}, + [2041] = {.lex_state = 252, .external_lex_state = 2}, + [2042] = {.lex_state = 252, .external_lex_state = 2}, + [2043] = {.lex_state = 34, .external_lex_state = 5}, + [2044] = {.lex_state = 44, .external_lex_state = 2}, + [2045] = {.lex_state = 34, .external_lex_state = 2}, + [2046] = {.lex_state = 34, .external_lex_state = 5}, + [2047] = {.lex_state = 252, .external_lex_state = 2}, + [2048] = {.lex_state = 252, .external_lex_state = 5}, + [2049] = {.lex_state = 252, .external_lex_state = 5}, + [2050] = {.lex_state = 252, .external_lex_state = 2}, + [2051] = {.lex_state = 252, .external_lex_state = 2}, + [2052] = {.lex_state = 252, .external_lex_state = 2}, + [2053] = {.lex_state = 252, .external_lex_state = 5}, + [2054] = {.lex_state = 34, .external_lex_state = 2}, + [2055] = {.lex_state = 252, .external_lex_state = 2}, + [2056] = {.lex_state = 252, .external_lex_state = 2}, + [2057] = {.lex_state = 252, .external_lex_state = 2}, + [2058] = {.lex_state = 252, .external_lex_state = 2}, + [2059] = {.lex_state = 252, .external_lex_state = 2}, + [2060] = {.lex_state = 252, .external_lex_state = 2}, + [2061] = {.lex_state = 252, .external_lex_state = 2}, + [2062] = {.lex_state = 252, .external_lex_state = 5}, + [2063] = {.lex_state = 252, .external_lex_state = 2}, + [2064] = {.lex_state = 34, .external_lex_state = 2}, + [2065] = {.lex_state = 252, .external_lex_state = 2}, + [2066] = {.lex_state = 30, .external_lex_state = 2}, + [2067] = {.lex_state = 39, .external_lex_state = 2}, + [2068] = {.lex_state = 252, .external_lex_state = 5}, + [2069] = {.lex_state = 252, .external_lex_state = 2}, + [2070] = {.lex_state = 252, .external_lex_state = 5}, + [2071] = {.lex_state = 252, .external_lex_state = 5}, + [2072] = {.lex_state = 252, .external_lex_state = 2}, + [2073] = {.lex_state = 252, .external_lex_state = 2}, + [2074] = {.lex_state = 252, .external_lex_state = 2}, + [2075] = {.lex_state = 252, .external_lex_state = 2}, + [2076] = {.lex_state = 252, .external_lex_state = 2}, + [2077] = {.lex_state = 252, .external_lex_state = 2}, + [2078] = {.lex_state = 34, .external_lex_state = 5}, + [2079] = {.lex_state = 3, .external_lex_state = 2}, + [2080] = {.lex_state = 252, .external_lex_state = 2}, + [2081] = {.lex_state = 34, .external_lex_state = 5}, + [2082] = {.lex_state = 252, .external_lex_state = 5}, + [2083] = {.lex_state = 252, .external_lex_state = 2}, + [2084] = {.lex_state = 252, .external_lex_state = 2}, + [2085] = {.lex_state = 252, .external_lex_state = 2}, + [2086] = {.lex_state = 252, .external_lex_state = 2}, + [2087] = {.lex_state = 252, .external_lex_state = 2}, + [2088] = {.lex_state = 252, .external_lex_state = 2}, + [2089] = {.lex_state = 252, .external_lex_state = 2}, [2090] = {.lex_state = 34, .external_lex_state = 5}, - [2091] = {.lex_state = 203, .external_lex_state = 2}, - [2092] = {.lex_state = 203, .external_lex_state = 5}, - [2093] = {.lex_state = 203, .external_lex_state = 2}, - [2094] = {.lex_state = 203, .external_lex_state = 2}, - [2095] = {.lex_state = 40, .external_lex_state = 7}, - [2096] = {.lex_state = 38, .external_lex_state = 2}, - [2097] = {.lex_state = 203, .external_lex_state = 2}, - [2098] = {.lex_state = 203, .external_lex_state = 2}, - [2099] = {.lex_state = 203, .external_lex_state = 2}, - [2100] = {.lex_state = 203, .external_lex_state = 2}, - [2101] = {.lex_state = 203, .external_lex_state = 2}, - [2102] = {.lex_state = 203, .external_lex_state = 2}, - [2103] = {.lex_state = 203, .external_lex_state = 2}, - [2104] = {.lex_state = 203, .external_lex_state = 2}, - [2105] = {.lex_state = 203, .external_lex_state = 2}, - [2106] = {.lex_state = 41, .external_lex_state = 7}, - [2107] = {.lex_state = 203, .external_lex_state = 2}, - [2108] = {.lex_state = 203, .external_lex_state = 5}, - [2109] = {.lex_state = 203, .external_lex_state = 2}, - [2110] = {.lex_state = 38, .external_lex_state = 2}, - [2111] = {.lex_state = 3, .external_lex_state = 2}, - [2112] = {.lex_state = 203, .external_lex_state = 2}, - [2113] = {.lex_state = 203, .external_lex_state = 2}, - [2114] = {.lex_state = 203, .external_lex_state = 2}, - [2115] = {.lex_state = 203, .external_lex_state = 2}, - [2116] = {.lex_state = 203, .external_lex_state = 5}, - [2117] = {.lex_state = 203, .external_lex_state = 5}, - [2118] = {.lex_state = 203, .external_lex_state = 2}, - [2119] = {.lex_state = 203, .external_lex_state = 5}, - [2120] = {.lex_state = 34, .external_lex_state = 2}, - [2121] = {.lex_state = 34, .external_lex_state = 2}, - [2122] = {.lex_state = 203, .external_lex_state = 5}, - [2123] = {.lex_state = 203, .external_lex_state = 5}, - [2124] = {.lex_state = 203, .external_lex_state = 2}, - [2125] = {.lex_state = 203, .external_lex_state = 2}, - [2126] = {.lex_state = 203, .external_lex_state = 2}, - [2127] = {.lex_state = 203, .external_lex_state = 2}, - [2128] = {.lex_state = 203, .external_lex_state = 5}, - [2129] = {.lex_state = 203, .external_lex_state = 2}, - [2130] = {.lex_state = 203, .external_lex_state = 2}, - [2131] = {.lex_state = 34, .external_lex_state = 2}, - [2132] = {.lex_state = 203, .external_lex_state = 2}, - [2133] = {.lex_state = 203, .external_lex_state = 2}, - [2134] = {.lex_state = 203, .external_lex_state = 2}, - [2135] = {.lex_state = 203, .external_lex_state = 2}, - [2136] = {.lex_state = 30, .external_lex_state = 2}, + [2091] = {.lex_state = 252, .external_lex_state = 2}, + [2092] = {.lex_state = 34, .external_lex_state = 5}, + [2093] = {.lex_state = 252, .external_lex_state = 2}, + [2094] = {.lex_state = 252, .external_lex_state = 2}, + [2095] = {.lex_state = 252, .external_lex_state = 5}, + [2096] = {.lex_state = 252, .external_lex_state = 2}, + [2097] = {.lex_state = 30, .external_lex_state = 2}, + [2098] = {.lex_state = 39, .external_lex_state = 2}, + [2099] = {.lex_state = 252, .external_lex_state = 2}, + [2100] = {.lex_state = 252, .external_lex_state = 2}, + [2101] = {.lex_state = 252, .external_lex_state = 2}, + [2102] = {.lex_state = 252, .external_lex_state = 5}, + [2103] = {.lex_state = 252, .external_lex_state = 2}, + [2104] = {.lex_state = 252, .external_lex_state = 2}, + [2105] = {.lex_state = 252, .external_lex_state = 2}, + [2106] = {.lex_state = 252, .external_lex_state = 2}, + [2107] = {.lex_state = 252, .external_lex_state = 2}, + [2108] = {.lex_state = 34, .external_lex_state = 2}, + [2109] = {.lex_state = 34, .external_lex_state = 2}, + [2110] = {.lex_state = 252, .external_lex_state = 2}, + [2111] = {.lex_state = 252, .external_lex_state = 5}, + [2112] = {.lex_state = 252, .external_lex_state = 2}, + [2113] = {.lex_state = 252, .external_lex_state = 2}, + [2114] = {.lex_state = 39, .external_lex_state = 2}, + [2115] = {.lex_state = 252, .external_lex_state = 2}, + [2116] = {.lex_state = 252, .external_lex_state = 2}, + [2117] = {.lex_state = 34, .external_lex_state = 5}, + [2118] = {.lex_state = 34, .external_lex_state = 5}, + [2119] = {.lex_state = 252, .external_lex_state = 5}, + [2120] = {.lex_state = 252, .external_lex_state = 2}, + [2121] = {.lex_state = 252, .external_lex_state = 2}, + [2122] = {.lex_state = 34, .external_lex_state = 2}, + [2123] = {.lex_state = 252, .external_lex_state = 2}, + [2124] = {.lex_state = 252, .external_lex_state = 2}, + [2125] = {.lex_state = 252, .external_lex_state = 2}, + [2126] = {.lex_state = 30, .external_lex_state = 2}, + [2127] = {.lex_state = 252, .external_lex_state = 2}, + [2128] = {.lex_state = 252, .external_lex_state = 2}, + [2129] = {.lex_state = 252, .external_lex_state = 2}, + [2130] = {.lex_state = 42, .external_lex_state = 7}, + [2131] = {.lex_state = 252, .external_lex_state = 2}, + [2132] = {.lex_state = 252, .external_lex_state = 2}, + [2133] = {.lex_state = 252, .external_lex_state = 2}, + [2134] = {.lex_state = 252, .external_lex_state = 2}, + [2135] = {.lex_state = 34, .external_lex_state = 2}, + [2136] = {.lex_state = 252, .external_lex_state = 2}, [2137] = {.lex_state = 34, .external_lex_state = 2}, - [2138] = {.lex_state = 203, .external_lex_state = 2}, - [2139] = {.lex_state = 34, .external_lex_state = 5}, - [2140] = {.lex_state = 203, .external_lex_state = 2}, - [2141] = {.lex_state = 34, .external_lex_state = 5}, - [2142] = {.lex_state = 203, .external_lex_state = 2}, - [2143] = {.lex_state = 34, .external_lex_state = 5}, - [2144] = {.lex_state = 34, .external_lex_state = 5}, - [2145] = {.lex_state = 203, .external_lex_state = 5}, - [2146] = {.lex_state = 203, .external_lex_state = 2}, - [2147] = {.lex_state = 203, .external_lex_state = 2}, - [2148] = {.lex_state = 38, .external_lex_state = 2}, - [2149] = {.lex_state = 34, .external_lex_state = 2}, - [2150] = {.lex_state = 30, .external_lex_state = 2}, - [2151] = {.lex_state = 203, .external_lex_state = 2}, - [2152] = {.lex_state = 203, .external_lex_state = 2}, - [2153] = {.lex_state = 203, .external_lex_state = 5}, - [2154] = {.lex_state = 203, .external_lex_state = 2}, - [2155] = {.lex_state = 203, .external_lex_state = 2}, - [2156] = {.lex_state = 203, .external_lex_state = 2}, - [2157] = {.lex_state = 203, .external_lex_state = 2}, - [2158] = {.lex_state = 203, .external_lex_state = 2}, - [2159] = {.lex_state = 203, .external_lex_state = 2}, - [2160] = {.lex_state = 203, .external_lex_state = 2}, - [2161] = {.lex_state = 203, .external_lex_state = 5}, + [2138] = {.lex_state = 252, .external_lex_state = 2}, + [2139] = {.lex_state = 252, .external_lex_state = 2}, + [2140] = {.lex_state = 30, .external_lex_state = 2}, + [2141] = {.lex_state = 252, .external_lex_state = 2}, + [2142] = {.lex_state = 252, .external_lex_state = 2}, + [2143] = {.lex_state = 252, .external_lex_state = 2}, + [2144] = {.lex_state = 252, .external_lex_state = 5}, + [2145] = {.lex_state = 252, .external_lex_state = 2}, + [2146] = {.lex_state = 34, .external_lex_state = 2}, + [2147] = {.lex_state = 252, .external_lex_state = 2}, + [2148] = {.lex_state = 252, .external_lex_state = 2}, + [2149] = {.lex_state = 252, .external_lex_state = 2}, + [2150] = {.lex_state = 252, .external_lex_state = 2}, + [2151] = {.lex_state = 252, .external_lex_state = 2}, + [2152] = {.lex_state = 34, .external_lex_state = 2}, + [2153] = {.lex_state = 252, .external_lex_state = 5}, + [2154] = {.lex_state = 252, .external_lex_state = 2}, + [2155] = {.lex_state = 252, .external_lex_state = 2}, + [2156] = {.lex_state = 252, .external_lex_state = 2}, + [2157] = {.lex_state = 39, .external_lex_state = 2}, + [2158] = {.lex_state = 252, .external_lex_state = 5}, + [2159] = {.lex_state = 252, .external_lex_state = 5}, + [2160] = {.lex_state = 39, .external_lex_state = 2}, + [2161] = {.lex_state = 34, .external_lex_state = 2}, [2162] = {.lex_state = 34, .external_lex_state = 2}, - [2163] = {.lex_state = 203, .external_lex_state = 5}, - [2164] = {.lex_state = 203, .external_lex_state = 2}, - [2165] = {.lex_state = 203, .external_lex_state = 2}, - [2166] = {.lex_state = 203, .external_lex_state = 2}, - [2167] = {.lex_state = 203, .external_lex_state = 2}, - [2168] = {.lex_state = 203, .external_lex_state = 2}, - [2169] = {.lex_state = 203, .external_lex_state = 2}, - [2170] = {.lex_state = 203, .external_lex_state = 5}, - [2171] = {.lex_state = 203, .external_lex_state = 5}, - [2172] = {.lex_state = 203, .external_lex_state = 5}, - [2173] = {.lex_state = 203, .external_lex_state = 2}, - [2174] = {.lex_state = 203, .external_lex_state = 5}, - [2175] = {.lex_state = 203, .external_lex_state = 2}, - [2176] = {.lex_state = 203, .external_lex_state = 2}, - [2177] = {.lex_state = 203, .external_lex_state = 2}, - [2178] = {.lex_state = 203, .external_lex_state = 2}, - [2179] = {.lex_state = 203, .external_lex_state = 5}, - [2180] = {.lex_state = 34, .external_lex_state = 2}, - [2181] = {.lex_state = 203, .external_lex_state = 5}, - [2182] = {.lex_state = 203, .external_lex_state = 2}, - [2183] = {.lex_state = 3, .external_lex_state = 2}, - [2184] = {.lex_state = 203, .external_lex_state = 2}, - [2185] = {.lex_state = 51, .external_lex_state = 2}, - [2186] = {.lex_state = 203, .external_lex_state = 2}, - [2187] = {.lex_state = 203, .external_lex_state = 5}, - [2188] = {.lex_state = 203, .external_lex_state = 2}, - [2189] = {.lex_state = 51, .external_lex_state = 2}, - [2190] = {.lex_state = 203, .external_lex_state = 5}, - [2191] = {.lex_state = 34, .external_lex_state = 2}, - [2192] = {.lex_state = 203, .external_lex_state = 2}, - [2193] = {.lex_state = 203, .external_lex_state = 2}, - [2194] = {.lex_state = 203, .external_lex_state = 5}, - [2195] = {.lex_state = 203, .external_lex_state = 5}, - [2196] = {.lex_state = 203, .external_lex_state = 2}, - [2197] = {.lex_state = 34, .external_lex_state = 2}, - [2198] = {.lex_state = 34, .external_lex_state = 2}, - [2199] = {.lex_state = 203, .external_lex_state = 2}, - [2200] = {.lex_state = 203, .external_lex_state = 2}, - [2201] = {.lex_state = 203, .external_lex_state = 5}, - [2202] = {.lex_state = 203, .external_lex_state = 2}, - [2203] = {.lex_state = 203, .external_lex_state = 2}, - [2204] = {.lex_state = 203, .external_lex_state = 2}, - [2205] = {.lex_state = 203, .external_lex_state = 2}, - [2206] = {.lex_state = 203, .external_lex_state = 2}, - [2207] = {.lex_state = 203, .external_lex_state = 2}, - [2208] = {.lex_state = 203, .external_lex_state = 2}, - [2209] = {.lex_state = 203, .external_lex_state = 2}, - [2210] = {.lex_state = 203, .external_lex_state = 2}, - [2211] = {.lex_state = 203, .external_lex_state = 2}, - [2212] = {.lex_state = 203, .external_lex_state = 5}, - [2213] = {.lex_state = 203, .external_lex_state = 5}, - [2214] = {.lex_state = 34, .external_lex_state = 2}, - [2215] = {.lex_state = 203, .external_lex_state = 5}, - [2216] = {.lex_state = 203, .external_lex_state = 2}, - [2217] = {.lex_state = 203, .external_lex_state = 5}, - [2218] = {.lex_state = 203, .external_lex_state = 5}, - [2219] = {.lex_state = 203, .external_lex_state = 2}, - [2220] = {.lex_state = 203, .external_lex_state = 2}, - [2221] = {.lex_state = 203, .external_lex_state = 2}, - [2222] = {.lex_state = 38, .external_lex_state = 2}, - [2223] = {.lex_state = 203, .external_lex_state = 2}, - [2224] = {.lex_state = 203, .external_lex_state = 2}, - [2225] = {.lex_state = 34, .external_lex_state = 2}, - [2226] = {.lex_state = 203, .external_lex_state = 2}, - [2227] = {.lex_state = 203, .external_lex_state = 2}, - [2228] = {.lex_state = 38, .external_lex_state = 2}, - [2229] = {.lex_state = 203, .external_lex_state = 2}, - [2230] = {.lex_state = 203, .external_lex_state = 2}, - [2231] = {.lex_state = 203, .external_lex_state = 5}, - [2232] = {.lex_state = 203, .external_lex_state = 5}, - [2233] = {.lex_state = 203, .external_lex_state = 5}, - [2234] = {.lex_state = 203, .external_lex_state = 5}, - [2235] = {.lex_state = 203, .external_lex_state = 5}, - [2236] = {.lex_state = 203, .external_lex_state = 2}, - [2237] = {.lex_state = 203, .external_lex_state = 2}, - [2238] = {.lex_state = 203, .external_lex_state = 5}, - [2239] = {.lex_state = 203, .external_lex_state = 5}, - [2240] = {.lex_state = 203, .external_lex_state = 5}, - [2241] = {.lex_state = 203, .external_lex_state = 2}, - [2242] = {.lex_state = 203, .external_lex_state = 2}, - [2243] = {.lex_state = 203, .external_lex_state = 2}, - [2244] = {.lex_state = 203, .external_lex_state = 2}, - [2245] = {.lex_state = 203, .external_lex_state = 2}, - [2246] = {.lex_state = 203, .external_lex_state = 2}, - [2247] = {.lex_state = 34, .external_lex_state = 2}, - [2248] = {.lex_state = 203, .external_lex_state = 2}, - [2249] = {.lex_state = 203, .external_lex_state = 2}, - [2250] = {.lex_state = 203, .external_lex_state = 2}, - [2251] = {.lex_state = 203, .external_lex_state = 2}, - [2252] = {.lex_state = 203, .external_lex_state = 2}, - [2253] = {.lex_state = 203, .external_lex_state = 2}, - [2254] = {.lex_state = 203, .external_lex_state = 2}, - [2255] = {.lex_state = 203, .external_lex_state = 2}, - [2256] = {.lex_state = 203, .external_lex_state = 2}, - [2257] = {.lex_state = 203, .external_lex_state = 2}, - [2258] = {.lex_state = 203, .external_lex_state = 2}, - [2259] = {.lex_state = 203, .external_lex_state = 2}, - [2260] = {.lex_state = 203, .external_lex_state = 2}, - [2261] = {.lex_state = 203, .external_lex_state = 2}, - [2262] = {.lex_state = 203, .external_lex_state = 2}, - [2263] = {.lex_state = 38, .external_lex_state = 2}, - [2264] = {.lex_state = 203, .external_lex_state = 2}, - [2265] = {.lex_state = 38, .external_lex_state = 2}, - [2266] = {.lex_state = 203, .external_lex_state = 2}, - [2267] = {.lex_state = 203, .external_lex_state = 2}, - [2268] = {.lex_state = 203, .external_lex_state = 2}, - [2269] = {.lex_state = 203, .external_lex_state = 2}, - [2270] = {.lex_state = 203, .external_lex_state = 2}, - [2271] = {.lex_state = 203, .external_lex_state = 2}, - [2272] = {.lex_state = 203, .external_lex_state = 2}, - [2273] = {.lex_state = 203, .external_lex_state = 2}, - [2274] = {.lex_state = 203, .external_lex_state = 2}, - [2275] = {.lex_state = 203, .external_lex_state = 2}, - [2276] = {.lex_state = 203, .external_lex_state = 2}, - [2277] = {.lex_state = 203, .external_lex_state = 2}, - [2278] = {.lex_state = 203, .external_lex_state = 2}, - [2279] = {.lex_state = 203, .external_lex_state = 2}, - [2280] = {.lex_state = 203, .external_lex_state = 2}, - [2281] = {.lex_state = 203, .external_lex_state = 2}, - [2282] = {.lex_state = 203, .external_lex_state = 2}, - [2283] = {.lex_state = 38, .external_lex_state = 2}, - [2284] = {.lex_state = 203, .external_lex_state = 2}, - [2285] = {.lex_state = 203, .external_lex_state = 2}, - [2286] = {.lex_state = 203, .external_lex_state = 2}, - [2287] = {.lex_state = 203, .external_lex_state = 2}, - [2288] = {.lex_state = 203, .external_lex_state = 2}, - [2289] = {.lex_state = 203, .external_lex_state = 2}, - [2290] = {.lex_state = 203, .external_lex_state = 2}, - [2291] = {.lex_state = 203, .external_lex_state = 2}, - [2292] = {.lex_state = 203, .external_lex_state = 2}, - [2293] = {.lex_state = 203, .external_lex_state = 2}, - [2294] = {.lex_state = 203, .external_lex_state = 2}, - [2295] = {.lex_state = 203, .external_lex_state = 2}, - [2296] = {.lex_state = 203, .external_lex_state = 2}, - [2297] = {.lex_state = 203, .external_lex_state = 2}, - [2298] = {.lex_state = 203, .external_lex_state = 2}, - [2299] = {.lex_state = 203, .external_lex_state = 2}, - [2300] = {.lex_state = 203, .external_lex_state = 5}, - [2301] = {.lex_state = 203, .external_lex_state = 2}, - [2302] = {.lex_state = 203, .external_lex_state = 2}, - [2303] = {.lex_state = 203, .external_lex_state = 2}, - [2304] = {.lex_state = 38, .external_lex_state = 2}, - [2305] = {.lex_state = 203, .external_lex_state = 2}, - [2306] = {.lex_state = 203, .external_lex_state = 2}, - [2307] = {.lex_state = 203, .external_lex_state = 2}, - [2308] = {.lex_state = 203, .external_lex_state = 2}, - [2309] = {.lex_state = 203, .external_lex_state = 2}, - [2310] = {.lex_state = 203, .external_lex_state = 2}, - [2311] = {.lex_state = 203, .external_lex_state = 2}, - [2312] = {.lex_state = 203, .external_lex_state = 2}, - [2313] = {.lex_state = 203, .external_lex_state = 2}, - [2314] = {.lex_state = 203, .external_lex_state = 5}, - [2315] = {.lex_state = 203, .external_lex_state = 2}, - [2316] = {.lex_state = 203, .external_lex_state = 2}, - [2317] = {.lex_state = 203, .external_lex_state = 2}, - [2318] = {.lex_state = 203, .external_lex_state = 2}, - [2319] = {.lex_state = 203, .external_lex_state = 5}, - [2320] = {.lex_state = 203, .external_lex_state = 2}, - [2321] = {.lex_state = 203, .external_lex_state = 2}, - [2322] = {.lex_state = 203, .external_lex_state = 5}, - [2323] = {.lex_state = 203, .external_lex_state = 2}, - [2324] = {.lex_state = 203, .external_lex_state = 2}, - [2325] = {.lex_state = 203, .external_lex_state = 2}, - [2326] = {.lex_state = 203, .external_lex_state = 2}, - [2327] = {.lex_state = 34, .external_lex_state = 2}, - [2328] = {.lex_state = 203, .external_lex_state = 2}, - [2329] = {.lex_state = 203, .external_lex_state = 2}, - [2330] = {.lex_state = 203, .external_lex_state = 5}, - [2331] = {.lex_state = 203, .external_lex_state = 5}, - [2332] = {.lex_state = 203, .external_lex_state = 2}, - [2333] = {.lex_state = 203, .external_lex_state = 5}, - [2334] = {.lex_state = 38, .external_lex_state = 2}, - [2335] = {.lex_state = 203, .external_lex_state = 5}, - [2336] = {.lex_state = 203, .external_lex_state = 2}, - [2337] = {.lex_state = 203, .external_lex_state = 2}, - [2338] = {.lex_state = 203, .external_lex_state = 2}, - [2339] = {.lex_state = 203, .external_lex_state = 2}, - [2340] = {.lex_state = 203, .external_lex_state = 2}, - [2341] = {.lex_state = 203, .external_lex_state = 2}, - [2342] = {.lex_state = 203, .external_lex_state = 2}, - [2343] = {.lex_state = 203, .external_lex_state = 2}, - [2344] = {.lex_state = 203, .external_lex_state = 2}, - [2345] = {.lex_state = 203, .external_lex_state = 2}, - [2346] = {.lex_state = 203, .external_lex_state = 2}, - [2347] = {.lex_state = 203, .external_lex_state = 2}, - [2348] = {.lex_state = 203, .external_lex_state = 2}, - [2349] = {.lex_state = 203, .external_lex_state = 2}, - [2350] = {.lex_state = 203, .external_lex_state = 2}, - [2351] = {.lex_state = 203, .external_lex_state = 2}, - [2352] = {.lex_state = 203, .external_lex_state = 5}, - [2353] = {.lex_state = 203, .external_lex_state = 2}, - [2354] = {.lex_state = 203, .external_lex_state = 2}, - [2355] = {.lex_state = 203, .external_lex_state = 2}, - [2356] = {.lex_state = 203, .external_lex_state = 5}, - [2357] = {.lex_state = 203, .external_lex_state = 5}, - [2358] = {.lex_state = 203, .external_lex_state = 5}, - [2359] = {.lex_state = 203, .external_lex_state = 2}, - [2360] = {.lex_state = 203, .external_lex_state = 2}, - [2361] = {.lex_state = 203, .external_lex_state = 2}, - [2362] = {.lex_state = 203, .external_lex_state = 2}, - [2363] = {.lex_state = 203, .external_lex_state = 2}, - [2364] = {.lex_state = 203, .external_lex_state = 2}, - [2365] = {.lex_state = 203, .external_lex_state = 2}, - [2366] = {.lex_state = 203, .external_lex_state = 2}, - [2367] = {.lex_state = 203, .external_lex_state = 2}, - [2368] = {.lex_state = 203, .external_lex_state = 2}, - [2369] = {.lex_state = 203, .external_lex_state = 2}, - [2370] = {.lex_state = 203, .external_lex_state = 2}, - [2371] = {.lex_state = 203, .external_lex_state = 5}, - [2372] = {.lex_state = 203, .external_lex_state = 2}, - [2373] = {.lex_state = 203, .external_lex_state = 2}, - [2374] = {.lex_state = 203, .external_lex_state = 2}, - [2375] = {.lex_state = 203, .external_lex_state = 2}, - [2376] = {.lex_state = 203, .external_lex_state = 2}, - [2377] = {.lex_state = 203, .external_lex_state = 2}, - [2378] = {.lex_state = 203, .external_lex_state = 2}, - [2379] = {.lex_state = 203, .external_lex_state = 2}, - [2380] = {.lex_state = 38, .external_lex_state = 2}, - [2381] = {.lex_state = 203, .external_lex_state = 2}, - [2382] = {.lex_state = 38, .external_lex_state = 2}, - [2383] = {.lex_state = 203, .external_lex_state = 2}, - [2384] = {.lex_state = 203, .external_lex_state = 2}, - [2385] = {.lex_state = 203, .external_lex_state = 2}, - [2386] = {.lex_state = 203, .external_lex_state = 2}, - [2387] = {.lex_state = 203, .external_lex_state = 2}, - [2388] = {.lex_state = 203, .external_lex_state = 2}, - [2389] = {.lex_state = 34, .external_lex_state = 2}, - [2390] = {.lex_state = 203, .external_lex_state = 2}, - [2391] = {.lex_state = 203, .external_lex_state = 2}, - [2392] = {.lex_state = 203, .external_lex_state = 2}, - [2393] = {.lex_state = 203, .external_lex_state = 2}, - [2394] = {.lex_state = 203, .external_lex_state = 2}, - [2395] = {.lex_state = 203, .external_lex_state = 2}, - [2396] = {.lex_state = 203, .external_lex_state = 2}, - [2397] = {.lex_state = 203, .external_lex_state = 2}, - [2398] = {.lex_state = 203, .external_lex_state = 2}, - [2399] = {.lex_state = 203, .external_lex_state = 2}, - [2400] = {.lex_state = 203, .external_lex_state = 5}, - [2401] = {.lex_state = 203, .external_lex_state = 2}, - [2402] = {.lex_state = 203, .external_lex_state = 2}, - [2403] = {.lex_state = 203, .external_lex_state = 2}, - [2404] = {.lex_state = 203, .external_lex_state = 2}, - [2405] = {.lex_state = 203, .external_lex_state = 2}, - [2406] = {.lex_state = 203, .external_lex_state = 2}, - [2407] = {.lex_state = 203, .external_lex_state = 2}, - [2408] = {.lex_state = 203, .external_lex_state = 2}, - [2409] = {.lex_state = 203, .external_lex_state = 2}, - [2410] = {.lex_state = 203, .external_lex_state = 2}, - [2411] = {.lex_state = 203, .external_lex_state = 2}, - [2412] = {.lex_state = 203, .external_lex_state = 2}, - [2413] = {.lex_state = 203, .external_lex_state = 2}, - [2414] = {.lex_state = 203, .external_lex_state = 5}, - [2415] = {.lex_state = 203, .external_lex_state = 2}, - [2416] = {.lex_state = 203, .external_lex_state = 2}, - [2417] = {.lex_state = 38, .external_lex_state = 2}, - [2418] = {.lex_state = 203, .external_lex_state = 2}, - [2419] = {.lex_state = 203, .external_lex_state = 2}, - [2420] = {.lex_state = 203, .external_lex_state = 2}, - [2421] = {.lex_state = 203, .external_lex_state = 5}, - [2422] = {.lex_state = 203, .external_lex_state = 2}, - [2423] = {.lex_state = 203, .external_lex_state = 2}, - [2424] = {.lex_state = 203, .external_lex_state = 2}, - [2425] = {.lex_state = 203, .external_lex_state = 2}, - [2426] = {.lex_state = 203, .external_lex_state = 2}, - [2427] = {.lex_state = 203, .external_lex_state = 5}, - [2428] = {.lex_state = 203, .external_lex_state = 2}, - [2429] = {.lex_state = 203, .external_lex_state = 5}, - [2430] = {.lex_state = 203, .external_lex_state = 2}, - [2431] = {.lex_state = 203, .external_lex_state = 5}, - [2432] = {.lex_state = 203, .external_lex_state = 5}, - [2433] = {.lex_state = 203, .external_lex_state = 2}, - [2434] = {.lex_state = 203, .external_lex_state = 2}, - [2435] = {.lex_state = 203, .external_lex_state = 2}, - [2436] = {.lex_state = 203, .external_lex_state = 2}, - [2437] = {.lex_state = 203, .external_lex_state = 2}, - [2438] = {.lex_state = 203, .external_lex_state = 2}, - [2439] = {.lex_state = 3, .external_lex_state = 2}, - [2440] = {.lex_state = 203, .external_lex_state = 5}, - [2441] = {.lex_state = 203, .external_lex_state = 5}, - [2442] = {.lex_state = 203, .external_lex_state = 5}, - [2443] = {.lex_state = 203, .external_lex_state = 2}, - [2444] = {.lex_state = 203, .external_lex_state = 5}, - [2445] = {.lex_state = 203, .external_lex_state = 2}, - [2446] = {.lex_state = 203, .external_lex_state = 5}, - [2447] = {.lex_state = 203, .external_lex_state = 2}, - [2448] = {.lex_state = 203, .external_lex_state = 2}, - [2449] = {.lex_state = 203, .external_lex_state = 2}, - [2450] = {.lex_state = 203, .external_lex_state = 2}, - [2451] = {.lex_state = 203, .external_lex_state = 2}, - [2452] = {.lex_state = 203, .external_lex_state = 2}, - [2453] = {.lex_state = 203, .external_lex_state = 2}, - [2454] = {.lex_state = 203, .external_lex_state = 5}, - [2455] = {.lex_state = 203, .external_lex_state = 2}, - [2456] = {.lex_state = 203, .external_lex_state = 5}, - [2457] = {.lex_state = 203, .external_lex_state = 2}, - [2458] = {.lex_state = 203, .external_lex_state = 2}, - [2459] = {.lex_state = 203, .external_lex_state = 5}, - [2460] = {.lex_state = 203, .external_lex_state = 5}, - [2461] = {.lex_state = 203, .external_lex_state = 5}, - [2462] = {.lex_state = 203, .external_lex_state = 2}, - [2463] = {.lex_state = 203, .external_lex_state = 2}, - [2464] = {.lex_state = 203, .external_lex_state = 2}, - [2465] = {.lex_state = 203, .external_lex_state = 2}, - [2466] = {.lex_state = 203, .external_lex_state = 2}, - [2467] = {.lex_state = 203, .external_lex_state = 2}, - [2468] = {.lex_state = 203, .external_lex_state = 2}, - [2469] = {.lex_state = 203, .external_lex_state = 2}, - [2470] = {.lex_state = 203, .external_lex_state = 2}, - [2471] = {.lex_state = 203, .external_lex_state = 2}, - [2472] = {.lex_state = 203, .external_lex_state = 2}, - [2473] = {.lex_state = 203, .external_lex_state = 2}, - [2474] = {.lex_state = 203, .external_lex_state = 2}, - [2475] = {.lex_state = 203, .external_lex_state = 2}, - [2476] = {.lex_state = 203, .external_lex_state = 2}, - [2477] = {.lex_state = 203, .external_lex_state = 2}, - [2478] = {.lex_state = 203, .external_lex_state = 2}, - [2479] = {.lex_state = 203, .external_lex_state = 2}, - [2480] = {.lex_state = 203, .external_lex_state = 2}, - [2481] = {.lex_state = 203, .external_lex_state = 2}, - [2482] = {.lex_state = 203, .external_lex_state = 2}, - [2483] = {.lex_state = 203, .external_lex_state = 2}, - [2484] = {.lex_state = 203, .external_lex_state = 2}, - [2485] = {.lex_state = 203, .external_lex_state = 5}, - [2486] = {.lex_state = 203, .external_lex_state = 2}, - [2487] = {.lex_state = 203, .external_lex_state = 2}, - [2488] = {.lex_state = 203, .external_lex_state = 2}, - [2489] = {.lex_state = 203, .external_lex_state = 2}, - [2490] = {.lex_state = 203, .external_lex_state = 2}, - [2491] = {.lex_state = 203, .external_lex_state = 2}, - [2492] = {.lex_state = 203, .external_lex_state = 2}, - [2493] = {.lex_state = 203, .external_lex_state = 2}, - [2494] = {.lex_state = 203, .external_lex_state = 2}, - [2495] = {.lex_state = 203, .external_lex_state = 2}, - [2496] = {.lex_state = 203, .external_lex_state = 2}, - [2497] = {.lex_state = 203, .external_lex_state = 2}, - [2498] = {.lex_state = 203, .external_lex_state = 2}, - [2499] = {.lex_state = 203, .external_lex_state = 2}, - [2500] = {.lex_state = 38, .external_lex_state = 2}, - [2501] = {.lex_state = 203, .external_lex_state = 2}, - [2502] = {.lex_state = 203, .external_lex_state = 5}, - [2503] = {.lex_state = 203, .external_lex_state = 2}, - [2504] = {.lex_state = 203, .external_lex_state = 2}, - [2505] = {.lex_state = 203, .external_lex_state = 5}, - [2506] = {.lex_state = 203, .external_lex_state = 2}, - [2507] = {.lex_state = 203, .external_lex_state = 2}, - [2508] = {.lex_state = 203, .external_lex_state = 2}, - [2509] = {.lex_state = 203, .external_lex_state = 2}, - [2510] = {.lex_state = 203, .external_lex_state = 2}, - [2511] = {.lex_state = 203, .external_lex_state = 2}, - [2512] = {.lex_state = 203, .external_lex_state = 2}, - [2513] = {.lex_state = 203, .external_lex_state = 2}, - [2514] = {.lex_state = 203, .external_lex_state = 2}, - [2515] = {.lex_state = 203, .external_lex_state = 2}, - [2516] = {.lex_state = 203, .external_lex_state = 2}, - [2517] = {.lex_state = 203, .external_lex_state = 2}, - [2518] = {.lex_state = 34, .external_lex_state = 2}, - [2519] = {.lex_state = 203, .external_lex_state = 2}, - [2520] = {.lex_state = 203, .external_lex_state = 2}, - [2521] = {.lex_state = 203, .external_lex_state = 2}, - [2522] = {.lex_state = 203, .external_lex_state = 2}, - [2523] = {.lex_state = 203, .external_lex_state = 2}, - [2524] = {.lex_state = 203, .external_lex_state = 2}, - [2525] = {.lex_state = 203, .external_lex_state = 2}, - [2526] = {.lex_state = 203, .external_lex_state = 2}, - [2527] = {.lex_state = 203, .external_lex_state = 2}, - [2528] = {.lex_state = 203, .external_lex_state = 2}, - [2529] = {.lex_state = 203, .external_lex_state = 2}, - [2530] = {.lex_state = 203, .external_lex_state = 2}, - [2531] = {.lex_state = 203, .external_lex_state = 2}, - [2532] = {.lex_state = 203, .external_lex_state = 2}, - [2533] = {.lex_state = 203, .external_lex_state = 2}, - [2534] = {.lex_state = 203, .external_lex_state = 2}, - [2535] = {.lex_state = 203, .external_lex_state = 2}, - [2536] = {.lex_state = 203, .external_lex_state = 2}, - [2537] = {.lex_state = 203, .external_lex_state = 2}, - [2538] = {.lex_state = 203, .external_lex_state = 2}, - [2539] = {.lex_state = 203, .external_lex_state = 2}, - [2540] = {.lex_state = 203, .external_lex_state = 2}, - [2541] = {.lex_state = 203, .external_lex_state = 2}, - [2542] = {.lex_state = 203, .external_lex_state = 2}, - [2543] = {.lex_state = 203, .external_lex_state = 2}, - [2544] = {.lex_state = 203, .external_lex_state = 2}, - [2545] = {.lex_state = 203, .external_lex_state = 5}, - [2546] = {.lex_state = 203, .external_lex_state = 2}, - [2547] = {.lex_state = 203, .external_lex_state = 2}, - [2548] = {.lex_state = 203, .external_lex_state = 2}, - [2549] = {.lex_state = 203, .external_lex_state = 2}, - [2550] = {.lex_state = 203, .external_lex_state = 2}, - [2551] = {.lex_state = 203, .external_lex_state = 2}, - [2552] = {.lex_state = 203, .external_lex_state = 2}, - [2553] = {.lex_state = 203, .external_lex_state = 2}, - [2554] = {.lex_state = 203, .external_lex_state = 2}, - [2555] = {.lex_state = 203, .external_lex_state = 2}, - [2556] = {.lex_state = 203, .external_lex_state = 2}, - [2557] = {.lex_state = 203, .external_lex_state = 2}, - [2558] = {.lex_state = 203, .external_lex_state = 2}, - [2559] = {.lex_state = 203, .external_lex_state = 2}, - [2560] = {.lex_state = 203, .external_lex_state = 2}, - [2561] = {.lex_state = 203, .external_lex_state = 2}, - [2562] = {.lex_state = 203, .external_lex_state = 2}, - [2563] = {.lex_state = 203, .external_lex_state = 2}, - [2564] = {.lex_state = 203, .external_lex_state = 2}, - [2565] = {.lex_state = 203, .external_lex_state = 2}, - [2566] = {.lex_state = 203, .external_lex_state = 2}, - [2567] = {.lex_state = 34, .external_lex_state = 2}, - [2568] = {.lex_state = 203, .external_lex_state = 2}, - [2569] = {.lex_state = 203, .external_lex_state = 2}, - [2570] = {.lex_state = 203, .external_lex_state = 2}, - [2571] = {.lex_state = 203, .external_lex_state = 2}, - [2572] = {.lex_state = 203, .external_lex_state = 2}, - [2573] = {.lex_state = 203, .external_lex_state = 2}, - [2574] = {.lex_state = 203, .external_lex_state = 2}, - [2575] = {.lex_state = 203, .external_lex_state = 2}, - [2576] = {.lex_state = 203, .external_lex_state = 2}, - [2577] = {.lex_state = 203, .external_lex_state = 2}, - [2578] = {.lex_state = 203, .external_lex_state = 2}, - [2579] = {.lex_state = 203, .external_lex_state = 2}, - [2580] = {.lex_state = 203, .external_lex_state = 2}, - [2581] = {.lex_state = 203, .external_lex_state = 2}, - [2582] = {.lex_state = 203, .external_lex_state = 2}, - [2583] = {.lex_state = 203, .external_lex_state = 2}, - [2584] = {.lex_state = 203, .external_lex_state = 2}, - [2585] = {.lex_state = 203, .external_lex_state = 2}, - [2586] = {.lex_state = 203, .external_lex_state = 2}, - [2587] = {.lex_state = 34, .external_lex_state = 2}, - [2588] = {.lex_state = 203, .external_lex_state = 5}, - [2589] = {.lex_state = 203, .external_lex_state = 2}, - [2590] = {.lex_state = 203, .external_lex_state = 2}, - [2591] = {.lex_state = 203, .external_lex_state = 2}, - [2592] = {.lex_state = 203, .external_lex_state = 2}, - [2593] = {.lex_state = 203, .external_lex_state = 2}, - [2594] = {.lex_state = 203, .external_lex_state = 2}, - [2595] = {.lex_state = 203, .external_lex_state = 2}, - [2596] = {.lex_state = 203, .external_lex_state = 2}, - [2597] = {.lex_state = 203, .external_lex_state = 2}, - [2598] = {.lex_state = 203, .external_lex_state = 2}, - [2599] = {.lex_state = 203, .external_lex_state = 2}, - [2600] = {.lex_state = 203, .external_lex_state = 2}, - [2601] = {.lex_state = 203, .external_lex_state = 2}, - [2602] = {.lex_state = 203, .external_lex_state = 2}, - [2603] = {.lex_state = 203, .external_lex_state = 2}, - [2604] = {.lex_state = 203, .external_lex_state = 2}, - [2605] = {.lex_state = 203, .external_lex_state = 2}, - [2606] = {.lex_state = 203, .external_lex_state = 2}, - [2607] = {.lex_state = 203, .external_lex_state = 2}, - [2608] = {.lex_state = 203, .external_lex_state = 2}, - [2609] = {.lex_state = 203, .external_lex_state = 2}, - [2610] = {.lex_state = 203, .external_lex_state = 2}, - [2611] = {.lex_state = 203, .external_lex_state = 2}, - [2612] = {.lex_state = 203, .external_lex_state = 2}, - [2613] = {.lex_state = 203, .external_lex_state = 2}, - [2614] = {.lex_state = 203, .external_lex_state = 2}, - [2615] = {.lex_state = 203, .external_lex_state = 2}, - [2616] = {.lex_state = 203, .external_lex_state = 2}, - [2617] = {.lex_state = 203, .external_lex_state = 2}, - [2618] = {.lex_state = 203, .external_lex_state = 2}, - [2619] = {.lex_state = 203, .external_lex_state = 2}, - [2620] = {.lex_state = 203, .external_lex_state = 2}, - [2621] = {.lex_state = 203, .external_lex_state = 2}, - [2622] = {.lex_state = 203, .external_lex_state = 2}, - [2623] = {.lex_state = 203, .external_lex_state = 2}, - [2624] = {.lex_state = 203, .external_lex_state = 2}, - [2625] = {.lex_state = 203, .external_lex_state = 2}, - [2626] = {.lex_state = 203, .external_lex_state = 2}, - [2627] = {.lex_state = 203, .external_lex_state = 2}, - [2628] = {.lex_state = 203, .external_lex_state = 2}, - [2629] = {.lex_state = 203, .external_lex_state = 2}, - [2630] = {.lex_state = 203, .external_lex_state = 2}, - [2631] = {.lex_state = 203, .external_lex_state = 2}, - [2632] = {.lex_state = 203, .external_lex_state = 2}, - [2633] = {.lex_state = 203, .external_lex_state = 2}, - [2634] = {.lex_state = 203, .external_lex_state = 2}, - [2635] = {.lex_state = 203, .external_lex_state = 2}, - [2636] = {.lex_state = 203, .external_lex_state = 2}, - [2637] = {.lex_state = 203, .external_lex_state = 2}, - [2638] = {.lex_state = 203, .external_lex_state = 2}, - [2639] = {.lex_state = 203, .external_lex_state = 2}, - [2640] = {.lex_state = 203, .external_lex_state = 2}, - [2641] = {.lex_state = 203, .external_lex_state = 2}, - [2642] = {.lex_state = 203, .external_lex_state = 2}, - [2643] = {.lex_state = 203, .external_lex_state = 2}, - [2644] = {.lex_state = 203, .external_lex_state = 2}, - [2645] = {.lex_state = 203, .external_lex_state = 2}, - [2646] = {.lex_state = 203, .external_lex_state = 2}, - [2647] = {.lex_state = 203, .external_lex_state = 2}, - [2648] = {.lex_state = 203, .external_lex_state = 2}, - [2649] = {.lex_state = 203, .external_lex_state = 2}, - [2650] = {.lex_state = 203, .external_lex_state = 2}, - [2651] = {.lex_state = 203, .external_lex_state = 2}, - [2652] = {.lex_state = 203, .external_lex_state = 2}, - [2653] = {.lex_state = 203, .external_lex_state = 2}, - [2654] = {.lex_state = 203, .external_lex_state = 2}, - [2655] = {.lex_state = 203, .external_lex_state = 2}, - [2656] = {.lex_state = 203, .external_lex_state = 2}, - [2657] = {.lex_state = 203, .external_lex_state = 2}, - [2658] = {.lex_state = 203, .external_lex_state = 2}, - [2659] = {.lex_state = 203, .external_lex_state = 2}, - [2660] = {.lex_state = 203, .external_lex_state = 2}, - [2661] = {.lex_state = 203, .external_lex_state = 2}, - [2662] = {.lex_state = 203, .external_lex_state = 2}, - [2663] = {.lex_state = 203, .external_lex_state = 2}, - [2664] = {.lex_state = 203, .external_lex_state = 2}, - [2665] = {.lex_state = 203, .external_lex_state = 2}, - [2666] = {.lex_state = 203, .external_lex_state = 2}, - [2667] = {.lex_state = 203, .external_lex_state = 2}, - [2668] = {.lex_state = 203, .external_lex_state = 2}, - [2669] = {.lex_state = 203, .external_lex_state = 2}, - [2670] = {.lex_state = 203, .external_lex_state = 2}, - [2671] = {.lex_state = 203, .external_lex_state = 2}, - [2672] = {.lex_state = 203, .external_lex_state = 2}, - [2673] = {.lex_state = 203, .external_lex_state = 2}, - [2674] = {.lex_state = 203, .external_lex_state = 2}, - [2675] = {.lex_state = 203, .external_lex_state = 2}, - [2676] = {.lex_state = 203, .external_lex_state = 2}, - [2677] = {.lex_state = 203, .external_lex_state = 2}, - [2678] = {.lex_state = 34, .external_lex_state = 2}, - [2679] = {.lex_state = 203, .external_lex_state = 2}, - [2680] = {.lex_state = 203, .external_lex_state = 2}, - [2681] = {.lex_state = 203, .external_lex_state = 2}, - [2682] = {.lex_state = 203, .external_lex_state = 2}, - [2683] = {.lex_state = 203, .external_lex_state = 2}, - [2684] = {.lex_state = 203, .external_lex_state = 5}, - [2685] = {.lex_state = 203, .external_lex_state = 2}, - [2686] = {.lex_state = 203, .external_lex_state = 2}, - [2687] = {.lex_state = 4, .external_lex_state = 2}, - [2688] = {.lex_state = 38, .external_lex_state = 2}, - [2689] = {.lex_state = 203, .external_lex_state = 2}, - [2690] = {.lex_state = 34, .external_lex_state = 2}, - [2691] = {.lex_state = 203, .external_lex_state = 2}, - [2692] = {.lex_state = 34, .external_lex_state = 2}, - [2693] = {.lex_state = 4, .external_lex_state = 2}, - [2694] = {.lex_state = 203, .external_lex_state = 2}, - [2695] = {.lex_state = 203, .external_lex_state = 2}, - [2696] = {.lex_state = 203, .external_lex_state = 2}, - [2697] = {.lex_state = 203, .external_lex_state = 2}, - [2698] = {.lex_state = 34, .external_lex_state = 2}, - [2699] = {.lex_state = 203, .external_lex_state = 2}, - [2700] = {.lex_state = 34, .external_lex_state = 2}, - [2701] = {.lex_state = 4, .external_lex_state = 2}, - [2702] = {.lex_state = 203, .external_lex_state = 2}, - [2703] = {.lex_state = 203, .external_lex_state = 2}, - [2704] = {.lex_state = 34, .external_lex_state = 2}, - [2705] = {.lex_state = 4, .external_lex_state = 2}, - [2706] = {.lex_state = 34, .external_lex_state = 2}, - [2707] = {.lex_state = 203, .external_lex_state = 2}, - [2708] = {.lex_state = 203, .external_lex_state = 2}, - [2709] = {.lex_state = 203, .external_lex_state = 2}, - [2710] = {.lex_state = 30, .external_lex_state = 2}, - [2711] = {.lex_state = 203, .external_lex_state = 2}, - [2712] = {.lex_state = 203, .external_lex_state = 2}, - [2713] = {.lex_state = 203, .external_lex_state = 2}, - [2714] = {.lex_state = 203, .external_lex_state = 2}, - [2715] = {.lex_state = 203, .external_lex_state = 2}, - [2716] = {.lex_state = 203, .external_lex_state = 2}, - [2717] = {.lex_state = 34, .external_lex_state = 2}, - [2718] = {.lex_state = 203, .external_lex_state = 2}, - [2719] = {.lex_state = 203, .external_lex_state = 2}, - [2720] = {.lex_state = 203, .external_lex_state = 2}, - [2721] = {.lex_state = 203, .external_lex_state = 2}, - [2722] = {.lex_state = 203, .external_lex_state = 2}, - [2723] = {.lex_state = 203, .external_lex_state = 2}, - [2724] = {.lex_state = 203, .external_lex_state = 2}, - [2725] = {.lex_state = 203, .external_lex_state = 2}, - [2726] = {.lex_state = 203, .external_lex_state = 2}, - [2727] = {.lex_state = 34, .external_lex_state = 2}, - [2728] = {.lex_state = 203, .external_lex_state = 2}, - [2729] = {.lex_state = 203, .external_lex_state = 2}, - [2730] = {.lex_state = 203, .external_lex_state = 2}, - [2731] = {.lex_state = 203, .external_lex_state = 2}, - [2732] = {.lex_state = 203, .external_lex_state = 2}, - [2733] = {.lex_state = 38, .external_lex_state = 2}, - [2734] = {.lex_state = 203, .external_lex_state = 2}, - [2735] = {.lex_state = 203, .external_lex_state = 2}, - [2736] = {.lex_state = 203, .external_lex_state = 2}, - [2737] = {.lex_state = 203, .external_lex_state = 2}, - [2738] = {.lex_state = 203, .external_lex_state = 2}, - [2739] = {.lex_state = 203, .external_lex_state = 2}, - [2740] = {.lex_state = 38, .external_lex_state = 2}, - [2741] = {.lex_state = 38, .external_lex_state = 2}, - [2742] = {.lex_state = 203, .external_lex_state = 2}, - [2743] = {.lex_state = 203, .external_lex_state = 2}, - [2744] = {.lex_state = 203, .external_lex_state = 2}, - [2745] = {.lex_state = 38, .external_lex_state = 2}, - [2746] = {.lex_state = 203, .external_lex_state = 2}, - [2747] = {.lex_state = 203, .external_lex_state = 2}, - [2748] = {.lex_state = 34, .external_lex_state = 2}, - [2749] = {.lex_state = 34, .external_lex_state = 2}, - [2750] = {.lex_state = 203, .external_lex_state = 2}, - [2751] = {.lex_state = 203, .external_lex_state = 2}, - [2752] = {.lex_state = 203, .external_lex_state = 2}, - [2753] = {.lex_state = 38, .external_lex_state = 2}, - [2754] = {.lex_state = 203, .external_lex_state = 2}, - [2755] = {.lex_state = 34, .external_lex_state = 2}, - [2756] = {.lex_state = 203, .external_lex_state = 2}, - [2757] = {.lex_state = 38, .external_lex_state = 2}, - [2758] = {.lex_state = 203, .external_lex_state = 2}, - [2759] = {.lex_state = 203, .external_lex_state = 2}, - [2760] = {.lex_state = 203, .external_lex_state = 2}, - [2761] = {.lex_state = 203, .external_lex_state = 2}, - [2762] = {.lex_state = 203, .external_lex_state = 2}, - [2763] = {.lex_state = 38, .external_lex_state = 2}, - [2764] = {.lex_state = 38, .external_lex_state = 2}, - [2765] = {.lex_state = 203, .external_lex_state = 2}, - [2766] = {.lex_state = 34, .external_lex_state = 2}, - [2767] = {.lex_state = 203, .external_lex_state = 2}, - [2768] = {.lex_state = 203, .external_lex_state = 2}, - [2769] = {.lex_state = 203, .external_lex_state = 2}, - [2770] = {.lex_state = 203, .external_lex_state = 2}, - [2771] = {.lex_state = 38, .external_lex_state = 2}, - [2772] = {.lex_state = 203, .external_lex_state = 2}, - [2773] = {.lex_state = 203, .external_lex_state = 2}, - [2774] = {.lex_state = 34, .external_lex_state = 2}, - [2775] = {.lex_state = 203, .external_lex_state = 2}, - [2776] = {.lex_state = 34, .external_lex_state = 2}, - [2777] = {.lex_state = 34, .external_lex_state = 2}, - [2778] = {.lex_state = 38, .external_lex_state = 2}, - [2779] = {.lex_state = 38, .external_lex_state = 2}, - [2780] = {.lex_state = 203, .external_lex_state = 2}, - [2781] = {.lex_state = 203, .external_lex_state = 2}, - [2782] = {.lex_state = 34, .external_lex_state = 2}, - [2783] = {.lex_state = 203, .external_lex_state = 2}, - [2784] = {.lex_state = 34, .external_lex_state = 2}, - [2785] = {.lex_state = 203, .external_lex_state = 2}, - [2786] = {.lex_state = 203, .external_lex_state = 2}, - [2787] = {.lex_state = 203, .external_lex_state = 2}, - [2788] = {.lex_state = 34, .external_lex_state = 2}, - [2789] = {.lex_state = 34, .external_lex_state = 2}, - [2790] = {.lex_state = 203, .external_lex_state = 2}, - [2791] = {.lex_state = 203, .external_lex_state = 2}, - [2792] = {.lex_state = 34, .external_lex_state = 2}, - [2793] = {.lex_state = 203, .external_lex_state = 2}, - [2794] = {.lex_state = 203, .external_lex_state = 2}, - [2795] = {.lex_state = 34, .external_lex_state = 2}, - [2796] = {.lex_state = 203, .external_lex_state = 2}, - [2797] = {.lex_state = 34, .external_lex_state = 2}, - [2798] = {.lex_state = 34, .external_lex_state = 2}, - [2799] = {.lex_state = 34, .external_lex_state = 2}, - [2800] = {.lex_state = 203, .external_lex_state = 2}, - [2801] = {.lex_state = 38, .external_lex_state = 2}, - [2802] = {.lex_state = 203, .external_lex_state = 2}, - [2803] = {.lex_state = 38, .external_lex_state = 2}, - [2804] = {.lex_state = 30, .external_lex_state = 2}, - [2805] = {.lex_state = 203, .external_lex_state = 2}, - [2806] = {.lex_state = 203, .external_lex_state = 2}, - [2807] = {.lex_state = 203, .external_lex_state = 2}, - [2808] = {.lex_state = 34, .external_lex_state = 2}, - [2809] = {.lex_state = 203, .external_lex_state = 2}, - [2810] = {.lex_state = 34, .external_lex_state = 2}, - [2811] = {.lex_state = 34, .external_lex_state = 2}, - [2812] = {.lex_state = 203, .external_lex_state = 2}, - [2813] = {.lex_state = 203, .external_lex_state = 2}, - [2814] = {.lex_state = 203, .external_lex_state = 2}, - [2815] = {(TSStateId)(-1)}, + [2163] = {.lex_state = 34, .external_lex_state = 2}, + [2164] = {.lex_state = 252, .external_lex_state = 2}, + [2165] = {.lex_state = 252, .external_lex_state = 2}, + [2166] = {.lex_state = 252, .external_lex_state = 2}, + [2167] = {.lex_state = 34, .external_lex_state = 2}, + [2168] = {.lex_state = 252, .external_lex_state = 5}, + [2169] = {.lex_state = 252, .external_lex_state = 2}, + [2170] = {.lex_state = 34, .external_lex_state = 2}, + [2171] = {.lex_state = 34, .external_lex_state = 2}, + [2172] = {.lex_state = 252, .external_lex_state = 5}, + [2173] = {.lex_state = 30, .external_lex_state = 2}, + [2174] = {.lex_state = 30, .external_lex_state = 2}, + [2175] = {.lex_state = 38, .external_lex_state = 2}, + [2176] = {.lex_state = 34, .external_lex_state = 5}, + [2177] = {.lex_state = 34, .external_lex_state = 5}, + [2178] = {.lex_state = 252, .external_lex_state = 2}, + [2179] = {.lex_state = 252, .external_lex_state = 2}, + [2180] = {.lex_state = 252, .external_lex_state = 2}, + [2181] = {.lex_state = 47, .external_lex_state = 7}, + [2182] = {.lex_state = 39, .external_lex_state = 2}, + [2183] = {.lex_state = 252, .external_lex_state = 2}, + [2184] = {.lex_state = 252, .external_lex_state = 5}, + [2185] = {.lex_state = 252, .external_lex_state = 5}, + [2186] = {.lex_state = 252, .external_lex_state = 2}, + [2187] = {.lex_state = 30, .external_lex_state = 2}, + [2188] = {.lex_state = 252, .external_lex_state = 5}, + [2189] = {.lex_state = 34, .external_lex_state = 2}, + [2190] = {.lex_state = 252, .external_lex_state = 2}, + [2191] = {.lex_state = 252, .external_lex_state = 2}, + [2192] = {.lex_state = 252, .external_lex_state = 2}, + [2193] = {.lex_state = 252, .external_lex_state = 2}, + [2194] = {.lex_state = 252, .external_lex_state = 2}, + [2195] = {.lex_state = 34, .external_lex_state = 2}, + [2196] = {.lex_state = 39, .external_lex_state = 2}, + [2197] = {.lex_state = 252, .external_lex_state = 2}, + [2198] = {.lex_state = 252, .external_lex_state = 2}, + [2199] = {.lex_state = 252, .external_lex_state = 2}, + [2200] = {.lex_state = 252, .external_lex_state = 2}, + [2201] = {.lex_state = 252, .external_lex_state = 2}, + [2202] = {.lex_state = 252, .external_lex_state = 2}, + [2203] = {.lex_state = 252, .external_lex_state = 2}, + [2204] = {.lex_state = 252, .external_lex_state = 2}, + [2205] = {.lex_state = 252, .external_lex_state = 2}, + [2206] = {.lex_state = 252, .external_lex_state = 2}, + [2207] = {.lex_state = 252, .external_lex_state = 2}, + [2208] = {.lex_state = 252, .external_lex_state = 2}, + [2209] = {.lex_state = 252, .external_lex_state = 2}, + [2210] = {.lex_state = 252, .external_lex_state = 2}, + [2211] = {.lex_state = 252, .external_lex_state = 5}, + [2212] = {.lex_state = 252, .external_lex_state = 2}, + [2213] = {.lex_state = 252, .external_lex_state = 2}, + [2214] = {.lex_state = 252, .external_lex_state = 2}, + [2215] = {.lex_state = 252, .external_lex_state = 2}, + [2216] = {.lex_state = 252, .external_lex_state = 2}, + [2217] = {.lex_state = 39, .external_lex_state = 2}, + [2218] = {.lex_state = 252, .external_lex_state = 2}, + [2219] = {.lex_state = 34, .external_lex_state = 2}, + [2220] = {.lex_state = 39, .external_lex_state = 2}, + [2221] = {.lex_state = 252, .external_lex_state = 2}, + [2222] = {.lex_state = 252, .external_lex_state = 2}, + [2223] = {.lex_state = 252, .external_lex_state = 2}, + [2224] = {.lex_state = 252, .external_lex_state = 2}, + [2225] = {.lex_state = 252, .external_lex_state = 2}, + [2226] = {.lex_state = 252, .external_lex_state = 2}, + [2227] = {.lex_state = 252, .external_lex_state = 2}, + [2228] = {.lex_state = 252, .external_lex_state = 2}, + [2229] = {.lex_state = 252, .external_lex_state = 5}, + [2230] = {.lex_state = 34, .external_lex_state = 2}, + [2231] = {.lex_state = 252, .external_lex_state = 2}, + [2232] = {.lex_state = 252, .external_lex_state = 2}, + [2233] = {.lex_state = 252, .external_lex_state = 2}, + [2234] = {.lex_state = 252, .external_lex_state = 2}, + [2235] = {.lex_state = 252, .external_lex_state = 2}, + [2236] = {.lex_state = 252, .external_lex_state = 2}, + [2237] = {.lex_state = 34, .external_lex_state = 2}, + [2238] = {.lex_state = 34, .external_lex_state = 2}, + [2239] = {.lex_state = 252, .external_lex_state = 2}, + [2240] = {.lex_state = 252, .external_lex_state = 2}, + [2241] = {.lex_state = 3, .external_lex_state = 2}, + [2242] = {.lex_state = 252, .external_lex_state = 2}, + [2243] = {.lex_state = 252, .external_lex_state = 2}, + [2244] = {.lex_state = 252, .external_lex_state = 2}, + [2245] = {.lex_state = 252, .external_lex_state = 2}, + [2246] = {.lex_state = 252, .external_lex_state = 2}, + [2247] = {.lex_state = 252, .external_lex_state = 2}, + [2248] = {.lex_state = 252, .external_lex_state = 2}, + [2249] = {.lex_state = 252, .external_lex_state = 5}, + [2250] = {.lex_state = 252, .external_lex_state = 2}, + [2251] = {.lex_state = 252, .external_lex_state = 2}, + [2252] = {.lex_state = 252, .external_lex_state = 2}, + [2253] = {.lex_state = 252, .external_lex_state = 5}, + [2254] = {.lex_state = 252, .external_lex_state = 5}, + [2255] = {.lex_state = 252, .external_lex_state = 2}, + [2256] = {.lex_state = 252, .external_lex_state = 5}, + [2257] = {.lex_state = 252, .external_lex_state = 2}, + [2258] = {.lex_state = 252, .external_lex_state = 5}, + [2259] = {.lex_state = 252, .external_lex_state = 2}, + [2260] = {.lex_state = 252, .external_lex_state = 2}, + [2261] = {.lex_state = 252, .external_lex_state = 2}, + [2262] = {.lex_state = 252, .external_lex_state = 2}, + [2263] = {.lex_state = 252, .external_lex_state = 2}, + [2264] = {.lex_state = 252, .external_lex_state = 2}, + [2265] = {.lex_state = 252, .external_lex_state = 2}, + [2266] = {.lex_state = 252, .external_lex_state = 2}, + [2267] = {.lex_state = 252, .external_lex_state = 2}, + [2268] = {.lex_state = 252, .external_lex_state = 2}, + [2269] = {.lex_state = 34, .external_lex_state = 2}, + [2270] = {.lex_state = 252, .external_lex_state = 5}, + [2271] = {.lex_state = 252, .external_lex_state = 2}, + [2272] = {.lex_state = 252, .external_lex_state = 2}, + [2273] = {.lex_state = 252, .external_lex_state = 2}, + [2274] = {.lex_state = 252, .external_lex_state = 2}, + [2275] = {.lex_state = 252, .external_lex_state = 5}, + [2276] = {.lex_state = 252, .external_lex_state = 2}, + [2277] = {.lex_state = 252, .external_lex_state = 2}, + [2278] = {.lex_state = 252, .external_lex_state = 2}, + [2279] = {.lex_state = 252, .external_lex_state = 5}, + [2280] = {.lex_state = 252, .external_lex_state = 5}, + [2281] = {.lex_state = 252, .external_lex_state = 2}, + [2282] = {.lex_state = 252, .external_lex_state = 2}, + [2283] = {.lex_state = 252, .external_lex_state = 2}, + [2284] = {.lex_state = 252, .external_lex_state = 5}, + [2285] = {.lex_state = 252, .external_lex_state = 2}, + [2286] = {.lex_state = 252, .external_lex_state = 2}, + [2287] = {.lex_state = 252, .external_lex_state = 2}, + [2288] = {.lex_state = 252, .external_lex_state = 2}, + [2289] = {.lex_state = 252, .external_lex_state = 2}, + [2290] = {.lex_state = 252, .external_lex_state = 2}, + [2291] = {.lex_state = 252, .external_lex_state = 2}, + [2292] = {.lex_state = 252, .external_lex_state = 2}, + [2293] = {.lex_state = 252, .external_lex_state = 2}, + [2294] = {.lex_state = 252, .external_lex_state = 2}, + [2295] = {.lex_state = 252, .external_lex_state = 2}, + [2296] = {.lex_state = 252, .external_lex_state = 2}, + [2297] = {.lex_state = 252, .external_lex_state = 2}, + [2298] = {.lex_state = 252, .external_lex_state = 2}, + [2299] = {.lex_state = 252, .external_lex_state = 2}, + [2300] = {.lex_state = 252, .external_lex_state = 2}, + [2301] = {.lex_state = 252, .external_lex_state = 2}, + [2302] = {.lex_state = 252, .external_lex_state = 5}, + [2303] = {.lex_state = 252, .external_lex_state = 2}, + [2304] = {.lex_state = 252, .external_lex_state = 2}, + [2305] = {.lex_state = 252, .external_lex_state = 2}, + [2306] = {.lex_state = 252, .external_lex_state = 2}, + [2307] = {.lex_state = 39, .external_lex_state = 2}, + [2308] = {.lex_state = 252, .external_lex_state = 2}, + [2309] = {.lex_state = 39, .external_lex_state = 2}, + [2310] = {.lex_state = 252, .external_lex_state = 2}, + [2311] = {.lex_state = 252, .external_lex_state = 2}, + [2312] = {.lex_state = 252, .external_lex_state = 2}, + [2313] = {.lex_state = 252, .external_lex_state = 2}, + [2314] = {.lex_state = 252, .external_lex_state = 2}, + [2315] = {.lex_state = 252, .external_lex_state = 2}, + [2316] = {.lex_state = 252, .external_lex_state = 5}, + [2317] = {.lex_state = 252, .external_lex_state = 2}, + [2318] = {.lex_state = 252, .external_lex_state = 5}, + [2319] = {.lex_state = 252, .external_lex_state = 2}, + [2320] = {.lex_state = 252, .external_lex_state = 2}, + [2321] = {.lex_state = 252, .external_lex_state = 2}, + [2322] = {.lex_state = 252, .external_lex_state = 2}, + [2323] = {.lex_state = 252, .external_lex_state = 2}, + [2324] = {.lex_state = 252, .external_lex_state = 2}, + [2325] = {.lex_state = 252, .external_lex_state = 2}, + [2326] = {.lex_state = 252, .external_lex_state = 2}, + [2327] = {.lex_state = 252, .external_lex_state = 2}, + [2328] = {.lex_state = 34, .external_lex_state = 2}, + [2329] = {.lex_state = 252, .external_lex_state = 2}, + [2330] = {.lex_state = 252, .external_lex_state = 2}, + [2331] = {.lex_state = 252, .external_lex_state = 2}, + [2332] = {.lex_state = 252, .external_lex_state = 2}, + [2333] = {.lex_state = 252, .external_lex_state = 2}, + [2334] = {.lex_state = 252, .external_lex_state = 2}, + [2335] = {.lex_state = 252, .external_lex_state = 5}, + [2336] = {.lex_state = 252, .external_lex_state = 2}, + [2337] = {.lex_state = 252, .external_lex_state = 2}, + [2338] = {.lex_state = 252, .external_lex_state = 2}, + [2339] = {.lex_state = 252, .external_lex_state = 2}, + [2340] = {.lex_state = 252, .external_lex_state = 2}, + [2341] = {.lex_state = 252, .external_lex_state = 2}, + [2342] = {.lex_state = 252, .external_lex_state = 2}, + [2343] = {.lex_state = 252, .external_lex_state = 2}, + [2344] = {.lex_state = 252, .external_lex_state = 2}, + [2345] = {.lex_state = 252, .external_lex_state = 5}, + [2346] = {.lex_state = 252, .external_lex_state = 5}, + [2347] = {.lex_state = 252, .external_lex_state = 2}, + [2348] = {.lex_state = 252, .external_lex_state = 2}, + [2349] = {.lex_state = 252, .external_lex_state = 2}, + [2350] = {.lex_state = 252, .external_lex_state = 5}, + [2351] = {.lex_state = 252, .external_lex_state = 2}, + [2352] = {.lex_state = 252, .external_lex_state = 2}, + [2353] = {.lex_state = 252, .external_lex_state = 2}, + [2354] = {.lex_state = 252, .external_lex_state = 2}, + [2355] = {.lex_state = 252, .external_lex_state = 2}, + [2356] = {.lex_state = 252, .external_lex_state = 2}, + [2357] = {.lex_state = 252, .external_lex_state = 2}, + [2358] = {.lex_state = 252, .external_lex_state = 5}, + [2359] = {.lex_state = 252, .external_lex_state = 5}, + [2360] = {.lex_state = 252, .external_lex_state = 2}, + [2361] = {.lex_state = 252, .external_lex_state = 2}, + [2362] = {.lex_state = 252, .external_lex_state = 2}, + [2363] = {.lex_state = 252, .external_lex_state = 2}, + [2364] = {.lex_state = 252, .external_lex_state = 5}, + [2365] = {.lex_state = 252, .external_lex_state = 2}, + [2366] = {.lex_state = 252, .external_lex_state = 2}, + [2367] = {.lex_state = 252, .external_lex_state = 2}, + [2368] = {.lex_state = 252, .external_lex_state = 2}, + [2369] = {.lex_state = 252, .external_lex_state = 2}, + [2370] = {.lex_state = 252, .external_lex_state = 2}, + [2371] = {.lex_state = 252, .external_lex_state = 2}, + [2372] = {.lex_state = 34, .external_lex_state = 2}, + [2373] = {.lex_state = 252, .external_lex_state = 5}, + [2374] = {.lex_state = 252, .external_lex_state = 2}, + [2375] = {.lex_state = 252, .external_lex_state = 5}, + [2376] = {.lex_state = 252, .external_lex_state = 5}, + [2377] = {.lex_state = 252, .external_lex_state = 5}, + [2378] = {.lex_state = 252, .external_lex_state = 5}, + [2379] = {.lex_state = 252, .external_lex_state = 2}, + [2380] = {.lex_state = 252, .external_lex_state = 5}, + [2381] = {.lex_state = 252, .external_lex_state = 2}, + [2382] = {.lex_state = 39, .external_lex_state = 2}, + [2383] = {.lex_state = 39, .external_lex_state = 2}, + [2384] = {.lex_state = 252, .external_lex_state = 2}, + [2385] = {.lex_state = 252, .external_lex_state = 2}, + [2386] = {.lex_state = 252, .external_lex_state = 2}, + [2387] = {.lex_state = 252, .external_lex_state = 2}, + [2388] = {.lex_state = 252, .external_lex_state = 2}, + [2389] = {.lex_state = 252, .external_lex_state = 2}, + [2390] = {.lex_state = 252, .external_lex_state = 5}, + [2391] = {.lex_state = 252, .external_lex_state = 5}, + [2392] = {.lex_state = 252, .external_lex_state = 2}, + [2393] = {.lex_state = 252, .external_lex_state = 2}, + [2394] = {.lex_state = 252, .external_lex_state = 2}, + [2395] = {.lex_state = 252, .external_lex_state = 2}, + [2396] = {.lex_state = 252, .external_lex_state = 2}, + [2397] = {.lex_state = 252, .external_lex_state = 5}, + [2398] = {.lex_state = 252, .external_lex_state = 2}, + [2399] = {.lex_state = 252, .external_lex_state = 2}, + [2400] = {.lex_state = 252, .external_lex_state = 2}, + [2401] = {.lex_state = 252, .external_lex_state = 5}, + [2402] = {.lex_state = 252, .external_lex_state = 5}, + [2403] = {.lex_state = 252, .external_lex_state = 2}, + [2404] = {.lex_state = 252, .external_lex_state = 5}, + [2405] = {.lex_state = 57, .external_lex_state = 2}, + [2406] = {.lex_state = 252, .external_lex_state = 2}, + [2407] = {.lex_state = 252, .external_lex_state = 2}, + [2408] = {.lex_state = 252, .external_lex_state = 2}, + [2409] = {.lex_state = 252, .external_lex_state = 2}, + [2410] = {.lex_state = 252, .external_lex_state = 2}, + [2411] = {.lex_state = 252, .external_lex_state = 2}, + [2412] = {.lex_state = 252, .external_lex_state = 2}, + [2413] = {.lex_state = 252, .external_lex_state = 2}, + [2414] = {.lex_state = 252, .external_lex_state = 2}, + [2415] = {.lex_state = 252, .external_lex_state = 2}, + [2416] = {.lex_state = 252, .external_lex_state = 5}, + [2417] = {.lex_state = 252, .external_lex_state = 2}, + [2418] = {.lex_state = 252, .external_lex_state = 5}, + [2419] = {.lex_state = 252, .external_lex_state = 2}, + [2420] = {.lex_state = 252, .external_lex_state = 2}, + [2421] = {.lex_state = 252, .external_lex_state = 2}, + [2422] = {.lex_state = 252, .external_lex_state = 2}, + [2423] = {.lex_state = 252, .external_lex_state = 5}, + [2424] = {.lex_state = 252, .external_lex_state = 2}, + [2425] = {.lex_state = 252, .external_lex_state = 2}, + [2426] = {.lex_state = 39, .external_lex_state = 2}, + [2427] = {.lex_state = 252, .external_lex_state = 5}, + [2428] = {.lex_state = 39, .external_lex_state = 2}, + [2429] = {.lex_state = 252, .external_lex_state = 2}, + [2430] = {.lex_state = 34, .external_lex_state = 2}, + [2431] = {.lex_state = 34, .external_lex_state = 2}, + [2432] = {.lex_state = 252, .external_lex_state = 2}, + [2433] = {.lex_state = 252, .external_lex_state = 2}, + [2434] = {.lex_state = 252, .external_lex_state = 2}, + [2435] = {.lex_state = 252, .external_lex_state = 5}, + [2436] = {.lex_state = 252, .external_lex_state = 2}, + [2437] = {.lex_state = 252, .external_lex_state = 2}, + [2438] = {.lex_state = 252, .external_lex_state = 2}, + [2439] = {.lex_state = 252, .external_lex_state = 2}, + [2440] = {.lex_state = 252, .external_lex_state = 2}, + [2441] = {.lex_state = 39, .external_lex_state = 2}, + [2442] = {.lex_state = 252, .external_lex_state = 2}, + [2443] = {.lex_state = 252, .external_lex_state = 2}, + [2444] = {.lex_state = 252, .external_lex_state = 2}, + [2445] = {.lex_state = 252, .external_lex_state = 2}, + [2446] = {.lex_state = 252, .external_lex_state = 2}, + [2447] = {.lex_state = 252, .external_lex_state = 2}, + [2448] = {.lex_state = 252, .external_lex_state = 2}, + [2449] = {.lex_state = 252, .external_lex_state = 2}, + [2450] = {.lex_state = 252, .external_lex_state = 2}, + [2451] = {.lex_state = 252, .external_lex_state = 2}, + [2452] = {.lex_state = 34, .external_lex_state = 2}, + [2453] = {.lex_state = 252, .external_lex_state = 2}, + [2454] = {.lex_state = 252, .external_lex_state = 2}, + [2455] = {.lex_state = 252, .external_lex_state = 2}, + [2456] = {.lex_state = 252, .external_lex_state = 5}, + [2457] = {.lex_state = 252, .external_lex_state = 2}, + [2458] = {.lex_state = 252, .external_lex_state = 2}, + [2459] = {.lex_state = 252, .external_lex_state = 5}, + [2460] = {.lex_state = 252, .external_lex_state = 2}, + [2461] = {.lex_state = 252, .external_lex_state = 5}, + [2462] = {.lex_state = 252, .external_lex_state = 2}, + [2463] = {.lex_state = 252, .external_lex_state = 5}, + [2464] = {.lex_state = 252, .external_lex_state = 2}, + [2465] = {.lex_state = 252, .external_lex_state = 5}, + [2466] = {.lex_state = 252, .external_lex_state = 5}, + [2467] = {.lex_state = 252, .external_lex_state = 2}, + [2468] = {.lex_state = 252, .external_lex_state = 2}, + [2469] = {.lex_state = 252, .external_lex_state = 2}, + [2470] = {.lex_state = 252, .external_lex_state = 2}, + [2471] = {.lex_state = 252, .external_lex_state = 2}, + [2472] = {.lex_state = 252, .external_lex_state = 5}, + [2473] = {.lex_state = 252, .external_lex_state = 2}, + [2474] = {.lex_state = 34, .external_lex_state = 2}, + [2475] = {.lex_state = 252, .external_lex_state = 2}, + [2476] = {.lex_state = 252, .external_lex_state = 2}, + [2477] = {.lex_state = 252, .external_lex_state = 2}, + [2478] = {.lex_state = 252, .external_lex_state = 2}, + [2479] = {.lex_state = 252, .external_lex_state = 2}, + [2480] = {.lex_state = 252, .external_lex_state = 2}, + [2481] = {.lex_state = 252, .external_lex_state = 2}, + [2482] = {.lex_state = 252, .external_lex_state = 2}, + [2483] = {.lex_state = 252, .external_lex_state = 5}, + [2484] = {.lex_state = 252, .external_lex_state = 5}, + [2485] = {.lex_state = 252, .external_lex_state = 2}, + [2486] = {.lex_state = 252, .external_lex_state = 5}, + [2487] = {.lex_state = 252, .external_lex_state = 5}, + [2488] = {.lex_state = 252, .external_lex_state = 5}, + [2489] = {.lex_state = 252, .external_lex_state = 5}, + [2490] = {.lex_state = 252, .external_lex_state = 2}, + [2491] = {.lex_state = 252, .external_lex_state = 5}, + [2492] = {.lex_state = 252, .external_lex_state = 2}, + [2493] = {.lex_state = 252, .external_lex_state = 2}, + [2494] = {.lex_state = 252, .external_lex_state = 2}, + [2495] = {.lex_state = 252, .external_lex_state = 2}, + [2496] = {.lex_state = 252, .external_lex_state = 2}, + [2497] = {.lex_state = 252, .external_lex_state = 2}, + [2498] = {.lex_state = 252, .external_lex_state = 2}, + [2499] = {.lex_state = 252, .external_lex_state = 5}, + [2500] = {.lex_state = 252, .external_lex_state = 2}, + [2501] = {.lex_state = 252, .external_lex_state = 2}, + [2502] = {.lex_state = 252, .external_lex_state = 5}, + [2503] = {.lex_state = 252, .external_lex_state = 5}, + [2504] = {.lex_state = 252, .external_lex_state = 2}, + [2505] = {.lex_state = 252, .external_lex_state = 5}, + [2506] = {.lex_state = 252, .external_lex_state = 5}, + [2507] = {.lex_state = 252, .external_lex_state = 2}, + [2508] = {.lex_state = 252, .external_lex_state = 2}, + [2509] = {.lex_state = 252, .external_lex_state = 2}, + [2510] = {.lex_state = 252, .external_lex_state = 2}, + [2511] = {.lex_state = 252, .external_lex_state = 2}, + [2512] = {.lex_state = 252, .external_lex_state = 2}, + [2513] = {.lex_state = 252, .external_lex_state = 2}, + [2514] = {.lex_state = 252, .external_lex_state = 2}, + [2515] = {.lex_state = 252, .external_lex_state = 2}, + [2516] = {.lex_state = 252, .external_lex_state = 2}, + [2517] = {.lex_state = 252, .external_lex_state = 2}, + [2518] = {.lex_state = 252, .external_lex_state = 2}, + [2519] = {.lex_state = 252, .external_lex_state = 2}, + [2520] = {.lex_state = 252, .external_lex_state = 2}, + [2521] = {.lex_state = 252, .external_lex_state = 2}, + [2522] = {.lex_state = 252, .external_lex_state = 2}, + [2523] = {.lex_state = 252, .external_lex_state = 2}, + [2524] = {.lex_state = 252, .external_lex_state = 5}, + [2525] = {.lex_state = 252, .external_lex_state = 5}, + [2526] = {.lex_state = 252, .external_lex_state = 2}, + [2527] = {.lex_state = 252, .external_lex_state = 2}, + [2528] = {.lex_state = 252, .external_lex_state = 5}, + [2529] = {.lex_state = 252, .external_lex_state = 5}, + [2530] = {.lex_state = 252, .external_lex_state = 2}, + [2531] = {.lex_state = 252, .external_lex_state = 2}, + [2532] = {.lex_state = 252, .external_lex_state = 2}, + [2533] = {.lex_state = 252, .external_lex_state = 2}, + [2534] = {.lex_state = 252, .external_lex_state = 2}, + [2535] = {.lex_state = 252, .external_lex_state = 2}, + [2536] = {.lex_state = 252, .external_lex_state = 2}, + [2537] = {.lex_state = 252, .external_lex_state = 2}, + [2538] = {.lex_state = 252, .external_lex_state = 2}, + [2539] = {.lex_state = 252, .external_lex_state = 2}, + [2540] = {.lex_state = 252, .external_lex_state = 2}, + [2541] = {.lex_state = 252, .external_lex_state = 2}, + [2542] = {.lex_state = 252, .external_lex_state = 2}, + [2543] = {.lex_state = 252, .external_lex_state = 2}, + [2544] = {.lex_state = 252, .external_lex_state = 2}, + [2545] = {.lex_state = 252, .external_lex_state = 2}, + [2546] = {.lex_state = 252, .external_lex_state = 2}, + [2547] = {.lex_state = 252, .external_lex_state = 5}, + [2548] = {.lex_state = 252, .external_lex_state = 2}, + [2549] = {.lex_state = 252, .external_lex_state = 2}, + [2550] = {.lex_state = 252, .external_lex_state = 2}, + [2551] = {.lex_state = 252, .external_lex_state = 2}, + [2552] = {.lex_state = 252, .external_lex_state = 2}, + [2553] = {.lex_state = 3, .external_lex_state = 2}, + [2554] = {.lex_state = 252, .external_lex_state = 2}, + [2555] = {.lex_state = 252, .external_lex_state = 2}, + [2556] = {.lex_state = 252, .external_lex_state = 2}, + [2557] = {.lex_state = 252, .external_lex_state = 2}, + [2558] = {.lex_state = 252, .external_lex_state = 2}, + [2559] = {.lex_state = 252, .external_lex_state = 2}, + [2560] = {.lex_state = 252, .external_lex_state = 2}, + [2561] = {.lex_state = 252, .external_lex_state = 2}, + [2562] = {.lex_state = 252, .external_lex_state = 2}, + [2563] = {.lex_state = 252, .external_lex_state = 2}, + [2564] = {.lex_state = 252, .external_lex_state = 2}, + [2565] = {.lex_state = 252, .external_lex_state = 5}, + [2566] = {.lex_state = 252, .external_lex_state = 2}, + [2567] = {.lex_state = 252, .external_lex_state = 2}, + [2568] = {.lex_state = 252, .external_lex_state = 2}, + [2569] = {.lex_state = 252, .external_lex_state = 2}, + [2570] = {.lex_state = 252, .external_lex_state = 2}, + [2571] = {.lex_state = 252, .external_lex_state = 2}, + [2572] = {.lex_state = 252, .external_lex_state = 2}, + [2573] = {.lex_state = 252, .external_lex_state = 2}, + [2574] = {.lex_state = 252, .external_lex_state = 2}, + [2575] = {.lex_state = 252, .external_lex_state = 2}, + [2576] = {.lex_state = 252, .external_lex_state = 2}, + [2577] = {.lex_state = 252, .external_lex_state = 2}, + [2578] = {.lex_state = 252, .external_lex_state = 2}, + [2579] = {.lex_state = 252, .external_lex_state = 2}, + [2580] = {.lex_state = 252, .external_lex_state = 2}, + [2581] = {.lex_state = 252, .external_lex_state = 2}, + [2582] = {.lex_state = 252, .external_lex_state = 2}, + [2583] = {.lex_state = 252, .external_lex_state = 2}, + [2584] = {.lex_state = 252, .external_lex_state = 2}, + [2585] = {.lex_state = 252, .external_lex_state = 2}, + [2586] = {.lex_state = 252, .external_lex_state = 2}, + [2587] = {.lex_state = 252, .external_lex_state = 2}, + [2588] = {.lex_state = 252, .external_lex_state = 2}, + [2589] = {.lex_state = 252, .external_lex_state = 2}, + [2590] = {.lex_state = 252, .external_lex_state = 2}, + [2591] = {.lex_state = 252, .external_lex_state = 2}, + [2592] = {.lex_state = 252, .external_lex_state = 2}, + [2593] = {.lex_state = 252, .external_lex_state = 2}, + [2594] = {.lex_state = 252, .external_lex_state = 2}, + [2595] = {.lex_state = 252, .external_lex_state = 2}, + [2596] = {.lex_state = 252, .external_lex_state = 2}, + [2597] = {.lex_state = 252, .external_lex_state = 2}, + [2598] = {.lex_state = 252, .external_lex_state = 2}, + [2599] = {.lex_state = 252, .external_lex_state = 2}, + [2600] = {.lex_state = 252, .external_lex_state = 2}, + [2601] = {.lex_state = 34, .external_lex_state = 2}, + [2602] = {.lex_state = 57, .external_lex_state = 2}, + [2603] = {.lex_state = 252, .external_lex_state = 2}, + [2604] = {.lex_state = 252, .external_lex_state = 2}, + [2605] = {.lex_state = 39, .external_lex_state = 2}, + [2606] = {.lex_state = 252, .external_lex_state = 2}, + [2607] = {.lex_state = 252, .external_lex_state = 2}, + [2608] = {.lex_state = 252, .external_lex_state = 2}, + [2609] = {.lex_state = 252, .external_lex_state = 5}, + [2610] = {.lex_state = 252, .external_lex_state = 2}, + [2611] = {.lex_state = 252, .external_lex_state = 2}, + [2612] = {.lex_state = 252, .external_lex_state = 2}, + [2613] = {.lex_state = 252, .external_lex_state = 2}, + [2614] = {.lex_state = 252, .external_lex_state = 2}, + [2615] = {.lex_state = 252, .external_lex_state = 5}, + [2616] = {.lex_state = 252, .external_lex_state = 2}, + [2617] = {.lex_state = 252, .external_lex_state = 2}, + [2618] = {.lex_state = 252, .external_lex_state = 2}, + [2619] = {.lex_state = 252, .external_lex_state = 2}, + [2620] = {.lex_state = 252, .external_lex_state = 2}, + [2621] = {.lex_state = 252, .external_lex_state = 2}, + [2622] = {.lex_state = 252, .external_lex_state = 2}, + [2623] = {.lex_state = 252, .external_lex_state = 2}, + [2624] = {.lex_state = 252, .external_lex_state = 2}, + [2625] = {.lex_state = 252, .external_lex_state = 2}, + [2626] = {.lex_state = 252, .external_lex_state = 2}, + [2627] = {.lex_state = 34, .external_lex_state = 2}, + [2628] = {.lex_state = 252, .external_lex_state = 2}, + [2629] = {.lex_state = 252, .external_lex_state = 2}, + [2630] = {.lex_state = 252, .external_lex_state = 2}, + [2631] = {.lex_state = 252, .external_lex_state = 2}, + [2632] = {.lex_state = 252, .external_lex_state = 2}, + [2633] = {.lex_state = 252, .external_lex_state = 2}, + [2634] = {.lex_state = 252, .external_lex_state = 2}, + [2635] = {.lex_state = 252, .external_lex_state = 2}, + [2636] = {.lex_state = 252, .external_lex_state = 2}, + [2637] = {.lex_state = 252, .external_lex_state = 2}, + [2638] = {.lex_state = 252, .external_lex_state = 2}, + [2639] = {.lex_state = 252, .external_lex_state = 2}, + [2640] = {.lex_state = 252, .external_lex_state = 2}, + [2641] = {.lex_state = 252, .external_lex_state = 2}, + [2642] = {.lex_state = 252, .external_lex_state = 2}, + [2643] = {.lex_state = 252, .external_lex_state = 2}, + [2644] = {.lex_state = 252, .external_lex_state = 2}, + [2645] = {.lex_state = 252, .external_lex_state = 2}, + [2646] = {.lex_state = 252, .external_lex_state = 2}, + [2647] = {.lex_state = 252, .external_lex_state = 2}, + [2648] = {.lex_state = 252, .external_lex_state = 2}, + [2649] = {.lex_state = 252, .external_lex_state = 2}, + [2650] = {.lex_state = 252, .external_lex_state = 2}, + [2651] = {.lex_state = 252, .external_lex_state = 2}, + [2652] = {.lex_state = 252, .external_lex_state = 2}, + [2653] = {.lex_state = 252, .external_lex_state = 2}, + [2654] = {.lex_state = 252, .external_lex_state = 2}, + [2655] = {.lex_state = 252, .external_lex_state = 2}, + [2656] = {.lex_state = 252, .external_lex_state = 2}, + [2657] = {.lex_state = 252, .external_lex_state = 2}, + [2658] = {.lex_state = 252, .external_lex_state = 2}, + [2659] = {.lex_state = 252, .external_lex_state = 2}, + [2660] = {.lex_state = 252, .external_lex_state = 2}, + [2661] = {.lex_state = 252, .external_lex_state = 2}, + [2662] = {.lex_state = 252, .external_lex_state = 2}, + [2663] = {.lex_state = 252, .external_lex_state = 2}, + [2664] = {.lex_state = 252, .external_lex_state = 2}, + [2665] = {.lex_state = 252, .external_lex_state = 2}, + [2666] = {.lex_state = 252, .external_lex_state = 2}, + [2667] = {.lex_state = 252, .external_lex_state = 2}, + [2668] = {.lex_state = 252, .external_lex_state = 2}, + [2669] = {.lex_state = 252, .external_lex_state = 2}, + [2670] = {.lex_state = 252, .external_lex_state = 2}, + [2671] = {.lex_state = 252, .external_lex_state = 2}, + [2672] = {.lex_state = 252, .external_lex_state = 2}, + [2673] = {.lex_state = 252, .external_lex_state = 2}, + [2674] = {.lex_state = 252, .external_lex_state = 2}, + [2675] = {.lex_state = 252, .external_lex_state = 2}, + [2676] = {.lex_state = 252, .external_lex_state = 2}, + [2677] = {.lex_state = 252, .external_lex_state = 2}, + [2678] = {.lex_state = 252, .external_lex_state = 2}, + [2679] = {.lex_state = 252, .external_lex_state = 2}, + [2680] = {.lex_state = 252, .external_lex_state = 2}, + [2681] = {.lex_state = 252, .external_lex_state = 2}, + [2682] = {.lex_state = 252, .external_lex_state = 2}, + [2683] = {.lex_state = 252, .external_lex_state = 2}, + [2684] = {.lex_state = 252, .external_lex_state = 2}, + [2685] = {.lex_state = 252, .external_lex_state = 2}, + [2686] = {.lex_state = 252, .external_lex_state = 2}, + [2687] = {.lex_state = 252, .external_lex_state = 2}, + [2688] = {.lex_state = 252, .external_lex_state = 2}, + [2689] = {.lex_state = 252, .external_lex_state = 2}, + [2690] = {.lex_state = 252, .external_lex_state = 2}, + [2691] = {.lex_state = 252, .external_lex_state = 2}, + [2692] = {.lex_state = 252, .external_lex_state = 2}, + [2693] = {.lex_state = 252, .external_lex_state = 2}, + [2694] = {.lex_state = 252, .external_lex_state = 2}, + [2695] = {.lex_state = 252, .external_lex_state = 2}, + [2696] = {.lex_state = 252, .external_lex_state = 2}, + [2697] = {.lex_state = 252, .external_lex_state = 2}, + [2698] = {.lex_state = 252, .external_lex_state = 2}, + [2699] = {.lex_state = 252, .external_lex_state = 2}, + [2700] = {.lex_state = 252, .external_lex_state = 2}, + [2701] = {.lex_state = 252, .external_lex_state = 2}, + [2702] = {.lex_state = 252, .external_lex_state = 2}, + [2703] = {.lex_state = 252, .external_lex_state = 2}, + [2704] = {.lex_state = 252, .external_lex_state = 2}, + [2705] = {.lex_state = 252, .external_lex_state = 2}, + [2706] = {.lex_state = 252, .external_lex_state = 2}, + [2707] = {.lex_state = 252, .external_lex_state = 2}, + [2708] = {.lex_state = 252, .external_lex_state = 2}, + [2709] = {.lex_state = 252, .external_lex_state = 2}, + [2710] = {.lex_state = 252, .external_lex_state = 5}, + [2711] = {.lex_state = 252, .external_lex_state = 2}, + [2712] = {.lex_state = 252, .external_lex_state = 2}, + [2713] = {.lex_state = 252, .external_lex_state = 2}, + [2714] = {.lex_state = 252, .external_lex_state = 2}, + [2715] = {.lex_state = 252, .external_lex_state = 2}, + [2716] = {.lex_state = 252, .external_lex_state = 2}, + [2717] = {.lex_state = 252, .external_lex_state = 2}, + [2718] = {.lex_state = 252, .external_lex_state = 2}, + [2719] = {.lex_state = 252, .external_lex_state = 2}, + [2720] = {.lex_state = 252, .external_lex_state = 2}, + [2721] = {.lex_state = 252, .external_lex_state = 2}, + [2722] = {.lex_state = 252, .external_lex_state = 2}, + [2723] = {.lex_state = 252, .external_lex_state = 2}, + [2724] = {.lex_state = 252, .external_lex_state = 2}, + [2725] = {.lex_state = 252, .external_lex_state = 2}, + [2726] = {.lex_state = 252, .external_lex_state = 2}, + [2727] = {.lex_state = 252, .external_lex_state = 2}, + [2728] = {.lex_state = 252, .external_lex_state = 2}, + [2729] = {.lex_state = 252, .external_lex_state = 2}, + [2730] = {.lex_state = 252, .external_lex_state = 2}, + [2731] = {.lex_state = 34, .external_lex_state = 2}, + [2732] = {.lex_state = 4, .external_lex_state = 2}, + [2733] = {.lex_state = 34, .external_lex_state = 2}, + [2734] = {.lex_state = 252, .external_lex_state = 2}, + [2735] = {.lex_state = 34, .external_lex_state = 2}, + [2736] = {.lex_state = 34, .external_lex_state = 2}, + [2737] = {.lex_state = 4, .external_lex_state = 2}, + [2738] = {.lex_state = 39, .external_lex_state = 2}, + [2739] = {.lex_state = 252, .external_lex_state = 2}, + [2740] = {.lex_state = 252, .external_lex_state = 2}, + [2741] = {.lex_state = 34, .external_lex_state = 2}, + [2742] = {.lex_state = 252, .external_lex_state = 2}, + [2743] = {.lex_state = 252, .external_lex_state = 2}, + [2744] = {.lex_state = 252, .external_lex_state = 2}, + [2745] = {.lex_state = 34, .external_lex_state = 2}, + [2746] = {.lex_state = 34, .external_lex_state = 2}, + [2747] = {.lex_state = 4, .external_lex_state = 2}, + [2748] = {.lex_state = 252, .external_lex_state = 2}, + [2749] = {.lex_state = 30, .external_lex_state = 2}, + [2750] = {.lex_state = 252, .external_lex_state = 2}, + [2751] = {.lex_state = 252, .external_lex_state = 2}, + [2752] = {.lex_state = 252, .external_lex_state = 2}, + [2753] = {.lex_state = 252, .external_lex_state = 2}, + [2754] = {.lex_state = 39, .external_lex_state = 2}, + [2755] = {.lex_state = 252, .external_lex_state = 2}, + [2756] = {.lex_state = 252, .external_lex_state = 2}, + [2757] = {.lex_state = 34, .external_lex_state = 2}, + [2758] = {.lex_state = 252, .external_lex_state = 2}, + [2759] = {.lex_state = 4, .external_lex_state = 2}, + [2760] = {.lex_state = 252, .external_lex_state = 2}, + [2761] = {.lex_state = 34, .external_lex_state = 2}, + [2762] = {.lex_state = 34, .external_lex_state = 2}, + [2763] = {.lex_state = 30, .external_lex_state = 2}, + [2764] = {.lex_state = 252, .external_lex_state = 2}, + [2765] = {.lex_state = 252, .external_lex_state = 2}, + [2766] = {.lex_state = 252, .external_lex_state = 2}, + [2767] = {.lex_state = 252, .external_lex_state = 2}, + [2768] = {.lex_state = 252, .external_lex_state = 2}, + [2769] = {.lex_state = 252, .external_lex_state = 2}, + [2770] = {.lex_state = 252, .external_lex_state = 2}, + [2771] = {.lex_state = 34, .external_lex_state = 2}, + [2772] = {.lex_state = 34, .external_lex_state = 2}, + [2773] = {.lex_state = 34, .external_lex_state = 2}, + [2774] = {.lex_state = 252, .external_lex_state = 2}, + [2775] = {.lex_state = 252, .external_lex_state = 2}, + [2776] = {.lex_state = 39, .external_lex_state = 2}, + [2777] = {.lex_state = 252, .external_lex_state = 2}, + [2778] = {.lex_state = 252, .external_lex_state = 2}, + [2779] = {.lex_state = 252, .external_lex_state = 2}, + [2780] = {.lex_state = 252, .external_lex_state = 2}, + [2781] = {.lex_state = 252, .external_lex_state = 2}, + [2782] = {.lex_state = 252, .external_lex_state = 2}, + [2783] = {.lex_state = 252, .external_lex_state = 2}, + [2784] = {.lex_state = 252, .external_lex_state = 2}, + [2785] = {.lex_state = 252, .external_lex_state = 2}, + [2786] = {.lex_state = 252, .external_lex_state = 2}, + [2787] = {.lex_state = 252, .external_lex_state = 2}, + [2788] = {.lex_state = 252, .external_lex_state = 2}, + [2789] = {.lex_state = 39, .external_lex_state = 2}, + [2790] = {.lex_state = 252, .external_lex_state = 2}, + [2791] = {.lex_state = 252, .external_lex_state = 2}, + [2792] = {.lex_state = 252, .external_lex_state = 2}, + [2793] = {.lex_state = 34, .external_lex_state = 2}, + [2794] = {.lex_state = 252, .external_lex_state = 2}, + [2795] = {.lex_state = 252, .external_lex_state = 2}, + [2796] = {.lex_state = 252, .external_lex_state = 2}, + [2797] = {.lex_state = 252, .external_lex_state = 2}, + [2798] = {.lex_state = 252, .external_lex_state = 2}, + [2799] = {.lex_state = 252, .external_lex_state = 2}, + [2800] = {.lex_state = 34, .external_lex_state = 2}, + [2801] = {.lex_state = 34, .external_lex_state = 2}, + [2802] = {.lex_state = 39, .external_lex_state = 2}, + [2803] = {.lex_state = 39, .external_lex_state = 2}, + [2804] = {.lex_state = 252, .external_lex_state = 2}, + [2805] = {.lex_state = 34, .external_lex_state = 2}, + [2806] = {.lex_state = 252, .external_lex_state = 2}, + [2807] = {.lex_state = 34, .external_lex_state = 2}, + [2808] = {.lex_state = 39, .external_lex_state = 2}, + [2809] = {.lex_state = 252, .external_lex_state = 2}, + [2810] = {.lex_state = 252, .external_lex_state = 2}, + [2811] = {.lex_state = 252, .external_lex_state = 2}, + [2812] = {.lex_state = 252, .external_lex_state = 2}, + [2813] = {.lex_state = 34, .external_lex_state = 2}, + [2814] = {.lex_state = 252, .external_lex_state = 2}, + [2815] = {.lex_state = 252, .external_lex_state = 2}, + [2816] = {.lex_state = 252, .external_lex_state = 2}, + [2817] = {.lex_state = 252, .external_lex_state = 2}, + [2818] = {.lex_state = 252, .external_lex_state = 2}, + [2819] = {.lex_state = 252, .external_lex_state = 2}, + [2820] = {.lex_state = 252, .external_lex_state = 2}, + [2821] = {.lex_state = 252, .external_lex_state = 2}, + [2822] = {.lex_state = 252, .external_lex_state = 2}, + [2823] = {.lex_state = 252, .external_lex_state = 2}, + [2824] = {.lex_state = 39, .external_lex_state = 2}, + [2825] = {.lex_state = 39, .external_lex_state = 2}, + [2826] = {.lex_state = 252, .external_lex_state = 2}, + [2827] = {.lex_state = 34, .external_lex_state = 2}, + [2828] = {.lex_state = 39, .external_lex_state = 2}, + [2829] = {.lex_state = 34, .external_lex_state = 2}, + [2830] = {.lex_state = 34, .external_lex_state = 2}, + [2831] = {.lex_state = 252, .external_lex_state = 2}, + [2832] = {.lex_state = 39, .external_lex_state = 2}, + [2833] = {.lex_state = 252, .external_lex_state = 2}, + [2834] = {.lex_state = 252, .external_lex_state = 2}, + [2835] = {.lex_state = 252, .external_lex_state = 2}, + [2836] = {.lex_state = 252, .external_lex_state = 2}, + [2837] = {.lex_state = 252, .external_lex_state = 2}, + [2838] = {.lex_state = 39, .external_lex_state = 2}, + [2839] = {.lex_state = 252, .external_lex_state = 2}, + [2840] = {.lex_state = 34, .external_lex_state = 2}, + [2841] = {.lex_state = 252, .external_lex_state = 2}, + [2842] = {.lex_state = 34, .external_lex_state = 2}, + [2843] = {.lex_state = 252, .external_lex_state = 2}, + [2844] = {.lex_state = 252, .external_lex_state = 2}, + [2845] = {.lex_state = 252, .external_lex_state = 2}, + [2846] = {.lex_state = 39, .external_lex_state = 2}, + [2847] = {.lex_state = 252, .external_lex_state = 2}, + [2848] = {.lex_state = 252, .external_lex_state = 2}, + [2849] = {.lex_state = 252, .external_lex_state = 2}, + [2850] = {.lex_state = 39, .external_lex_state = 2}, + [2851] = {.lex_state = 252, .external_lex_state = 2}, + [2852] = {.lex_state = 252, .external_lex_state = 2}, + [2853] = {.lex_state = 34, .external_lex_state = 2}, + [2854] = {.lex_state = 252, .external_lex_state = 2}, + [2855] = {.lex_state = 34, .external_lex_state = 2}, + [2856] = {.lex_state = 34, .external_lex_state = 2}, + [2857] = {.lex_state = 252, .external_lex_state = 2}, + [2858] = {.lex_state = 252, .external_lex_state = 2}, + [2859] = {.lex_state = 252, .external_lex_state = 2}, + [2860] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13104,6 +13645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), [anon_sym_from] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), [anon_sym_var] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), @@ -13119,7 +13661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), - [anon_sym_with] = ACTIONS(1), [anon_sym_break] = ACTIONS(1), [anon_sym_continue] = ACTIONS(1), [anon_sym_debugger] = ACTIONS(1), @@ -13139,6 +13680,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_LT_SLASH] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_extends] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), @@ -13188,8 +13731,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1), @@ -13215,91 +13756,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1] = { - [sym_program] = STATE(2695), - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_program] = STATE(2742), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(1), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(61), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -13310,22 +13851,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -13343,82 +13884,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_object_assignment_pattern] = STATE(2058), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2709), - [sym_spread_element] = STATE(2059), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1405), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_object_assignment_pattern] = STATE(2155), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2760), + [sym_spread_element] = STATE(2086), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1387), [sym_comment] = STATE(2), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(1595), - [sym_formal_parameters] = STATE(2703), - [sym_rest_pattern] = STATE(2058), - [sym_method_definition] = STATE(2059), - [sym_pair] = STATE(2059), - [sym_pair_pattern] = STATE(2058), - [sym__property_name] = STATE(2060), - [sym_computed_property_name] = STATE(2554), - [aux_sym_program_repeat1] = STATE(54), - [aux_sym_export_statement_repeat1] = STATE(1517), - [aux_sym_object_repeat1] = STATE(2061), - [aux_sym_object_pattern_repeat1] = STATE(2064), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(1637), + [sym_formal_parameters] = STATE(2752), + [sym_rest_pattern] = STATE(2155), + [sym_method_definition] = STATE(2086), + [sym_pair] = STATE(2086), + [sym_pair_pattern] = STATE(2155), + [sym__property_name] = STATE(2143), + [sym_computed_property_name] = STATE(2582), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(1532), + [aux_sym_object_repeat1] = STATE(2085), + [aux_sym_object_pattern_repeat1] = STATE(2138), [sym_identifier] = ACTIONS(93), [anon_sym_export] = ACTIONS(95), [anon_sym_STAR] = ACTIONS(97), @@ -13426,18 +13967,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(99), [anon_sym_RBRACE] = ACTIONS(101), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(103), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -13448,23 +13989,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), [anon_sym_async] = ACTIONS(107), - [anon_sym_function] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(111), @@ -13483,101 +14024,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_object_assignment_pattern] = STATE(2058), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2709), - [sym_spread_element] = STATE(2059), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1405), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_object_assignment_pattern] = STATE(2155), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2760), + [sym_spread_element] = STATE(2086), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1387), [sym_comment] = STATE(3), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(1595), - [sym_formal_parameters] = STATE(2703), - [sym_rest_pattern] = STATE(2058), - [sym_method_definition] = STATE(2059), - [sym_pair] = STATE(2059), - [sym_pair_pattern] = STATE(2058), - [sym__property_name] = STATE(2060), - [sym_computed_property_name] = STATE(2554), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(1517), - [aux_sym_object_repeat1] = STATE(2061), - [aux_sym_object_pattern_repeat1] = STATE(2064), - [sym_identifier] = ACTIONS(93), - [anon_sym_export] = ACTIONS(95), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(1637), + [sym_formal_parameters] = STATE(2752), + [sym_rest_pattern] = STATE(2155), + [sym_method_definition] = STATE(2086), + [sym_pair] = STATE(2086), + [sym_pair_pattern] = STATE(2155), + [sym__property_name] = STATE(2143), + [sym_computed_property_name] = STATE(2582), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(1532), + [aux_sym_object_repeat1] = STATE(2085), + [aux_sym_object_pattern_repeat1] = STATE(2138), + [sym_identifier] = ACTIONS(123), + [anon_sym_export] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_RBRACE] = ACTIONS(101), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(103), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(127), + [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_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), @@ -13588,23 +14129,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(63), - [anon_sym_async] = ACTIONS(107), - [anon_sym_function] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(129), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(111), @@ -13616,108 +14157,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), + [anon_sym_static] = ACTIONS(131), [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(121), - [anon_sym_set] = ACTIONS(121), + [anon_sym_get] = ACTIONS(133), + [anon_sym_set] = ACTIONS(133), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_object_assignment_pattern] = STATE(2058), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2709), - [sym_spread_element] = STATE(2059), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1405), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_object_assignment_pattern] = STATE(2155), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2760), + [sym_spread_element] = STATE(2150), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1387), [sym_comment] = STATE(4), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(1595), - [sym_formal_parameters] = STATE(2703), - [sym_rest_pattern] = STATE(2058), - [sym_method_definition] = STATE(2059), - [sym_pair] = STATE(2059), - [sym_pair_pattern] = STATE(2058), - [sym__property_name] = STATE(2060), - [sym_computed_property_name] = STATE(2554), - [aux_sym_program_repeat1] = STATE(56), - [aux_sym_export_statement_repeat1] = STATE(1517), - [aux_sym_object_repeat1] = STATE(2061), - [aux_sym_object_pattern_repeat1] = STATE(2064), - [sym_identifier] = ACTIONS(93), - [anon_sym_export] = ACTIONS(95), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(1637), + [sym_formal_parameters] = STATE(2752), + [sym_rest_pattern] = STATE(2155), + [sym_method_definition] = STATE(2150), + [sym_pair] = STATE(2150), + [sym_pair_pattern] = STATE(2155), + [sym__property_name] = STATE(2143), + [sym_computed_property_name] = STATE(2582), + [aux_sym_program_repeat1] = STATE(49), + [aux_sym_export_statement_repeat1] = STATE(1532), + [aux_sym_object_repeat1] = STATE(2139), + [aux_sym_object_pattern_repeat1] = STATE(2138), + [sym_identifier] = ACTIONS(135), + [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(139), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(103), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(141), + [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_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), @@ -13728,23 +14269,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(63), - [anon_sym_async] = ACTIONS(107), - [anon_sym_function] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(111), @@ -13756,108 +14297,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), + [anon_sym_static] = ACTIONS(145), [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(121), - [anon_sym_set] = ACTIONS(121), + [anon_sym_get] = ACTIONS(147), + [anon_sym_set] = ACTIONS(147), [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_object_assignment_pattern] = STATE(2058), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2709), - [sym_spread_element] = STATE(2126), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1405), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_object_assignment_pattern] = STATE(2155), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2760), + [sym_spread_element] = STATE(2150), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1387), [sym_comment] = STATE(5), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(1595), - [sym_formal_parameters] = STATE(2703), - [sym_rest_pattern] = STATE(2058), - [sym_method_definition] = STATE(2126), - [sym_pair] = STATE(2126), - [sym_pair_pattern] = STATE(2058), - [sym__property_name] = STATE(2060), - [sym_computed_property_name] = STATE(2554), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(1517), - [aux_sym_object_repeat1] = STATE(2125), - [aux_sym_object_pattern_repeat1] = STATE(2064), - [sym_identifier] = ACTIONS(127), - [anon_sym_export] = ACTIONS(129), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(1637), + [sym_formal_parameters] = STATE(2752), + [sym_rest_pattern] = STATE(2155), + [sym_method_definition] = STATE(2150), + [sym_pair] = STATE(2150), + [sym_pair_pattern] = STATE(2155), + [sym__property_name] = STATE(2143), + [sym_computed_property_name] = STATE(2582), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(1532), + [aux_sym_object_repeat1] = STATE(2139), + [aux_sym_object_pattern_repeat1] = STATE(2138), + [sym_identifier] = ACTIONS(135), + [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(149), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(133), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(141), + [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_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), @@ -13868,23 +14409,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(63), - [anon_sym_async] = ACTIONS(135), - [anon_sym_function] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(111), @@ -13896,108 +14437,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(115), - [anon_sym_static] = ACTIONS(137), + [anon_sym_static] = ACTIONS(145), [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(139), + [anon_sym_get] = ACTIONS(147), + [anon_sym_set] = ACTIONS(147), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_object_assignment_pattern] = STATE(2058), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2709), - [sym_spread_element] = STATE(2126), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1405), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_object_assignment_pattern] = STATE(2155), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2760), + [sym_spread_element] = STATE(2150), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1387), [sym_comment] = STATE(6), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(1595), - [sym_formal_parameters] = STATE(2703), - [sym_rest_pattern] = STATE(2058), - [sym_method_definition] = STATE(2126), - [sym_pair] = STATE(2126), - [sym_pair_pattern] = STATE(2058), - [sym__property_name] = STATE(2060), - [sym_computed_property_name] = STATE(2554), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(1637), + [sym_formal_parameters] = STATE(2752), + [sym_rest_pattern] = STATE(2155), + [sym_method_definition] = STATE(2150), + [sym_pair] = STATE(2150), + [sym_pair_pattern] = STATE(2155), + [sym__property_name] = STATE(2143), + [sym_computed_property_name] = STATE(2582), [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(1517), - [aux_sym_object_repeat1] = STATE(2125), - [aux_sym_object_pattern_repeat1] = STATE(2064), - [sym_identifier] = ACTIONS(141), - [anon_sym_export] = ACTIONS(143), + [aux_sym_export_statement_repeat1] = STATE(1532), + [aux_sym_object_repeat1] = STATE(2139), + [aux_sym_object_pattern_repeat1] = STATE(2138), + [sym_identifier] = ACTIONS(135), + [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(145), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(141), + [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_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), @@ -14008,23 +14549,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(63), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(111), @@ -14036,108 +14577,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(115), - [anon_sym_static] = ACTIONS(149), + [anon_sym_static] = ACTIONS(145), [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(151), - [anon_sym_set] = ACTIONS(151), + [anon_sym_get] = ACTIONS(147), + [anon_sym_set] = ACTIONS(147), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_object_assignment_pattern] = STATE(2058), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2709), - [sym_spread_element] = STATE(2059), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1405), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_object_assignment_pattern] = STATE(2155), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2760), + [sym_spread_element] = STATE(2150), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1387), [sym_comment] = STATE(7), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(1595), - [sym_formal_parameters] = STATE(2703), - [sym_rest_pattern] = STATE(2058), - [sym_method_definition] = STATE(2059), - [sym_pair] = STATE(2059), - [sym_pair_pattern] = STATE(2058), - [sym__property_name] = STATE(2060), - [sym_computed_property_name] = STATE(2554), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1517), - [aux_sym_object_repeat1] = STATE(2061), - [aux_sym_object_pattern_repeat1] = STATE(2064), - [sym_identifier] = ACTIONS(93), - [anon_sym_export] = ACTIONS(95), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(1637), + [sym_formal_parameters] = STATE(2752), + [sym_rest_pattern] = STATE(2155), + [sym_method_definition] = STATE(2150), + [sym_pair] = STATE(2150), + [sym_pair_pattern] = STATE(2155), + [sym__property_name] = STATE(2143), + [sym_computed_property_name] = STATE(2582), + [aux_sym_program_repeat1] = STATE(38), + [aux_sym_export_statement_repeat1] = STATE(1532), + [aux_sym_object_repeat1] = STATE(2139), + [aux_sym_object_pattern_repeat1] = STATE(2138), + [sym_identifier] = ACTIONS(135), + [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(99), [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(103), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(141), + [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_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), @@ -14148,23 +14689,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(63), - [anon_sym_async] = ACTIONS(107), - [anon_sym_function] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(111), @@ -14176,108 +14717,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), + [anon_sym_static] = ACTIONS(145), [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(121), - [anon_sym_set] = ACTIONS(121), + [anon_sym_get] = ACTIONS(147), + [anon_sym_set] = ACTIONS(147), [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_object_assignment_pattern] = STATE(2058), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2709), - [sym_spread_element] = STATE(2059), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1405), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_object_assignment_pattern] = STATE(2155), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2760), + [sym_spread_element] = STATE(2150), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1387), [sym_comment] = STATE(8), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(1595), - [sym_formal_parameters] = STATE(2703), - [sym_rest_pattern] = STATE(2058), - [sym_method_definition] = STATE(2059), - [sym_pair] = STATE(2059), - [sym_pair_pattern] = STATE(2058), - [sym__property_name] = STATE(2060), - [sym_computed_property_name] = STATE(2554), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_export_statement_repeat1] = STATE(1517), - [aux_sym_object_repeat1] = STATE(2061), - [aux_sym_object_pattern_repeat1] = STATE(2064), - [sym_identifier] = ACTIONS(93), - [anon_sym_export] = ACTIONS(95), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(1637), + [sym_formal_parameters] = STATE(2752), + [sym_rest_pattern] = STATE(2155), + [sym_method_definition] = STATE(2150), + [sym_pair] = STATE(2150), + [sym_pair_pattern] = STATE(2155), + [sym__property_name] = STATE(2143), + [sym_computed_property_name] = STATE(2582), + [aux_sym_program_repeat1] = STATE(35), + [aux_sym_export_statement_repeat1] = STATE(1532), + [aux_sym_object_repeat1] = STATE(2139), + [aux_sym_object_pattern_repeat1] = STATE(2138), + [sym_identifier] = ACTIONS(135), + [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(99), [anon_sym_RBRACE] = ACTIONS(155), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(103), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(141), + [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_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), @@ -14288,23 +14829,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(63), - [anon_sym_async] = ACTIONS(107), - [anon_sym_function] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(111), @@ -14316,108 +14857,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), + [anon_sym_static] = ACTIONS(145), [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(121), - [anon_sym_set] = ACTIONS(121), + [anon_sym_get] = ACTIONS(147), + [anon_sym_set] = ACTIONS(147), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_object_assignment_pattern] = STATE(2058), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2709), - [sym_spread_element] = STATE(2059), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1405), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_object_assignment_pattern] = STATE(2155), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2760), + [sym_spread_element] = STATE(2150), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1387), [sym_comment] = STATE(9), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(1595), - [sym_formal_parameters] = STATE(2703), - [sym_rest_pattern] = STATE(2058), - [sym_method_definition] = STATE(2059), - [sym_pair] = STATE(2059), - [sym_pair_pattern] = STATE(2058), - [sym__property_name] = STATE(2060), - [sym_computed_property_name] = STATE(2554), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(1517), - [aux_sym_object_repeat1] = STATE(2061), - [aux_sym_object_pattern_repeat1] = STATE(2064), - [sym_identifier] = ACTIONS(93), - [anon_sym_export] = ACTIONS(95), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(1637), + [sym_formal_parameters] = STATE(2752), + [sym_rest_pattern] = STATE(2155), + [sym_method_definition] = STATE(2150), + [sym_pair] = STATE(2150), + [sym_pair_pattern] = STATE(2155), + [sym__property_name] = STATE(2143), + [sym_computed_property_name] = STATE(2582), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(1532), + [aux_sym_object_repeat1] = STATE(2139), + [aux_sym_object_pattern_repeat1] = STATE(2138), + [sym_identifier] = ACTIONS(135), + [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(99), [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(103), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(141), + [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_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), @@ -14428,23 +14969,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(63), - [anon_sym_async] = ACTIONS(107), - [anon_sym_function] = ACTIONS(67), - [anon_sym_new] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(143), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(111), @@ -14456,124 +14997,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(115), - [anon_sym_static] = ACTIONS(117), + [anon_sym_static] = ACTIONS(145), [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(121), - [anon_sym_set] = ACTIONS(121), + [anon_sym_get] = ACTIONS(147), + [anon_sym_set] = ACTIONS(147), [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(883), - [sym_declaration] = STATE(883), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(883), - [sym_expression_statement] = STATE(883), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(883), - [sym_if_statement] = STATE(883), - [sym_switch_statement] = STATE(883), - [sym_for_statement] = STATE(883), - [sym_for_in_statement] = STATE(883), - [sym_while_statement] = STATE(883), - [sym_do_statement] = STATE(883), - [sym_try_statement] = STATE(883), - [sym_with_statement] = STATE(883), - [sym_break_statement] = STATE(883), - [sym_continue_statement] = STATE(883), - [sym_debugger_statement] = STATE(883), - [sym_return_statement] = STATE(883), - [sym_throw_statement] = STATE(883), - [sym_empty_statement] = STATE(883), - [sym_labeled_statement] = STATE(883), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(864), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), [sym_comment] = STATE(10), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(1816), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(1880), [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), - [anon_sym_default] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(163), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_case] = ACTIONS(163), + [anon_sym_export] = ACTIONS(162), + [anon_sym_default] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(165), + [anon_sym_import] = ACTIONS(170), + [anon_sym_with] = ACTIONS(173), + [anon_sym_var] = ACTIONS(176), + [anon_sym_let] = ACTIONS(179), + [anon_sym_const] = ACTIONS(182), + [anon_sym_if] = ACTIONS(185), + [anon_sym_switch] = ACTIONS(188), + [anon_sym_for] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(194), + [anon_sym_await] = ACTIONS(197), + [anon_sym_while] = ACTIONS(200), + [anon_sym_do] = ACTIONS(203), + [anon_sym_try] = ACTIONS(206), + [anon_sym_break] = ACTIONS(209), + [anon_sym_continue] = ACTIONS(212), + [anon_sym_debugger] = ACTIONS(215), + [anon_sym_return] = ACTIONS(218), + [anon_sym_throw] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(224), + [anon_sym_case] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(230), + [anon_sym_LTtemplate_GT] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_SQUOTE] = ACTIONS(242), + [anon_sym_class] = ACTIONS(245), + [anon_sym_async] = ACTIONS(248), + [anon_sym_function] = ACTIONS(251), + [anon_sym_new] = ACTIONS(254), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_typeof] = ACTIONS(257), + [anon_sym_void] = ACTIONS(257), + [anon_sym_delete] = ACTIONS(257), + [anon_sym_PLUS_PLUS] = ACTIONS(263), + [anon_sym_DASH_DASH] = ACTIONS(263), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(266), + [sym_number] = ACTIONS(269), + [sym_private_property_identifier] = ACTIONS(272), + [sym_this] = ACTIONS(269), + [sym_super] = ACTIONS(269), + [sym_true] = ACTIONS(269), + [sym_false] = ACTIONS(269), + [sym_null] = ACTIONS(269), + [sym_undefined] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(278), + [anon_sym_static] = ACTIONS(281), + [anon_sym_get] = ACTIONS(281), + [anon_sym_set] = ACTIONS(281), + [sym_html_comment] = ACTIONS(5), + }, + [11] = { + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(864), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), + [sym_comment] = STATE(11), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), + [anon_sym_default] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_RBRACE] = ACTIONS(288), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_case] = ACTIONS(288), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -14585,251 +15254,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), - [sym_html_comment] = ACTIONS(5), - }, - [11] = { - [sym_export_statement] = STATE(883), - [sym_declaration] = STATE(883), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(883), - [sym_expression_statement] = STATE(883), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(883), - [sym_if_statement] = STATE(883), - [sym_switch_statement] = STATE(883), - [sym_for_statement] = STATE(883), - [sym_for_in_statement] = STATE(883), - [sym_while_statement] = STATE(883), - [sym_do_statement] = STATE(883), - [sym_try_statement] = STATE(883), - [sym_with_statement] = STATE(883), - [sym_break_statement] = STATE(883), - [sym_continue_statement] = STATE(883), - [sym_debugger_statement] = STATE(883), - [sym_return_statement] = STATE(883), - [sym_throw_statement] = STATE(883), - [sym_empty_statement] = STATE(883), - [sym_labeled_statement] = STATE(883), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), - [sym_comment] = STATE(11), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(209), - [anon_sym_export] = ACTIONS(212), - [anon_sym_default] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(217), - [anon_sym_RBRACE] = ACTIONS(215), - [anon_sym_import] = ACTIONS(220), - [anon_sym_var] = ACTIONS(223), - [anon_sym_let] = ACTIONS(226), - [anon_sym_const] = ACTIONS(229), - [anon_sym_if] = ACTIONS(232), - [anon_sym_switch] = ACTIONS(235), - [anon_sym_for] = ACTIONS(238), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_await] = ACTIONS(244), - [anon_sym_while] = ACTIONS(247), - [anon_sym_do] = ACTIONS(250), - [anon_sym_try] = ACTIONS(253), - [anon_sym_with] = ACTIONS(256), - [anon_sym_break] = ACTIONS(259), - [anon_sym_continue] = ACTIONS(262), - [anon_sym_debugger] = ACTIONS(265), - [anon_sym_return] = ACTIONS(268), - [anon_sym_throw] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(274), - [anon_sym_case] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_LTtemplate_GT] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_class] = ACTIONS(289), - [anon_sym_async] = ACTIONS(292), - [anon_sym_function] = ACTIONS(295), - [anon_sym_new] = ACTIONS(298), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(304), - [anon_sym_BANG] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(301), - [anon_sym_void] = ACTIONS(301), - [anon_sym_delete] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_SQUOTE] = ACTIONS(313), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(316), - [sym_number] = ACTIONS(319), - [sym_private_property_identifier] = ACTIONS(322), - [sym_this] = ACTIONS(319), - [sym_super] = ACTIONS(319), - [sym_true] = ACTIONS(319), - [sym_false] = ACTIONS(319), - [sym_null] = ACTIONS(319), - [sym_undefined] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(328), - [anon_sym_static] = ACTIONS(331), - [anon_sym_get] = ACTIONS(331), - [anon_sym_set] = ACTIONS(331), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(883), - [sym_declaration] = STATE(883), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(883), - [sym_expression_statement] = STATE(883), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(883), - [sym_if_statement] = STATE(883), - [sym_switch_statement] = STATE(883), - [sym_for_statement] = STATE(883), - [sym_for_in_statement] = STATE(883), - [sym_while_statement] = STATE(883), - [sym_do_statement] = STATE(883), - [sym_try_statement] = STATE(883), - [sym_with_statement] = STATE(883), - [sym_break_statement] = STATE(883), - [sym_continue_statement] = STATE(883), - [sym_debugger_statement] = STATE(883), - [sym_return_statement] = STATE(883), - [sym_throw_statement] = STATE(883), - [sym_empty_statement] = STATE(883), - [sym_labeled_statement] = STATE(883), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(864), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), [sym_comment] = STATE(12), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), [anon_sym_default] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(290), [anon_sym_RBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_case] = ACTIONS(334), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -14841,123 +15382,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(883), - [sym_declaration] = STATE(883), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(883), - [sym_expression_statement] = STATE(883), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(883), - [sym_if_statement] = STATE(883), - [sym_switch_statement] = STATE(883), - [sym_for_statement] = STATE(883), - [sym_for_in_statement] = STATE(883), - [sym_while_statement] = STATE(883), - [sym_do_statement] = STATE(883), - [sym_try_statement] = STATE(883), - [sym_with_statement] = STATE(883), - [sym_break_statement] = STATE(883), - [sym_continue_statement] = STATE(883), - [sym_debugger_statement] = STATE(883), - [sym_return_statement] = STATE(883), - [sym_throw_statement] = STATE(883), - [sym_empty_statement] = STATE(883), - [sym_labeled_statement] = STATE(883), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(864), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), [sym_comment] = STATE(13), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), [anon_sym_default] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(290), [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_case] = ACTIONS(336), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -14969,123 +15510,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(883), - [sym_declaration] = STATE(883), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(883), - [sym_expression_statement] = STATE(883), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(883), - [sym_if_statement] = STATE(883), - [sym_switch_statement] = STATE(883), - [sym_for_statement] = STATE(883), - [sym_for_in_statement] = STATE(883), - [sym_while_statement] = STATE(883), - [sym_do_statement] = STATE(883), - [sym_try_statement] = STATE(883), - [sym_with_statement] = STATE(883), - [sym_break_statement] = STATE(883), - [sym_continue_statement] = STATE(883), - [sym_debugger_statement] = STATE(883), - [sym_return_statement] = STATE(883), - [sym_throw_statement] = STATE(883), - [sym_empty_statement] = STATE(883), - [sym_labeled_statement] = STATE(883), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(864), + [sym_declaration] = STATE(864), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(864), + [sym_expression_statement] = STATE(864), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_for_in_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_with_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_debugger_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_empty_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), [sym_comment] = STATE(14), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), [anon_sym_default] = ACTIONS(338), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(290), [anon_sym_RBRACE] = ACTIONS(338), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_case] = ACTIONS(338), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -15097,222 +15638,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(15), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [ts_builtin_sym_end] = ACTIONS(340), [sym_identifier] = ACTIONS(342), [anon_sym_export] = ACTIONS(345), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(165), [anon_sym_import] = ACTIONS(351), - [anon_sym_var] = ACTIONS(354), - [anon_sym_let] = ACTIONS(357), - [anon_sym_const] = ACTIONS(360), - [anon_sym_if] = ACTIONS(363), - [anon_sym_switch] = ACTIONS(366), - [anon_sym_for] = ACTIONS(369), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_await] = ACTIONS(244), - [anon_sym_while] = ACTIONS(372), - [anon_sym_do] = ACTIONS(375), - [anon_sym_try] = ACTIONS(378), - [anon_sym_with] = ACTIONS(381), + [anon_sym_with] = ACTIONS(354), + [anon_sym_var] = ACTIONS(357), + [anon_sym_let] = ACTIONS(360), + [anon_sym_const] = ACTIONS(363), + [anon_sym_if] = ACTIONS(366), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_for] = ACTIONS(372), + [anon_sym_LPAREN] = ACTIONS(194), + [anon_sym_await] = ACTIONS(197), + [anon_sym_while] = ACTIONS(375), + [anon_sym_do] = ACTIONS(378), + [anon_sym_try] = ACTIONS(381), [anon_sym_break] = ACTIONS(384), [anon_sym_continue] = ACTIONS(387), [anon_sym_debugger] = ACTIONS(390), [anon_sym_return] = ACTIONS(393), [anon_sym_throw] = ACTIONS(396), [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(280), - [anon_sym_LTtemplate_GT] = ACTIONS(283), - [anon_sym_LT] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(230), + [anon_sym_LTtemplate_GT] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_SQUOTE] = ACTIONS(242), [anon_sym_class] = ACTIONS(402), [anon_sym_async] = ACTIONS(405), [anon_sym_function] = ACTIONS(408), - [anon_sym_new] = ACTIONS(298), - [anon_sym_PLUS] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(301), - [anon_sym_SLASH] = ACTIONS(304), - [anon_sym_BANG] = ACTIONS(301), - [anon_sym_TILDE] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(301), - [anon_sym_void] = ACTIONS(301), - [anon_sym_delete] = ACTIONS(301), - [anon_sym_PLUS_PLUS] = ACTIONS(307), - [anon_sym_DASH_DASH] = ACTIONS(307), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_SQUOTE] = ACTIONS(313), + [anon_sym_new] = ACTIONS(254), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_typeof] = ACTIONS(257), + [anon_sym_void] = ACTIONS(257), + [anon_sym_delete] = ACTIONS(257), + [anon_sym_PLUS_PLUS] = ACTIONS(263), + [anon_sym_DASH_DASH] = ACTIONS(263), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(316), - [sym_number] = ACTIONS(319), - [sym_private_property_identifier] = ACTIONS(322), - [sym_this] = ACTIONS(319), - [sym_super] = ACTIONS(319), - [sym_true] = ACTIONS(319), - [sym_false] = ACTIONS(319), - [sym_null] = ACTIONS(319), - [sym_undefined] = ACTIONS(325), - [anon_sym_AT] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(266), + [sym_number] = ACTIONS(269), + [sym_private_property_identifier] = ACTIONS(272), + [sym_this] = ACTIONS(269), + [sym_super] = ACTIONS(269), + [sym_true] = ACTIONS(269), + [sym_false] = ACTIONS(269), + [sym_null] = ACTIONS(269), + [sym_undefined] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(278), [anon_sym_static] = ACTIONS(411), [anon_sym_get] = ACTIONS(411), [anon_sym_set] = ACTIONS(411), [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(16), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(414), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -15323,22 +15864,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -15356,89 +15897,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(17), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(59), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(416), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -15449,22 +15990,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -15482,89 +16023,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(18), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -15575,22 +16116,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -15608,89 +16149,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(19), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(420), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -15701,22 +16242,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -15734,89 +16275,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(20), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(66), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(422), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -15827,22 +16368,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -15860,89 +16401,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(21), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(424), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -15953,22 +16494,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -15986,89 +16527,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(22), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(426), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -16079,22 +16620,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -16112,89 +16653,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(23), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(428), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -16205,22 +16746,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -16238,89 +16779,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(24), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(430), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -16331,22 +16872,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -16364,89 +16905,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(25), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(49), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(432), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -16457,22 +16998,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -16490,89 +17031,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(26), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(434), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -16583,22 +17124,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -16616,89 +17157,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(27), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(41), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(436), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -16709,22 +17250,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -16742,89 +17283,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(28), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(438), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -16835,22 +17376,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -16868,89 +17409,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(29), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(56), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(440), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -16961,22 +17502,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -16994,89 +17535,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(30), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(54), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(442), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -17087,22 +17628,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -17120,89 +17661,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(31), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -17213,22 +17754,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -17246,89 +17787,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(32), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(446), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -17339,22 +17880,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -17372,89 +17913,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(33), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(448), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -17465,22 +18006,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -17498,89 +18039,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(34), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(63), + [aux_sym_export_statement_repeat1] = STATE(1859), + [ts_builtin_sym_end] = ACTIONS(450), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(450), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -17591,22 +18132,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -17624,89 +18165,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(35), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(452), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -17717,22 +18258,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -17750,89 +18291,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(36), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(38), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(454), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -17843,22 +18384,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -17876,89 +18417,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(37), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(456), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -17969,22 +18510,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -18002,89 +18543,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(38), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(458), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -18095,22 +18636,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -18128,89 +18669,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(39), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(45), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(68), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -18221,22 +18762,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -18254,89 +18795,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(40), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(42), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(462), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -18347,22 +18888,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -18380,89 +18921,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(41), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(35), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(464), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -18473,22 +19014,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -18506,89 +19047,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(42), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(466), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -18599,22 +19140,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -18632,89 +19173,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(43), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(31), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(468), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -18725,22 +19266,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -18758,89 +19299,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(44), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(470), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -18851,22 +19392,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -18884,89 +19425,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(45), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(472), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -18977,22 +19518,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -19010,89 +19551,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(46), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(48), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(474), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -19103,22 +19644,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -19136,89 +19677,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(47), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(476), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -19229,22 +19770,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -19262,89 +19803,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(48), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(46), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(478), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -19355,22 +19896,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -19388,89 +19929,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [49] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(49), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(480), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -19481,22 +20022,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -19514,89 +20055,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [50] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(50), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(44), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(47), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(482), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -19607,22 +20148,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -19640,89 +20181,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [51] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(51), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(49), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(53), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(484), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -19733,22 +20274,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -19766,89 +20307,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [52] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(52), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(55), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -19859,22 +20400,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -19892,89 +20433,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [53] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(53), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(52), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(488), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -19985,22 +20526,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -20018,89 +20559,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [54] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(54), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -20111,22 +20652,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -20144,89 +20685,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [55] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(55), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(57), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(492), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -20237,22 +20778,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -20270,89 +20811,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [56] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(56), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(57), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(494), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -20363,22 +20904,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -20396,89 +20937,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [57] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(57), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(496), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -20489,22 +21030,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -20522,89 +21063,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [58] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(58), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(63), - [aux_sym_export_statement_repeat1] = STATE(1850), - [ts_builtin_sym_end] = ACTIONS(498), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(59), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(498), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -20615,22 +21156,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -20648,89 +21189,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [59] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(59), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(500), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -20741,22 +21282,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -20774,89 +21315,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [60] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(60), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(62), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(502), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -20867,22 +21408,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -20900,89 +21441,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(61), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), - [ts_builtin_sym_end] = ACTIONS(498), + [aux_sym_export_statement_repeat1] = STATE(1859), + [ts_builtin_sym_end] = ACTIONS(450), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -20993,22 +21534,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -21026,89 +21567,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(62), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(504), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -21119,22 +21660,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -21152,89 +21693,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(63), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [aux_sym_export_statement_repeat1] = STATE(1859), [ts_builtin_sym_end] = ACTIONS(506), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -21245,22 +21786,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -21278,89 +21819,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(64), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(34), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(38), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(508), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -21371,22 +21912,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -21404,89 +21945,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(65), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(67), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(510), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -21497,22 +22038,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -21530,89 +22071,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [66] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(66), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(31), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(512), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -21623,22 +22164,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -21656,89 +22197,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(67), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(65), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(514), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -21749,22 +22290,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -21782,89 +22323,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(921), + [sym_declaration] = STATE(921), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_for_in_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_with_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_debugger_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_empty_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(68), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_program_repeat1] = STATE(37), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(516), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -21875,22 +22416,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -21908,113 +22449,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_export_statement] = STATE(966), - [sym_declaration] = STATE(966), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(966), - [sym_expression_statement] = STATE(966), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(966), - [sym_if_statement] = STATE(966), - [sym_switch_statement] = STATE(966), - [sym_for_statement] = STATE(966), - [sym_for_in_statement] = STATE(966), - [sym_while_statement] = STATE(966), - [sym_do_statement] = STATE(966), - [sym_try_statement] = STATE(966), - [sym_with_statement] = STATE(966), - [sym_break_statement] = STATE(966), - [sym_continue_statement] = STATE(966), - [sym_debugger_statement] = STATE(966), - [sym_return_statement] = STATE(966), - [sym_throw_statement] = STATE(966), - [sym_empty_statement] = STATE(966), - [sym_labeled_statement] = STATE(966), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(747), + [sym_declaration] = STATE(747), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(747), + [sym_expression_statement] = STATE(747), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_statement_block] = STATE(747), + [sym_if_statement] = STATE(747), + [sym_switch_statement] = STATE(747), + [sym_for_statement] = STATE(747), + [sym_for_in_statement] = STATE(747), + [sym_while_statement] = STATE(747), + [sym_do_statement] = STATE(747), + [sym_try_statement] = STATE(747), + [sym_with_statement] = STATE(747), + [sym_break_statement] = STATE(747), + [sym_continue_statement] = STATE(747), + [sym_debugger_statement] = STATE(747), + [sym_return_statement] = STATE(747), + [sym_throw_statement] = STATE(747), + [sym_empty_statement] = STATE(747), + [sym_labeled_statement] = STATE(747), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2229), + [sym_string] = STATE(1285), [sym_comment] = STATE(69), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1850), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = 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_SEMI] = ACTIONS(53), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1885), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_import] = ACTIONS(524), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(542), + [anon_sym_try] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_debugger] = ACTIONS(550), + [anon_sym_return] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(556), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -22026,119 +22567,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(91), - [anon_sym_get] = ACTIONS(91), - [anon_sym_set] = ACTIONS(91), + [anon_sym_static] = ACTIONS(564), + [anon_sym_get] = ACTIONS(564), + [anon_sym_set] = ACTIONS(564), [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_export_statement] = STATE(978), - [sym_declaration] = STATE(978), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(978), - [sym_expression_statement] = STATE(978), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(978), - [sym_if_statement] = STATE(978), - [sym_switch_statement] = STATE(978), - [sym_for_statement] = STATE(978), - [sym_for_in_statement] = STATE(978), - [sym_while_statement] = STATE(978), - [sym_do_statement] = STATE(978), - [sym_try_statement] = STATE(978), - [sym_with_statement] = STATE(978), - [sym_break_statement] = STATE(978), - [sym_continue_statement] = STATE(978), - [sym_debugger_statement] = STATE(978), - [sym_return_statement] = STATE(978), - [sym_throw_statement] = STATE(978), - [sym_empty_statement] = STATE(978), - [sym_labeled_statement] = STATE(978), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(786), + [sym_declaration] = STATE(785), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(784), + [sym_expression_statement] = STATE(783), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_statement_block] = STATE(782), + [sym_if_statement] = STATE(781), + [sym_switch_statement] = STATE(780), + [sym_for_statement] = STATE(779), + [sym_for_in_statement] = STATE(778), + [sym_while_statement] = STATE(777), + [sym_do_statement] = STATE(776), + [sym_try_statement] = STATE(775), + [sym_with_statement] = STATE(774), + [sym_break_statement] = STATE(773), + [sym_continue_statement] = STATE(772), + [sym_debugger_statement] = STATE(771), + [sym_return_statement] = STATE(770), + [sym_throw_statement] = STATE(769), + [sym_empty_statement] = STATE(768), + [sym_labeled_statement] = STATE(767), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2229), + [sym_string] = STATE(1285), [sym_comment] = STATE(70), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1850), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = 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_SEMI] = ACTIONS(53), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1885), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_import] = ACTIONS(524), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(542), + [anon_sym_try] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_debugger] = ACTIONS(550), + [anon_sym_return] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(556), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -22150,93 +22691,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(91), - [anon_sym_get] = ACTIONS(91), - [anon_sym_set] = ACTIONS(91), + [anon_sym_static] = ACTIONS(564), + [anon_sym_get] = ACTIONS(564), + [anon_sym_set] = ACTIONS(564), [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_export_statement] = STATE(656), - [sym_declaration] = STATE(656), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(656), - [sym_expression_statement] = STATE(656), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_statement_block] = STATE(656), - [sym_if_statement] = STATE(656), - [sym_switch_statement] = STATE(656), - [sym_for_statement] = STATE(656), - [sym_for_in_statement] = STATE(656), - [sym_while_statement] = STATE(656), - [sym_do_statement] = STATE(656), - [sym_try_statement] = STATE(656), - [sym_with_statement] = STATE(656), - [sym_break_statement] = STATE(656), - [sym_continue_statement] = STATE(656), - [sym_debugger_statement] = STATE(656), - [sym_return_statement] = STATE(656), - [sym_throw_statement] = STATE(656), - [sym_empty_statement] = STATE(656), - [sym_labeled_statement] = STATE(656), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2502), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(710), + [sym_declaration] = STATE(710), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(710), + [sym_expression_statement] = STATE(710), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(710), + [sym_if_statement] = STATE(710), + [sym_switch_statement] = STATE(710), + [sym_for_statement] = STATE(710), + [sym_for_in_statement] = STATE(710), + [sym_while_statement] = STATE(710), + [sym_do_statement] = STATE(710), + [sym_try_statement] = STATE(710), + [sym_with_statement] = STATE(710), + [sym_break_statement] = STATE(710), + [sym_continue_statement] = STATE(710), + [sym_debugger_statement] = STATE(710), + [sym_return_statement] = STATE(710), + [sym_throw_statement] = STATE(710), + [sym_empty_statement] = STATE(710), + [sym_labeled_statement] = STATE(710), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), [sym_comment] = STATE(71), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1830), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), + [sym_html_comment] = ACTIONS(5), + }, + [72] = { + [sym_export_statement] = STATE(2744), + [sym_declaration] = STATE(2744), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2744), + [sym_expression_statement] = STATE(2744), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2744), + [sym_if_statement] = STATE(2744), + [sym_switch_statement] = STATE(2744), + [sym_for_statement] = STATE(2744), + [sym_for_in_statement] = STATE(2744), + [sym_while_statement] = STATE(2744), + [sym_do_statement] = STATE(2744), + [sym_try_statement] = STATE(2744), + [sym_with_statement] = STATE(2744), + [sym_break_statement] = STATE(2744), + [sym_continue_statement] = STATE(2744), + [sym_debugger_statement] = STATE(2744), + [sym_return_statement] = STATE(2744), + [sym_throw_statement] = STATE(2744), + [sym_empty_statement] = STATE(2744), + [sym_labeled_statement] = STATE(2744), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), + [sym_comment] = STATE(72), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(572), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_debugger] = ACTIONS(598), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(608), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), + [sym_html_comment] = ACTIONS(5), + }, + [73] = { + [sym_export_statement] = STATE(736), + [sym_declaration] = STATE(736), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(736), + [sym_expression_statement] = STATE(736), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_statement_block] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_for_in_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_do_statement] = STATE(736), + [sym_try_statement] = STATE(736), + [sym_with_statement] = STATE(736), + [sym_break_statement] = STATE(736), + [sym_continue_statement] = STATE(736), + [sym_debugger_statement] = STATE(736), + [sym_return_statement] = STATE(736), + [sym_throw_statement] = STATE(736), + [sym_empty_statement] = STATE(736), + [sym_labeled_statement] = STATE(736), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2229), + [sym_string] = STATE(1285), + [sym_comment] = STATE(73), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1885), [sym_identifier] = ACTIONS(518), [anon_sym_export] = ACTIONS(520), [anon_sym_LBRACE] = ACTIONS(522), [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(528), - [anon_sym_const] = ACTIONS(530), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(544), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(542), + [anon_sym_try] = ACTIONS(544), [anon_sym_break] = ACTIONS(546), [anon_sym_continue] = ACTIONS(548), [anon_sym_debugger] = ACTIONS(550), @@ -22247,22 +23036,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(558), [anon_sym_async] = ACTIONS(560), [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -22279,238 +23068,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(564), [sym_html_comment] = ACTIONS(5), }, - [72] = { - [sym_export_statement] = STATE(865), - [sym_declaration] = STATE(865), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(865), - [sym_expression_statement] = STATE(865), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_statement_block] = STATE(865), - [sym_if_statement] = STATE(865), - [sym_switch_statement] = STATE(865), - [sym_for_statement] = STATE(865), - [sym_for_in_statement] = STATE(865), - [sym_while_statement] = STATE(865), - [sym_do_statement] = STATE(865), - [sym_try_statement] = STATE(865), - [sym_with_statement] = STATE(865), - [sym_break_statement] = STATE(865), - [sym_continue_statement] = STATE(865), - [sym_debugger_statement] = STATE(865), - [sym_return_statement] = STATE(865), - [sym_throw_statement] = STATE(865), - [sym_empty_statement] = STATE(865), - [sym_labeled_statement] = STATE(865), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2190), - [sym_string] = STATE(1312), - [sym_comment] = STATE(72), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1801), - [sym_identifier] = ACTIONS(566), - [anon_sym_export] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_import] = ACTIONS(572), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(576), - [anon_sym_const] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_try] = ACTIONS(590), - [anon_sym_with] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_debugger] = ACTIONS(598), - [anon_sym_return] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(606), - [anon_sym_async] = ACTIONS(608), - [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), - [sym_html_comment] = ACTIONS(5), - }, - [73] = { - [sym_export_statement] = STATE(2723), - [sym_declaration] = STATE(2723), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2723), - [sym_expression_statement] = STATE(2723), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2723), - [sym_if_statement] = STATE(2723), - [sym_switch_statement] = STATE(2723), - [sym_for_statement] = STATE(2723), - [sym_for_in_statement] = STATE(2723), - [sym_while_statement] = STATE(2723), - [sym_do_statement] = STATE(2723), - [sym_try_statement] = STATE(2723), - [sym_with_statement] = STATE(2723), - [sym_break_statement] = STATE(2723), - [sym_continue_statement] = STATE(2723), - [sym_debugger_statement] = STATE(2723), - [sym_return_statement] = STATE(2723), - [sym_throw_statement] = STATE(2723), - [sym_empty_statement] = STATE(2723), - [sym_labeled_statement] = STATE(2723), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), - [sym_comment] = STATE(73), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), - [sym_identifier] = ACTIONS(614), - [anon_sym_export] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_debugger] = ACTIONS(646), - [anon_sym_return] = ACTIONS(648), - [anon_sym_throw] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(652), + [74] = { + [sym_export_statement] = STATE(716), + [sym_declaration] = STATE(716), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(716), + [sym_expression_statement] = STATE(716), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(716), + [sym_if_statement] = STATE(716), + [sym_switch_statement] = STATE(716), + [sym_for_statement] = STATE(716), + [sym_for_in_statement] = STATE(716), + [sym_while_statement] = STATE(716), + [sym_do_statement] = STATE(716), + [sym_try_statement] = STATE(716), + [sym_with_statement] = STATE(716), + [sym_break_statement] = STATE(716), + [sym_continue_statement] = STATE(716), + [sym_debugger_statement] = STATE(716), + [sym_return_statement] = STATE(716), + [sym_throw_statement] = STATE(716), + [sym_empty_statement] = STATE(716), + [sym_labeled_statement] = STATE(716), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), + [sym_comment] = STATE(74), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -22522,119 +23187,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(660), - [anon_sym_get] = ACTIONS(660), - [anon_sym_set] = ACTIONS(660), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [sym_export_statement] = STATE(678), - [sym_declaration] = STATE(678), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(678), - [sym_expression_statement] = STATE(678), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(678), - [sym_if_statement] = STATE(678), - [sym_switch_statement] = STATE(678), - [sym_for_statement] = STATE(678), - [sym_for_in_statement] = STATE(678), - [sym_while_statement] = STATE(678), - [sym_do_statement] = STATE(678), - [sym_try_statement] = STATE(678), - [sym_with_statement] = STATE(678), - [sym_break_statement] = STATE(678), - [sym_continue_statement] = STATE(678), - [sym_debugger_statement] = STATE(678), - [sym_return_statement] = STATE(678), - [sym_throw_statement] = STATE(678), - [sym_empty_statement] = STATE(678), - [sym_labeled_statement] = STATE(678), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), - [sym_comment] = STATE(74), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [75] = { + [sym_export_statement] = STATE(919), + [sym_declaration] = STATE(919), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(919), + [sym_expression_statement] = STATE(919), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(919), + [sym_if_statement] = STATE(919), + [sym_switch_statement] = STATE(919), + [sym_for_statement] = STATE(919), + [sym_for_in_statement] = STATE(919), + [sym_while_statement] = STATE(919), + [sym_do_statement] = STATE(919), + [sym_try_statement] = STATE(919), + [sym_with_statement] = STATE(919), + [sym_break_statement] = STATE(919), + [sym_continue_statement] = STATE(919), + [sym_debugger_statement] = STATE(919), + [sym_return_statement] = STATE(919), + [sym_throw_statement] = STATE(919), + [sym_empty_statement] = STATE(919), + [sym_labeled_statement] = STATE(919), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), + [sym_comment] = STATE(75), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1859), + [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_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_SEMI] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -22646,119 +23311,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_export_statement] = STATE(640), - [sym_declaration] = STATE(640), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(640), - [sym_expression_statement] = STATE(640), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_statement_block] = STATE(640), - [sym_if_statement] = STATE(640), - [sym_switch_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_for_in_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_do_statement] = STATE(640), - [sym_try_statement] = STATE(640), - [sym_with_statement] = STATE(640), - [sym_break_statement] = STATE(640), - [sym_continue_statement] = STATE(640), - [sym_debugger_statement] = STATE(640), - [sym_return_statement] = STATE(640), - [sym_throw_statement] = STATE(640), - [sym_empty_statement] = STATE(640), - [sym_labeled_statement] = STATE(640), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2502), - [sym_string] = STATE(1312), - [sym_comment] = STATE(75), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1830), - [sym_identifier] = ACTIONS(518), - [anon_sym_export] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(528), - [anon_sym_const] = ACTIONS(530), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(544), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_debugger] = ACTIONS(550), - [anon_sym_return] = ACTIONS(552), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_SEMI] = ACTIONS(556), + [76] = { + [sym_export_statement] = STATE(2766), + [sym_declaration] = STATE(2766), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2766), + [sym_expression_statement] = STATE(2766), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2766), + [sym_if_statement] = STATE(2766), + [sym_switch_statement] = STATE(2766), + [sym_for_statement] = STATE(2766), + [sym_for_in_statement] = STATE(2766), + [sym_while_statement] = STATE(2766), + [sym_do_statement] = STATE(2766), + [sym_try_statement] = STATE(2766), + [sym_with_statement] = STATE(2766), + [sym_break_statement] = STATE(2766), + [sym_continue_statement] = STATE(2766), + [sym_debugger_statement] = STATE(2766), + [sym_return_statement] = STATE(2766), + [sym_throw_statement] = STATE(2766), + [sym_empty_statement] = STATE(2766), + [sym_labeled_statement] = STATE(2766), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), + [sym_comment] = STATE(76), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(572), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_debugger] = ACTIONS(598), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(604), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(558), - [anon_sym_async] = ACTIONS(560), - [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(608), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -22770,119 +23435,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(564), - [anon_sym_get] = ACTIONS(564), - [anon_sym_set] = ACTIONS(564), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_export_statement] = STATE(574), - [sym_declaration] = STATE(574), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(574), - [sym_expression_statement] = STATE(574), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_statement_block] = STATE(574), - [sym_if_statement] = STATE(574), - [sym_switch_statement] = STATE(574), - [sym_for_statement] = STATE(574), - [sym_for_in_statement] = STATE(574), - [sym_while_statement] = STATE(574), - [sym_do_statement] = STATE(574), - [sym_try_statement] = STATE(574), - [sym_with_statement] = STATE(574), - [sym_break_statement] = STATE(574), - [sym_continue_statement] = STATE(574), - [sym_debugger_statement] = STATE(574), - [sym_return_statement] = STATE(574), - [sym_throw_statement] = STATE(574), - [sym_empty_statement] = STATE(574), - [sym_labeled_statement] = STATE(574), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2502), - [sym_string] = STATE(1312), - [sym_comment] = STATE(76), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1830), - [sym_identifier] = ACTIONS(518), - [anon_sym_export] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(528), - [anon_sym_const] = ACTIONS(530), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(544), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_debugger] = ACTIONS(550), - [anon_sym_return] = ACTIONS(552), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_SEMI] = ACTIONS(556), + [77] = { + [sym_export_statement] = STATE(955), + [sym_declaration] = STATE(955), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(955), + [sym_expression_statement] = STATE(955), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(955), + [sym_if_statement] = STATE(955), + [sym_switch_statement] = STATE(955), + [sym_for_statement] = STATE(955), + [sym_for_in_statement] = STATE(955), + [sym_while_statement] = STATE(955), + [sym_do_statement] = STATE(955), + [sym_try_statement] = STATE(955), + [sym_with_statement] = STATE(955), + [sym_break_statement] = STATE(955), + [sym_continue_statement] = STATE(955), + [sym_debugger_statement] = STATE(955), + [sym_return_statement] = STATE(955), + [sym_throw_statement] = STATE(955), + [sym_empty_statement] = STATE(955), + [sym_labeled_statement] = STATE(955), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), + [sym_comment] = STATE(77), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1859), + [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_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_SEMI] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(558), - [anon_sym_async] = ACTIONS(560), - [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -22894,19 +23559,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(564), - [anon_sym_get] = ACTIONS(564), - [anon_sym_set] = ACTIONS(564), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), [sym_html_comment] = ACTIONS(5), }, - [77] = { + [78] = { [sym_export_statement] = STATE(505), [sym_declaration] = STATE(505), - [sym_import] = STATE(1785), + [sym_import] = STATE(1819), [sym_import_statement] = STATE(505), [sym_expression_statement] = STATE(505), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), [sym_statement_block] = STATE(505), [sym_if_statement] = STATE(505), [sym_switch_statement] = STATE(505), @@ -22923,90 +23588,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(505), [sym_empty_statement] = STATE(505), [sym_labeled_statement] = STATE(505), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2502), - [sym_string] = STATE(1312), - [sym_comment] = STATE(77), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1830), - [sym_identifier] = ACTIONS(518), - [anon_sym_export] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(528), - [anon_sym_const] = ACTIONS(530), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(544), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_debugger] = ACTIONS(550), - [anon_sym_return] = ACTIONS(552), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_SEMI] = ACTIONS(556), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1222), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2547), + [sym_string] = STATE(1285), + [sym_comment] = STATE(78), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(614), + [anon_sym_export] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_import] = ACTIONS(620), + [anon_sym_with] = ACTIONS(622), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(626), + [anon_sym_const] = ACTIONS(628), + [anon_sym_if] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(638), + [anon_sym_try] = ACTIONS(640), + [anon_sym_break] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_debugger] = ACTIONS(646), + [anon_sym_return] = ACTIONS(648), + [anon_sym_throw] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(652), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(558), - [anon_sym_async] = ACTIONS(560), - [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(654), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -23018,93 +23683,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(564), - [anon_sym_get] = ACTIONS(564), - [anon_sym_set] = ACTIONS(564), + [anon_sym_static] = ACTIONS(660), + [anon_sym_get] = ACTIONS(660), + [anon_sym_set] = ACTIONS(660), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_export_statement] = STATE(748), - [sym_declaration] = STATE(749), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(752), - [sym_expression_statement] = STATE(759), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_statement_block] = STATE(760), - [sym_if_statement] = STATE(762), - [sym_switch_statement] = STATE(765), - [sym_for_statement] = STATE(769), - [sym_for_in_statement] = STATE(771), - [sym_while_statement] = STATE(773), - [sym_do_statement] = STATE(780), - [sym_try_statement] = STATE(783), - [sym_with_statement] = STATE(784), - [sym_break_statement] = STATE(785), - [sym_continue_statement] = STATE(788), - [sym_debugger_statement] = STATE(789), - [sym_return_statement] = STATE(790), - [sym_throw_statement] = STATE(791), - [sym_empty_statement] = STATE(792), - [sym_labeled_statement] = STATE(799), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2190), - [sym_string] = STATE(1312), - [sym_comment] = STATE(78), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1801), + [79] = { + [sym_export_statement] = STATE(2739), + [sym_declaration] = STATE(2739), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2739), + [sym_expression_statement] = STATE(2739), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2739), + [sym_if_statement] = STATE(2739), + [sym_switch_statement] = STATE(2739), + [sym_for_statement] = STATE(2739), + [sym_for_in_statement] = STATE(2739), + [sym_while_statement] = STATE(2739), + [sym_do_statement] = STATE(2739), + [sym_try_statement] = STATE(2739), + [sym_with_statement] = STATE(2739), + [sym_break_statement] = STATE(2739), + [sym_continue_statement] = STATE(2739), + [sym_debugger_statement] = STATE(2739), + [sym_return_statement] = STATE(2739), + [sym_throw_statement] = STATE(2739), + [sym_empty_statement] = STATE(2739), + [sym_labeled_statement] = STATE(2739), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), + [sym_comment] = STATE(79), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), [sym_identifier] = ACTIONS(566), [anon_sym_export] = ACTIONS(568), [anon_sym_LBRACE] = ACTIONS(570), [anon_sym_import] = ACTIONS(572), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(576), - [anon_sym_const] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_try] = ACTIONS(590), - [anon_sym_with] = ACTIONS(592), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), [anon_sym_break] = ACTIONS(594), [anon_sym_continue] = ACTIONS(596), [anon_sym_debugger] = ACTIONS(598), @@ -23115,22 +23780,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(606), [anon_sym_async] = ACTIONS(608), [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -23147,238 +23812,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_export_statement] = STATE(570), - [sym_declaration] = STATE(570), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(570), - [sym_expression_statement] = STATE(570), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_statement_block] = STATE(570), - [sym_if_statement] = STATE(570), - [sym_switch_statement] = STATE(570), - [sym_for_statement] = STATE(570), - [sym_for_in_statement] = STATE(570), - [sym_while_statement] = STATE(570), - [sym_do_statement] = STATE(570), - [sym_try_statement] = STATE(570), - [sym_with_statement] = STATE(570), - [sym_break_statement] = STATE(570), - [sym_continue_statement] = STATE(570), - [sym_debugger_statement] = STATE(570), - [sym_return_statement] = STATE(570), - [sym_throw_statement] = STATE(570), - [sym_empty_statement] = STATE(570), - [sym_labeled_statement] = STATE(570), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2502), - [sym_string] = STATE(1312), - [sym_comment] = STATE(79), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1830), - [sym_identifier] = ACTIONS(518), - [anon_sym_export] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(528), - [anon_sym_const] = ACTIONS(530), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(544), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_debugger] = ACTIONS(550), - [anon_sym_return] = ACTIONS(552), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(558), - [anon_sym_async] = ACTIONS(560), - [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(564), - [anon_sym_get] = ACTIONS(564), - [anon_sym_set] = ACTIONS(564), - [sym_html_comment] = ACTIONS(5), - }, [80] = { - [sym_export_statement] = STATE(668), - [sym_declaration] = STATE(668), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(668), - [sym_expression_statement] = STATE(668), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_statement_block] = STATE(668), - [sym_if_statement] = STATE(668), - [sym_switch_statement] = STATE(668), - [sym_for_statement] = STATE(668), - [sym_for_in_statement] = STATE(668), - [sym_while_statement] = STATE(668), - [sym_do_statement] = STATE(668), - [sym_try_statement] = STATE(668), - [sym_with_statement] = STATE(668), - [sym_break_statement] = STATE(668), - [sym_continue_statement] = STATE(668), - [sym_debugger_statement] = STATE(668), - [sym_return_statement] = STATE(668), - [sym_throw_statement] = STATE(668), - [sym_empty_statement] = STATE(668), - [sym_labeled_statement] = STATE(668), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2190), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(958), + [sym_declaration] = STATE(958), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(958), + [sym_expression_statement] = STATE(958), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(958), + [sym_if_statement] = STATE(958), + [sym_switch_statement] = STATE(958), + [sym_for_statement] = STATE(958), + [sym_for_in_statement] = STATE(958), + [sym_while_statement] = STATE(958), + [sym_do_statement] = STATE(958), + [sym_try_statement] = STATE(958), + [sym_with_statement] = STATE(958), + [sym_break_statement] = STATE(958), + [sym_continue_statement] = STATE(958), + [sym_debugger_statement] = STATE(958), + [sym_return_statement] = STATE(958), + [sym_throw_statement] = STATE(958), + [sym_empty_statement] = STATE(958), + [sym_labeled_statement] = STATE(958), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(80), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1801), - [sym_identifier] = ACTIONS(566), - [anon_sym_export] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_import] = ACTIONS(572), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(576), - [anon_sym_const] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_try] = ACTIONS(590), - [anon_sym_with] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_debugger] = ACTIONS(598), - [anon_sym_return] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(604), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1859), + [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_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_SEMI] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(606), - [anon_sym_async] = ACTIONS(608), - [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -23390,217 +23931,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_export_statement] = STATE(546), - [sym_declaration] = STATE(545), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(544), - [sym_expression_statement] = STATE(543), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_statement_block] = STATE(542), - [sym_if_statement] = STATE(541), - [sym_switch_statement] = STATE(538), - [sym_for_statement] = STATE(537), - [sym_for_in_statement] = STATE(536), - [sym_while_statement] = STATE(535), - [sym_do_statement] = STATE(534), - [sym_try_statement] = STATE(533), - [sym_with_statement] = STATE(528), - [sym_break_statement] = STATE(527), - [sym_continue_statement] = STATE(526), - [sym_debugger_statement] = STATE(609), - [sym_return_statement] = STATE(558), - [sym_throw_statement] = STATE(564), - [sym_empty_statement] = STATE(565), - [sym_labeled_statement] = STATE(572), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2502), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(484), + [sym_declaration] = STATE(484), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(484), + [sym_expression_statement] = STATE(484), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_statement_block] = STATE(484), + [sym_if_statement] = STATE(484), + [sym_switch_statement] = STATE(484), + [sym_for_statement] = STATE(484), + [sym_for_in_statement] = STATE(484), + [sym_while_statement] = STATE(484), + [sym_do_statement] = STATE(484), + [sym_try_statement] = STATE(484), + [sym_with_statement] = STATE(484), + [sym_break_statement] = STATE(484), + [sym_continue_statement] = STATE(484), + [sym_debugger_statement] = STATE(484), + [sym_return_statement] = STATE(484), + [sym_throw_statement] = STATE(484), + [sym_empty_statement] = STATE(484), + [sym_labeled_statement] = STATE(484), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1222), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2547), + [sym_string] = STATE(1285), [sym_comment] = STATE(81), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1830), - [sym_identifier] = ACTIONS(518), - [anon_sym_export] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(528), - [anon_sym_const] = ACTIONS(530), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(544), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_debugger] = ACTIONS(550), - [anon_sym_return] = ACTIONS(552), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_SEMI] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(558), - [anon_sym_async] = ACTIONS(560), - [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(564), - [anon_sym_get] = ACTIONS(564), - [anon_sym_set] = ACTIONS(564), - [sym_html_comment] = ACTIONS(5), - }, - [82] = { - [sym_export_statement] = STATE(2691), - [sym_declaration] = STATE(2691), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2691), - [sym_expression_statement] = STATE(2691), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2691), - [sym_if_statement] = STATE(2691), - [sym_switch_statement] = STATE(2691), - [sym_for_statement] = STATE(2691), - [sym_for_in_statement] = STATE(2691), - [sym_while_statement] = STATE(2691), - [sym_do_statement] = STATE(2691), - [sym_try_statement] = STATE(2691), - [sym_with_statement] = STATE(2691), - [sym_break_statement] = STATE(2691), - [sym_continue_statement] = STATE(2691), - [sym_debugger_statement] = STATE(2691), - [sym_return_statement] = STATE(2691), - [sym_throw_statement] = STATE(2691), - [sym_empty_statement] = STATE(2691), - [sym_labeled_statement] = STATE(2691), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), - [sym_comment] = STATE(82), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1858), [sym_identifier] = ACTIONS(614), [anon_sym_export] = ACTIONS(616), [anon_sym_LBRACE] = ACTIONS(618), [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), + [anon_sym_with] = ACTIONS(622), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(626), + [anon_sym_const] = ACTIONS(628), + [anon_sym_if] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(638), + [anon_sym_try] = ACTIONS(640), [anon_sym_break] = ACTIONS(642), [anon_sym_continue] = ACTIONS(644), [anon_sym_debugger] = ACTIONS(646), @@ -23611,22 +24028,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(654), [anon_sym_async] = ACTIONS(656), [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -23643,114 +24060,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(660), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_export_statement] = STATE(669), - [sym_declaration] = STATE(669), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(669), - [sym_expression_statement] = STATE(669), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(669), - [sym_if_statement] = STATE(669), - [sym_switch_statement] = STATE(669), - [sym_for_statement] = STATE(669), - [sym_for_in_statement] = STATE(669), - [sym_while_statement] = STATE(669), - [sym_do_statement] = STATE(669), - [sym_try_statement] = STATE(669), - [sym_with_statement] = STATE(669), - [sym_break_statement] = STATE(669), - [sym_continue_statement] = STATE(669), - [sym_debugger_statement] = STATE(669), - [sym_return_statement] = STATE(669), - [sym_throw_statement] = STATE(669), - [sym_empty_statement] = STATE(669), - [sym_labeled_statement] = STATE(669), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), - [sym_comment] = STATE(83), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [82] = { + [sym_export_statement] = STATE(2794), + [sym_declaration] = STATE(2794), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2794), + [sym_expression_statement] = STATE(2794), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2794), + [sym_if_statement] = STATE(2794), + [sym_switch_statement] = STATE(2794), + [sym_for_statement] = STATE(2794), + [sym_for_in_statement] = STATE(2794), + [sym_while_statement] = STATE(2794), + [sym_do_statement] = STATE(2794), + [sym_try_statement] = STATE(2794), + [sym_with_statement] = STATE(2794), + [sym_break_statement] = STATE(2794), + [sym_continue_statement] = STATE(2794), + [sym_debugger_statement] = STATE(2794), + [sym_return_statement] = STATE(2794), + [sym_throw_statement] = STATE(2794), + [sym_empty_statement] = STATE(2794), + [sym_labeled_statement] = STATE(2794), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), + [sym_comment] = STATE(82), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(572), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_debugger] = ACTIONS(598), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(604), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(608), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -23762,119 +24179,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_export_statement] = STATE(638), - [sym_declaration] = STATE(638), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(638), - [sym_expression_statement] = STATE(638), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_statement_block] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_switch_statement] = STATE(638), - [sym_for_statement] = STATE(638), - [sym_for_in_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_do_statement] = STATE(638), - [sym_try_statement] = STATE(638), - [sym_with_statement] = STATE(638), - [sym_break_statement] = STATE(638), - [sym_continue_statement] = STATE(638), - [sym_debugger_statement] = STATE(638), - [sym_return_statement] = STATE(638), - [sym_throw_statement] = STATE(638), - [sym_empty_statement] = STATE(638), - [sym_labeled_statement] = STATE(638), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2502), - [sym_string] = STATE(1312), - [sym_comment] = STATE(84), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1830), - [sym_identifier] = ACTIONS(518), - [anon_sym_export] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(528), - [anon_sym_const] = ACTIONS(530), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(544), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_debugger] = ACTIONS(550), - [anon_sym_return] = ACTIONS(552), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_SEMI] = ACTIONS(556), + [83] = { + [sym_export_statement] = STATE(2469), + [sym_declaration] = STATE(2469), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2469), + [sym_expression_statement] = STATE(2469), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2469), + [sym_if_statement] = STATE(2469), + [sym_switch_statement] = STATE(2469), + [sym_for_statement] = STATE(2469), + [sym_for_in_statement] = STATE(2469), + [sym_while_statement] = STATE(2469), + [sym_do_statement] = STATE(2469), + [sym_try_statement] = STATE(2469), + [sym_with_statement] = STATE(2469), + [sym_break_statement] = STATE(2469), + [sym_continue_statement] = STATE(2469), + [sym_debugger_statement] = STATE(2469), + [sym_return_statement] = STATE(2469), + [sym_throw_statement] = STATE(2469), + [sym_empty_statement] = STATE(2469), + [sym_labeled_statement] = STATE(2469), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), + [sym_comment] = STATE(83), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(572), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_debugger] = ACTIONS(598), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(604), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(558), - [anon_sym_async] = ACTIONS(560), - [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(608), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -23886,93 +24303,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(564), - [anon_sym_get] = ACTIONS(564), - [anon_sym_set] = ACTIONS(564), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_export_statement] = STATE(729), - [sym_declaration] = STATE(729), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(729), - [sym_expression_statement] = STATE(729), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_statement_block] = STATE(729), - [sym_if_statement] = STATE(729), - [sym_switch_statement] = STATE(729), - [sym_for_statement] = STATE(729), - [sym_for_in_statement] = STATE(729), - [sym_while_statement] = STATE(729), - [sym_do_statement] = STATE(729), - [sym_try_statement] = STATE(729), - [sym_with_statement] = STATE(729), - [sym_break_statement] = STATE(729), - [sym_continue_statement] = STATE(729), - [sym_debugger_statement] = STATE(729), - [sym_return_statement] = STATE(729), - [sym_throw_statement] = STATE(729), - [sym_empty_statement] = STATE(729), - [sym_labeled_statement] = STATE(729), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2190), - [sym_string] = STATE(1312), - [sym_comment] = STATE(85), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1801), + [84] = { + [sym_export_statement] = STATE(2479), + [sym_declaration] = STATE(2479), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2479), + [sym_expression_statement] = STATE(2479), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2479), + [sym_if_statement] = STATE(2479), + [sym_switch_statement] = STATE(2479), + [sym_for_statement] = STATE(2479), + [sym_for_in_statement] = STATE(2479), + [sym_while_statement] = STATE(2479), + [sym_do_statement] = STATE(2479), + [sym_try_statement] = STATE(2479), + [sym_with_statement] = STATE(2479), + [sym_break_statement] = STATE(2479), + [sym_continue_statement] = STATE(2479), + [sym_debugger_statement] = STATE(2479), + [sym_return_statement] = STATE(2479), + [sym_throw_statement] = STATE(2479), + [sym_empty_statement] = STATE(2479), + [sym_labeled_statement] = STATE(2479), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), + [sym_comment] = STATE(84), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), [sym_identifier] = ACTIONS(566), [anon_sym_export] = ACTIONS(568), [anon_sym_LBRACE] = ACTIONS(570), [anon_sym_import] = ACTIONS(572), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(576), - [anon_sym_const] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_try] = ACTIONS(590), - [anon_sym_with] = ACTIONS(592), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), [anon_sym_break] = ACTIONS(594), [anon_sym_continue] = ACTIONS(596), [anon_sym_debugger] = ACTIONS(598), @@ -23983,22 +24400,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(606), [anon_sym_async] = ACTIONS(608), [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -24015,114 +24432,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, + [85] = { + [sym_export_statement] = STATE(708), + [sym_declaration] = STATE(707), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(706), + [sym_expression_statement] = STATE(704), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(703), + [sym_if_statement] = STATE(701), + [sym_switch_statement] = STATE(700), + [sym_for_statement] = STATE(698), + [sym_for_in_statement] = STATE(697), + [sym_while_statement] = STATE(696), + [sym_do_statement] = STATE(695), + [sym_try_statement] = STATE(694), + [sym_with_statement] = STATE(693), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(691), + [sym_debugger_statement] = STATE(690), + [sym_return_statement] = STATE(689), + [sym_throw_statement] = STATE(688), + [sym_empty_statement] = STATE(685), + [sym_labeled_statement] = STATE(684), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), + [sym_comment] = STATE(85), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), + [sym_html_comment] = ACTIONS(5), + }, [86] = { - [sym_export_statement] = STATE(807), - [sym_declaration] = STATE(807), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(807), - [sym_expression_statement] = STATE(807), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(807), - [sym_if_statement] = STATE(807), - [sym_switch_statement] = STATE(807), - [sym_for_statement] = STATE(807), - [sym_for_in_statement] = STATE(807), - [sym_while_statement] = STATE(807), - [sym_do_statement] = STATE(807), - [sym_try_statement] = STATE(807), - [sym_with_statement] = STATE(807), - [sym_break_statement] = STATE(807), - [sym_continue_statement] = STATE(807), - [sym_debugger_statement] = STATE(807), - [sym_return_statement] = STATE(807), - [sym_throw_statement] = STATE(807), - [sym_empty_statement] = STATE(807), - [sym_labeled_statement] = STATE(807), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(2520), + [sym_declaration] = STATE(2521), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2527), + [sym_expression_statement] = STATE(2539), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2548), + [sym_if_statement] = STATE(2549), + [sym_switch_statement] = STATE(2550), + [sym_for_statement] = STATE(2557), + [sym_for_in_statement] = STATE(2558), + [sym_while_statement] = STATE(2562), + [sym_do_statement] = STATE(2566), + [sym_try_statement] = STATE(2573), + [sym_with_statement] = STATE(2577), + [sym_break_statement] = STATE(2578), + [sym_continue_statement] = STATE(2585), + [sym_debugger_statement] = STATE(2586), + [sym_return_statement] = STATE(2590), + [sym_throw_statement] = STATE(2591), + [sym_empty_statement] = STATE(2622), + [sym_labeled_statement] = STATE(2597), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), [sym_comment] = STATE(86), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(572), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_debugger] = ACTIONS(598), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(604), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(608), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -24134,119 +24675,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_export_statement] = STATE(628), - [sym_declaration] = STATE(607), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(605), - [sym_expression_statement] = STATE(602), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_statement_block] = STATE(601), - [sym_if_statement] = STATE(599), - [sym_switch_statement] = STATE(598), - [sym_for_statement] = STATE(595), - [sym_for_in_statement] = STATE(591), - [sym_while_statement] = STATE(589), - [sym_do_statement] = STATE(524), - [sym_try_statement] = STATE(586), - [sym_with_statement] = STATE(583), - [sym_break_statement] = STATE(582), - [sym_continue_statement] = STATE(581), - [sym_debugger_statement] = STATE(580), - [sym_return_statement] = STATE(579), - [sym_throw_statement] = STATE(578), - [sym_empty_statement] = STATE(577), - [sym_labeled_statement] = STATE(576), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2502), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(947), + [sym_declaration] = STATE(980), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(1000), + [sym_expression_statement] = STATE(999), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(940), + [sym_if_statement] = STATE(998), + [sym_switch_statement] = STATE(910), + [sym_for_statement] = STATE(920), + [sym_for_in_statement] = STATE(995), + [sym_while_statement] = STATE(983), + [sym_do_statement] = STATE(982), + [sym_try_statement] = STATE(981), + [sym_with_statement] = STATE(974), + [sym_break_statement] = STATE(973), + [sym_continue_statement] = STATE(972), + [sym_debugger_statement] = STATE(971), + [sym_return_statement] = STATE(970), + [sym_throw_statement] = STATE(969), + [sym_empty_statement] = STATE(968), + [sym_labeled_statement] = STATE(967), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(87), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1830), - [sym_identifier] = ACTIONS(518), - [anon_sym_export] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(528), - [anon_sym_const] = ACTIONS(530), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(544), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_debugger] = ACTIONS(550), - [anon_sym_return] = ACTIONS(552), - [anon_sym_throw] = ACTIONS(554), - [anon_sym_SEMI] = ACTIONS(556), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1859), + [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_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_SEMI] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(558), - [anon_sym_async] = ACTIONS(560), - [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -24258,119 +24799,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(564), - [anon_sym_get] = ACTIONS(564), - [anon_sym_set] = ACTIONS(564), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_export_statement] = STATE(795), - [sym_declaration] = STATE(794), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(793), - [sym_expression_statement] = STATE(787), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(786), - [sym_if_statement] = STATE(782), - [sym_switch_statement] = STATE(781), - [sym_for_statement] = STATE(779), - [sym_for_in_statement] = STATE(778), - [sym_while_statement] = STATE(777), - [sym_do_statement] = STATE(776), - [sym_try_statement] = STATE(775), - [sym_with_statement] = STATE(774), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(770), - [sym_debugger_statement] = STATE(768), - [sym_return_statement] = STATE(767), - [sym_throw_statement] = STATE(766), - [sym_empty_statement] = STATE(764), - [sym_labeled_statement] = STATE(763), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(2599), + [sym_declaration] = STATE(2599), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2599), + [sym_expression_statement] = STATE(2599), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2599), + [sym_if_statement] = STATE(2599), + [sym_switch_statement] = STATE(2599), + [sym_for_statement] = STATE(2599), + [sym_for_in_statement] = STATE(2599), + [sym_while_statement] = STATE(2599), + [sym_do_statement] = STATE(2599), + [sym_try_statement] = STATE(2599), + [sym_with_statement] = STATE(2599), + [sym_break_statement] = STATE(2599), + [sym_continue_statement] = STATE(2599), + [sym_debugger_statement] = STATE(2599), + [sym_return_statement] = STATE(2599), + [sym_throw_statement] = STATE(2599), + [sym_empty_statement] = STATE(2599), + [sym_labeled_statement] = STATE(2599), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), [sym_comment] = STATE(88), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(572), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_debugger] = ACTIONS(598), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(604), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(608), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -24382,119 +24923,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_export_statement] = STATE(2229), - [sym_declaration] = STATE(2229), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2229), - [sym_expression_statement] = STATE(2229), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2229), - [sym_if_statement] = STATE(2229), - [sym_switch_statement] = STATE(2229), - [sym_for_statement] = STATE(2229), - [sym_for_in_statement] = STATE(2229), - [sym_while_statement] = STATE(2229), - [sym_do_statement] = STATE(2229), - [sym_try_statement] = STATE(2229), - [sym_with_statement] = STATE(2229), - [sym_break_statement] = STATE(2229), - [sym_continue_statement] = STATE(2229), - [sym_debugger_statement] = STATE(2229), - [sym_return_statement] = STATE(2229), - [sym_throw_statement] = STATE(2229), - [sym_empty_statement] = STATE(2229), - [sym_labeled_statement] = STATE(2229), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(2663), + [sym_declaration] = STATE(2688), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2693), + [sym_expression_statement] = STATE(2694), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2695), + [sym_if_statement] = STATE(2699), + [sym_switch_statement] = STATE(2700), + [sym_for_statement] = STATE(2702), + [sym_for_in_statement] = STATE(2703), + [sym_while_statement] = STATE(2707), + [sym_do_statement] = STATE(2711), + [sym_try_statement] = STATE(2712), + [sym_with_statement] = STATE(2715), + [sym_break_statement] = STATE(2723), + [sym_continue_statement] = STATE(2724), + [sym_debugger_statement] = STATE(2725), + [sym_return_statement] = STATE(2726), + [sym_throw_statement] = STATE(2641), + [sym_empty_statement] = STATE(2714), + [sym_labeled_statement] = STATE(2644), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), [sym_comment] = STATE(89), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), - [sym_identifier] = ACTIONS(614), - [anon_sym_export] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_debugger] = ACTIONS(646), - [anon_sym_return] = ACTIONS(648), - [anon_sym_throw] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(652), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(572), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_debugger] = ACTIONS(598), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(604), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(608), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -24506,96 +25047,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(660), - [anon_sym_get] = ACTIONS(660), - [anon_sym_set] = ACTIONS(660), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_export_statement] = STATE(2184), - [sym_declaration] = STATE(2184), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2184), - [sym_expression_statement] = STATE(2184), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2184), - [sym_if_statement] = STATE(2184), - [sym_switch_statement] = STATE(2184), - [sym_for_statement] = STATE(2184), - [sym_for_in_statement] = STATE(2184), - [sym_while_statement] = STATE(2184), - [sym_do_statement] = STATE(2184), - [sym_try_statement] = STATE(2184), - [sym_with_statement] = STATE(2184), - [sym_break_statement] = STATE(2184), - [sym_continue_statement] = STATE(2184), - [sym_debugger_statement] = STATE(2184), - [sym_return_statement] = STATE(2184), - [sym_throw_statement] = STATE(2184), - [sym_empty_statement] = STATE(2184), - [sym_labeled_statement] = STATE(2184), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), - [sym_comment] = STATE(90), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), - [sym_identifier] = ACTIONS(614), - [anon_sym_export] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_debugger] = ACTIONS(646), + [sym_export_statement] = STATE(550), + [sym_declaration] = STATE(550), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_statement_block] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_for_in_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_with_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_debugger_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_empty_statement] = STATE(550), + [sym_labeled_statement] = STATE(550), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1222), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2547), + [sym_string] = STATE(1285), + [sym_comment] = STATE(90), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(614), + [anon_sym_export] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_import] = ACTIONS(620), + [anon_sym_with] = ACTIONS(622), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(626), + [anon_sym_const] = ACTIONS(628), + [anon_sym_if] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(638), + [anon_sym_try] = ACTIONS(640), + [anon_sym_break] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_debugger] = ACTIONS(646), [anon_sym_return] = ACTIONS(648), [anon_sym_throw] = ACTIONS(650), [anon_sym_SEMI] = ACTIONS(652), @@ -24603,22 +25144,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(654), [anon_sym_async] = ACTIONS(656), [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -24636,113 +25177,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_export_statement] = STATE(761), - [sym_declaration] = STATE(761), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(761), - [sym_expression_statement] = STATE(761), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(761), - [sym_if_statement] = STATE(761), - [sym_switch_statement] = STATE(761), - [sym_for_statement] = STATE(761), - [sym_for_in_statement] = STATE(761), - [sym_while_statement] = STATE(761), - [sym_do_statement] = STATE(761), - [sym_try_statement] = STATE(761), - [sym_with_statement] = STATE(761), - [sym_break_statement] = STATE(761), - [sym_continue_statement] = STATE(761), - [sym_debugger_statement] = STATE(761), - [sym_return_statement] = STATE(761), - [sym_throw_statement] = STATE(761), - [sym_empty_statement] = STATE(761), - [sym_labeled_statement] = STATE(761), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(2509), + [sym_declaration] = STATE(2509), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2509), + [sym_expression_statement] = STATE(2509), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2509), + [sym_if_statement] = STATE(2509), + [sym_switch_statement] = STATE(2509), + [sym_for_statement] = STATE(2509), + [sym_for_in_statement] = STATE(2509), + [sym_while_statement] = STATE(2509), + [sym_do_statement] = STATE(2509), + [sym_try_statement] = STATE(2509), + [sym_with_statement] = STATE(2509), + [sym_break_statement] = STATE(2509), + [sym_continue_statement] = STATE(2509), + [sym_debugger_statement] = STATE(2509), + [sym_return_statement] = STATE(2509), + [sym_throw_statement] = STATE(2509), + [sym_empty_statement] = STATE(2509), + [sym_labeled_statement] = STATE(2509), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), [sym_comment] = STATE(91), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(572), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_debugger] = ACTIONS(598), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(604), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(608), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -24754,119 +25295,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_export_statement] = STATE(755), - [sym_declaration] = STATE(755), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(755), - [sym_expression_statement] = STATE(755), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(755), - [sym_if_statement] = STATE(755), - [sym_switch_statement] = STATE(755), - [sym_for_statement] = STATE(755), - [sym_for_in_statement] = STATE(755), - [sym_while_statement] = STATE(755), - [sym_do_statement] = STATE(755), - [sym_try_statement] = STATE(755), - [sym_with_statement] = STATE(755), - [sym_break_statement] = STATE(755), - [sym_continue_statement] = STATE(755), - [sym_debugger_statement] = STATE(755), - [sym_return_statement] = STATE(755), - [sym_throw_statement] = STATE(755), - [sym_empty_statement] = STATE(755), - [sym_labeled_statement] = STATE(755), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(2434), + [sym_declaration] = STATE(2434), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2434), + [sym_expression_statement] = STATE(2434), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2434), + [sym_if_statement] = STATE(2434), + [sym_switch_statement] = STATE(2434), + [sym_for_statement] = STATE(2434), + [sym_for_in_statement] = STATE(2434), + [sym_while_statement] = STATE(2434), + [sym_do_statement] = STATE(2434), + [sym_try_statement] = STATE(2434), + [sym_with_statement] = STATE(2434), + [sym_break_statement] = STATE(2434), + [sym_continue_statement] = STATE(2434), + [sym_debugger_statement] = STATE(2434), + [sym_return_statement] = STATE(2434), + [sym_throw_statement] = STATE(2434), + [sym_empty_statement] = STATE(2434), + [sym_labeled_statement] = STATE(2434), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), [sym_comment] = STATE(92), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(572), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_debugger] = ACTIONS(598), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(604), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(608), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -24878,119 +25419,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_export_statement] = STATE(2509), - [sym_declaration] = STATE(2495), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2479), - [sym_expression_statement] = STATE(2451), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2450), - [sym_if_statement] = STATE(2399), - [sym_switch_statement] = STATE(2383), - [sym_for_statement] = STATE(2345), - [sym_for_in_statement] = STATE(2344), - [sym_while_statement] = STATE(2277), - [sym_do_statement] = STATE(2342), - [sym_try_statement] = STATE(2321), - [sym_with_statement] = STATE(2315), - [sym_break_statement] = STATE(2313), - [sym_continue_statement] = STATE(2309), - [sym_debugger_statement] = STATE(2308), - [sym_return_statement] = STATE(2303), - [sym_throw_statement] = STATE(2293), - [sym_empty_statement] = STATE(2292), - [sym_labeled_statement] = STATE(2291), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(2394), + [sym_declaration] = STATE(2394), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2394), + [sym_expression_statement] = STATE(2394), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2394), + [sym_if_statement] = STATE(2394), + [sym_switch_statement] = STATE(2394), + [sym_for_statement] = STATE(2394), + [sym_for_in_statement] = STATE(2394), + [sym_while_statement] = STATE(2394), + [sym_do_statement] = STATE(2394), + [sym_try_statement] = STATE(2394), + [sym_with_statement] = STATE(2394), + [sym_break_statement] = STATE(2394), + [sym_continue_statement] = STATE(2394), + [sym_debugger_statement] = STATE(2394), + [sym_return_statement] = STATE(2394), + [sym_throw_statement] = STATE(2394), + [sym_empty_statement] = STATE(2394), + [sym_labeled_statement] = STATE(2394), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), [sym_comment] = STATE(93), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), - [sym_identifier] = ACTIONS(614), - [anon_sym_export] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_debugger] = ACTIONS(646), - [anon_sym_return] = ACTIONS(648), - [anon_sym_throw] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(652), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(572), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_debugger] = ACTIONS(598), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(604), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(608), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -25002,119 +25543,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(660), - [anon_sym_get] = ACTIONS(660), - [anon_sym_set] = ACTIONS(660), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_export_statement] = STATE(957), - [sym_declaration] = STATE(957), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(957), - [sym_expression_statement] = STATE(957), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(957), - [sym_if_statement] = STATE(957), - [sym_switch_statement] = STATE(957), - [sym_for_statement] = STATE(957), - [sym_for_in_statement] = STATE(957), - [sym_while_statement] = STATE(957), - [sym_do_statement] = STATE(957), - [sym_try_statement] = STATE(957), - [sym_with_statement] = STATE(957), - [sym_break_statement] = STATE(957), - [sym_continue_statement] = STATE(957), - [sym_debugger_statement] = STATE(957), - [sym_return_statement] = STATE(957), - [sym_throw_statement] = STATE(957), - [sym_empty_statement] = STATE(957), - [sym_labeled_statement] = STATE(957), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(627), + [sym_declaration] = STATE(627), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(627), + [sym_expression_statement] = STATE(627), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_statement_block] = STATE(627), + [sym_if_statement] = STATE(627), + [sym_switch_statement] = STATE(627), + [sym_for_statement] = STATE(627), + [sym_for_in_statement] = STATE(627), + [sym_while_statement] = STATE(627), + [sym_do_statement] = STATE(627), + [sym_try_statement] = STATE(627), + [sym_with_statement] = STATE(627), + [sym_break_statement] = STATE(627), + [sym_continue_statement] = STATE(627), + [sym_debugger_statement] = STATE(627), + [sym_return_statement] = STATE(627), + [sym_throw_statement] = STATE(627), + [sym_empty_statement] = STATE(627), + [sym_labeled_statement] = STATE(627), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2229), + [sym_string] = STATE(1285), [sym_comment] = STATE(94), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1850), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = 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_SEMI] = ACTIONS(53), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1885), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_import] = ACTIONS(524), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(542), + [anon_sym_try] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_debugger] = ACTIONS(550), + [anon_sym_return] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(556), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -25126,119 +25667,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(91), - [anon_sym_get] = ACTIONS(91), - [anon_sym_set] = ACTIONS(91), + [anon_sym_static] = ACTIONS(564), + [anon_sym_get] = ACTIONS(564), + [anon_sym_set] = ACTIONS(564), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_export_statement] = STATE(682), - [sym_declaration] = STATE(682), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(682), - [sym_expression_statement] = STATE(682), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_switch_statement] = STATE(682), - [sym_for_statement] = STATE(682), - [sym_for_in_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_do_statement] = STATE(682), - [sym_try_statement] = STATE(682), - [sym_with_statement] = STATE(682), - [sym_break_statement] = STATE(682), - [sym_continue_statement] = STATE(682), - [sym_debugger_statement] = STATE(682), - [sym_return_statement] = STATE(682), - [sym_throw_statement] = STATE(682), - [sym_empty_statement] = STATE(682), - [sym_labeled_statement] = STATE(682), - [sym_parenthesized_expression] = STATE(1048), + [sym_export_statement] = STATE(557), + [sym_declaration] = STATE(557), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(557), + [sym_expression_statement] = STATE(557), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_statement_block] = STATE(557), + [sym_if_statement] = STATE(557), + [sym_switch_statement] = STATE(557), + [sym_for_statement] = STATE(557), + [sym_for_in_statement] = STATE(557), + [sym_while_statement] = STATE(557), + [sym_do_statement] = STATE(557), + [sym_try_statement] = STATE(557), + [sym_with_statement] = STATE(557), + [sym_break_statement] = STATE(557), + [sym_continue_statement] = STATE(557), + [sym_debugger_statement] = STATE(557), + [sym_return_statement] = STATE(557), + [sym_throw_statement] = STATE(557), + [sym_empty_statement] = STATE(557), + [sym_labeled_statement] = STATE(557), + [sym_parenthesized_expression] = STATE(1058), [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2547), + [sym_string] = STATE(1285), [sym_comment] = STATE(95), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(614), + [anon_sym_export] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_import] = ACTIONS(620), + [anon_sym_with] = ACTIONS(622), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(626), + [anon_sym_const] = ACTIONS(628), + [anon_sym_if] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(638), + [anon_sym_try] = ACTIONS(640), + [anon_sym_break] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_debugger] = ACTIONS(646), + [anon_sym_return] = ACTIONS(648), + [anon_sym_throw] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(652), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(654), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -25250,119 +25791,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(660), + [anon_sym_get] = ACTIONS(660), + [anon_sym_set] = ACTIONS(660), [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_export_statement] = STATE(2721), - [sym_declaration] = STATE(2721), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2721), - [sym_expression_statement] = STATE(2721), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2721), - [sym_if_statement] = STATE(2721), - [sym_switch_statement] = STATE(2721), - [sym_for_statement] = STATE(2721), - [sym_for_in_statement] = STATE(2721), - [sym_while_statement] = STATE(2721), - [sym_do_statement] = STATE(2721), - [sym_try_statement] = STATE(2721), - [sym_with_statement] = STATE(2721), - [sym_break_statement] = STATE(2721), - [sym_continue_statement] = STATE(2721), - [sym_debugger_statement] = STATE(2721), - [sym_return_statement] = STATE(2721), - [sym_throw_statement] = STATE(2721), - [sym_empty_statement] = STATE(2721), - [sym_labeled_statement] = STATE(2721), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(681), + [sym_declaration] = STATE(681), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(681), + [sym_expression_statement] = STATE(681), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(681), + [sym_if_statement] = STATE(681), + [sym_switch_statement] = STATE(681), + [sym_for_statement] = STATE(681), + [sym_for_in_statement] = STATE(681), + [sym_while_statement] = STATE(681), + [sym_do_statement] = STATE(681), + [sym_try_statement] = STATE(681), + [sym_with_statement] = STATE(681), + [sym_break_statement] = STATE(681), + [sym_continue_statement] = STATE(681), + [sym_debugger_statement] = STATE(681), + [sym_return_statement] = STATE(681), + [sym_throw_statement] = STATE(681), + [sym_empty_statement] = STATE(681), + [sym_labeled_statement] = STATE(681), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), [sym_comment] = STATE(96), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), - [sym_identifier] = ACTIONS(614), - [anon_sym_export] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_debugger] = ACTIONS(646), - [anon_sym_return] = ACTIONS(648), - [anon_sym_throw] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(652), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -25374,119 +25915,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(660), - [anon_sym_get] = ACTIONS(660), - [anon_sym_set] = ACTIONS(660), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_export_statement] = STATE(550), - [sym_declaration] = STATE(550), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(550), - [sym_expression_statement] = STATE(550), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_statement_block] = STATE(550), - [sym_if_statement] = STATE(550), - [sym_switch_statement] = STATE(550), - [sym_for_statement] = STATE(550), - [sym_for_in_statement] = STATE(550), - [sym_while_statement] = STATE(550), - [sym_do_statement] = STATE(550), - [sym_try_statement] = STATE(550), - [sym_with_statement] = STATE(550), - [sym_break_statement] = STATE(550), - [sym_continue_statement] = STATE(550), - [sym_debugger_statement] = STATE(550), - [sym_return_statement] = STATE(550), - [sym_throw_statement] = STATE(550), - [sym_empty_statement] = STATE(550), - [sym_labeled_statement] = STATE(550), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2190), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(559), + [sym_declaration] = STATE(560), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(562), + [sym_expression_statement] = STATE(565), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_statement_block] = STATE(566), + [sym_if_statement] = STATE(524), + [sym_switch_statement] = STATE(567), + [sym_for_statement] = STATE(568), + [sym_for_in_statement] = STATE(569), + [sym_while_statement] = STATE(570), + [sym_do_statement] = STATE(571), + [sym_try_statement] = STATE(572), + [sym_with_statement] = STATE(573), + [sym_break_statement] = STATE(574), + [sym_continue_statement] = STATE(576), + [sym_debugger_statement] = STATE(577), + [sym_return_statement] = STATE(578), + [sym_throw_statement] = STATE(579), + [sym_empty_statement] = STATE(580), + [sym_labeled_statement] = STATE(581), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1222), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2547), + [sym_string] = STATE(1285), [sym_comment] = STATE(97), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1801), - [sym_identifier] = ACTIONS(566), - [anon_sym_export] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_import] = ACTIONS(572), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(576), - [anon_sym_const] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_try] = ACTIONS(590), - [anon_sym_with] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_debugger] = ACTIONS(598), - [anon_sym_return] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(604), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(614), + [anon_sym_export] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_import] = ACTIONS(620), + [anon_sym_with] = ACTIONS(622), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(626), + [anon_sym_const] = ACTIONS(628), + [anon_sym_if] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(638), + [anon_sym_try] = ACTIONS(640), + [anon_sym_break] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_debugger] = ACTIONS(646), + [anon_sym_return] = ACTIONS(648), + [anon_sym_throw] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(652), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(606), - [anon_sym_async] = ACTIONS(608), - [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(654), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -25498,93 +26039,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), + [anon_sym_static] = ACTIONS(660), + [anon_sym_get] = ACTIONS(660), + [anon_sym_set] = ACTIONS(660), [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_export_statement] = STATE(652), - [sym_declaration] = STATE(652), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_statement_block] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_for_in_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_with_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_debugger_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_empty_statement] = STATE(652), - [sym_labeled_statement] = STATE(652), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2502), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(740), + [sym_declaration] = STATE(740), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(740), + [sym_expression_statement] = STATE(740), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_statement_block] = STATE(740), + [sym_if_statement] = STATE(740), + [sym_switch_statement] = STATE(740), + [sym_for_statement] = STATE(740), + [sym_for_in_statement] = STATE(740), + [sym_while_statement] = STATE(740), + [sym_do_statement] = STATE(740), + [sym_try_statement] = STATE(740), + [sym_with_statement] = STATE(740), + [sym_break_statement] = STATE(740), + [sym_continue_statement] = STATE(740), + [sym_debugger_statement] = STATE(740), + [sym_return_statement] = STATE(740), + [sym_throw_statement] = STATE(740), + [sym_empty_statement] = STATE(740), + [sym_labeled_statement] = STATE(740), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2229), + [sym_string] = STATE(1285), [sym_comment] = STATE(98), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1830), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1885), [sym_identifier] = ACTIONS(518), [anon_sym_export] = ACTIONS(520), [anon_sym_LBRACE] = ACTIONS(522), [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(528), - [anon_sym_const] = ACTIONS(530), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(544), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(542), + [anon_sym_try] = ACTIONS(544), [anon_sym_break] = ACTIONS(546), [anon_sym_continue] = ACTIONS(548), [anon_sym_debugger] = ACTIONS(550), @@ -25595,22 +26136,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(558), [anon_sym_async] = ACTIONS(560), [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -25628,113 +26169,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_export_statement] = STATE(2563), - [sym_declaration] = STATE(2563), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2563), - [sym_expression_statement] = STATE(2563), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2563), - [sym_if_statement] = STATE(2563), - [sym_switch_statement] = STATE(2563), - [sym_for_statement] = STATE(2563), - [sym_for_in_statement] = STATE(2563), - [sym_while_statement] = STATE(2563), - [sym_do_statement] = STATE(2563), - [sym_try_statement] = STATE(2563), - [sym_with_statement] = STATE(2563), - [sym_break_statement] = STATE(2563), - [sym_continue_statement] = STATE(2563), - [sym_debugger_statement] = STATE(2563), - [sym_return_statement] = STATE(2563), - [sym_throw_statement] = STATE(2563), - [sym_empty_statement] = STATE(2563), - [sym_labeled_statement] = STATE(2563), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(916), + [sym_declaration] = STATE(916), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(916), + [sym_expression_statement] = STATE(916), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(916), + [sym_if_statement] = STATE(916), + [sym_switch_statement] = STATE(916), + [sym_for_statement] = STATE(916), + [sym_for_in_statement] = STATE(916), + [sym_while_statement] = STATE(916), + [sym_do_statement] = STATE(916), + [sym_try_statement] = STATE(916), + [sym_with_statement] = STATE(916), + [sym_break_statement] = STATE(916), + [sym_continue_statement] = STATE(916), + [sym_debugger_statement] = STATE(916), + [sym_return_statement] = STATE(916), + [sym_throw_statement] = STATE(916), + [sym_empty_statement] = STATE(916), + [sym_labeled_statement] = STATE(916), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(99), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), - [sym_identifier] = ACTIONS(614), - [anon_sym_export] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_debugger] = ACTIONS(646), - [anon_sym_return] = ACTIONS(648), - [anon_sym_throw] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(652), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1859), + [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_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_SEMI] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -25746,119 +26287,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(660), - [anon_sym_get] = ACTIONS(660), - [anon_sym_set] = ACTIONS(660), + [anon_sym_static] = ACTIONS(91), + [anon_sym_get] = ACTIONS(91), + [anon_sym_set] = ACTIONS(91), [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_export_statement] = STATE(2702), - [sym_declaration] = STATE(2702), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2702), - [sym_expression_statement] = STATE(2702), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2702), - [sym_if_statement] = STATE(2702), - [sym_switch_statement] = STATE(2702), - [sym_for_statement] = STATE(2702), - [sym_for_in_statement] = STATE(2702), - [sym_while_statement] = STATE(2702), - [sym_do_statement] = STATE(2702), - [sym_try_statement] = STATE(2702), - [sym_with_statement] = STATE(2702), - [sym_break_statement] = STATE(2702), - [sym_continue_statement] = STATE(2702), - [sym_debugger_statement] = STATE(2702), - [sym_return_statement] = STATE(2702), - [sym_throw_statement] = STATE(2702), - [sym_empty_statement] = STATE(2702), - [sym_labeled_statement] = STATE(2702), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(877), + [sym_declaration] = STATE(877), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(877), + [sym_expression_statement] = STATE(877), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_statement_block] = STATE(877), + [sym_if_statement] = STATE(877), + [sym_switch_statement] = STATE(877), + [sym_for_statement] = STATE(877), + [sym_for_in_statement] = STATE(877), + [sym_while_statement] = STATE(877), + [sym_do_statement] = STATE(877), + [sym_try_statement] = STATE(877), + [sym_with_statement] = STATE(877), + [sym_break_statement] = STATE(877), + [sym_continue_statement] = STATE(877), + [sym_debugger_statement] = STATE(877), + [sym_return_statement] = STATE(877), + [sym_throw_statement] = STATE(877), + [sym_empty_statement] = STATE(877), + [sym_labeled_statement] = STATE(877), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2229), + [sym_string] = STATE(1285), [sym_comment] = STATE(100), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), - [sym_identifier] = ACTIONS(614), - [anon_sym_export] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_debugger] = ACTIONS(646), - [anon_sym_return] = ACTIONS(648), - [anon_sym_throw] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(652), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1885), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_import] = ACTIONS(524), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(542), + [anon_sym_try] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_debugger] = ACTIONS(550), + [anon_sym_return] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(556), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -25870,19 +26411,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(660), - [anon_sym_get] = ACTIONS(660), - [anon_sym_set] = ACTIONS(660), + [anon_sym_static] = ACTIONS(564), + [anon_sym_get] = ACTIONS(564), + [anon_sym_set] = ACTIONS(564), [sym_html_comment] = ACTIONS(5), }, [101] = { + [sym_export_statement] = STATE(872), + [sym_declaration] = STATE(872), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(872), + [sym_expression_statement] = STATE(872), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_statement_block] = STATE(872), + [sym_if_statement] = STATE(872), + [sym_switch_statement] = STATE(872), + [sym_for_statement] = STATE(872), + [sym_for_in_statement] = STATE(872), + [sym_while_statement] = STATE(872), + [sym_do_statement] = STATE(872), + [sym_try_statement] = STATE(872), + [sym_with_statement] = STATE(872), + [sym_break_statement] = STATE(872), + [sym_continue_statement] = STATE(872), + [sym_debugger_statement] = STATE(872), + [sym_return_statement] = STATE(872), + [sym_throw_statement] = STATE(872), + [sym_empty_statement] = STATE(872), + [sym_labeled_statement] = STATE(872), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2229), + [sym_string] = STATE(1285), + [sym_comment] = STATE(101), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1885), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_import] = ACTIONS(524), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(542), + [anon_sym_try] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_debugger] = ACTIONS(550), + [anon_sym_return] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(564), + [anon_sym_get] = ACTIONS(564), + [anon_sym_set] = ACTIONS(564), + [sym_html_comment] = ACTIONS(5), + }, + [102] = { [sym_export_statement] = STATE(934), [sym_declaration] = STATE(934), - [sym_import] = STATE(1785), + [sym_import] = STATE(1819), [sym_import_statement] = STATE(934), [sym_expression_statement] = STATE(934), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), [sym_statement_block] = STATE(934), [sym_if_statement] = STATE(934), [sym_switch_statement] = STATE(934), @@ -25899,64 +26564,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(934), [sym_empty_statement] = STATE(934), [sym_labeled_statement] = STATE(934), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), - [sym_comment] = STATE(101), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), + [sym_comment] = STATE(102), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -25967,22 +26632,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -25999,88 +26664,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(91), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_export_statement] = STATE(2577), - [sym_declaration] = STATE(2578), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2579), - [sym_expression_statement] = STATE(2581), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2589), - [sym_if_statement] = STATE(2590), - [sym_switch_statement] = STATE(2591), - [sym_for_statement] = STATE(2595), - [sym_for_in_statement] = STATE(2596), - [sym_while_statement] = STATE(2597), - [sym_do_statement] = STATE(2600), - [sym_try_statement] = STATE(2602), - [sym_with_statement] = STATE(2603), - [sym_break_statement] = STATE(2604), - [sym_continue_statement] = STATE(2609), - [sym_debugger_statement] = STATE(2643), - [sym_return_statement] = STATE(2644), - [sym_throw_statement] = STATE(2645), - [sym_empty_statement] = STATE(2646), - [sym_labeled_statement] = STATE(2647), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), - [sym_comment] = STATE(102), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), + [103] = { + [sym_export_statement] = STATE(582), + [sym_declaration] = STATE(582), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(582), + [sym_expression_statement] = STATE(582), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_statement_block] = STATE(582), + [sym_if_statement] = STATE(582), + [sym_switch_statement] = STATE(582), + [sym_for_statement] = STATE(582), + [sym_for_in_statement] = STATE(582), + [sym_while_statement] = STATE(582), + [sym_do_statement] = STATE(582), + [sym_try_statement] = STATE(582), + [sym_with_statement] = STATE(582), + [sym_break_statement] = STATE(582), + [sym_continue_statement] = STATE(582), + [sym_debugger_statement] = STATE(582), + [sym_return_statement] = STATE(582), + [sym_throw_statement] = STATE(582), + [sym_empty_statement] = STATE(582), + [sym_labeled_statement] = STATE(582), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1222), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2547), + [sym_string] = STATE(1285), + [sym_comment] = STATE(103), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1858), [sym_identifier] = ACTIONS(614), [anon_sym_export] = ACTIONS(616), [anon_sym_LBRACE] = ACTIONS(618), [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), + [anon_sym_with] = ACTIONS(622), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(626), + [anon_sym_const] = ACTIONS(628), + [anon_sym_if] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(638), + [anon_sym_try] = ACTIONS(640), [anon_sym_break] = ACTIONS(642), [anon_sym_continue] = ACTIONS(644), [anon_sym_debugger] = ACTIONS(646), @@ -26091,22 +26756,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(654), [anon_sym_async] = ACTIONS(656), [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -26123,88 +26788,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(660), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_export_statement] = STATE(878), - [sym_declaration] = STATE(878), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_statement_block] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_for_in_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_try_statement] = STATE(878), - [sym_with_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_debugger_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_throw_statement] = STATE(878), - [sym_empty_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2190), - [sym_string] = STATE(1312), - [sym_comment] = STATE(103), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1801), + [104] = { + [sym_export_statement] = STATE(860), + [sym_declaration] = STATE(859), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(858), + [sym_expression_statement] = STATE(856), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_statement_block] = STATE(855), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(853), + [sym_for_statement] = STATE(852), + [sym_for_in_statement] = STATE(851), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(847), + [sym_try_statement] = STATE(672), + [sym_with_statement] = STATE(845), + [sym_break_statement] = STATE(843), + [sym_continue_statement] = STATE(841), + [sym_debugger_statement] = STATE(840), + [sym_return_statement] = STATE(839), + [sym_throw_statement] = STATE(838), + [sym_empty_statement] = STATE(837), + [sym_labeled_statement] = STATE(836), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2229), + [sym_string] = STATE(1285), + [sym_comment] = STATE(104), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1885), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_import] = ACTIONS(524), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(542), + [anon_sym_try] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_debugger] = ACTIONS(550), + [anon_sym_return] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(564), + [anon_sym_get] = ACTIONS(564), + [anon_sym_set] = ACTIONS(564), + [sym_html_comment] = ACTIONS(5), + }, + [105] = { + [sym_export_statement] = STATE(2821), + [sym_declaration] = STATE(2821), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2821), + [sym_expression_statement] = STATE(2821), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2821), + [sym_if_statement] = STATE(2821), + [sym_switch_statement] = STATE(2821), + [sym_for_statement] = STATE(2821), + [sym_for_in_statement] = STATE(2821), + [sym_while_statement] = STATE(2821), + [sym_do_statement] = STATE(2821), + [sym_try_statement] = STATE(2821), + [sym_with_statement] = STATE(2821), + [sym_break_statement] = STATE(2821), + [sym_continue_statement] = STATE(2821), + [sym_debugger_statement] = STATE(2821), + [sym_return_statement] = STATE(2821), + [sym_throw_statement] = STATE(2821), + [sym_empty_statement] = STATE(2821), + [sym_labeled_statement] = STATE(2821), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), + [sym_comment] = STATE(105), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), [sym_identifier] = ACTIONS(566), [anon_sym_export] = ACTIONS(568), [anon_sym_LBRACE] = ACTIONS(570), [anon_sym_import] = ACTIONS(572), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(576), - [anon_sym_const] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_try] = ACTIONS(590), - [anon_sym_with] = ACTIONS(592), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), [anon_sym_break] = ACTIONS(594), [anon_sym_continue] = ACTIONS(596), [anon_sym_debugger] = ACTIONS(598), @@ -26215,22 +27004,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(606), [anon_sym_async] = ACTIONS(608), [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -26247,114 +27036,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_export_statement] = STATE(988), - [sym_declaration] = STATE(988), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(988), - [sym_expression_statement] = STATE(988), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(988), - [sym_if_statement] = STATE(988), - [sym_switch_statement] = STATE(988), - [sym_for_statement] = STATE(988), - [sym_for_in_statement] = STATE(988), - [sym_while_statement] = STATE(988), - [sym_do_statement] = STATE(988), - [sym_try_statement] = STATE(988), - [sym_with_statement] = STATE(988), - [sym_break_statement] = STATE(988), - [sym_continue_statement] = STATE(988), - [sym_debugger_statement] = STATE(988), - [sym_return_statement] = STATE(988), - [sym_throw_statement] = STATE(988), - [sym_empty_statement] = STATE(988), - [sym_labeled_statement] = STATE(988), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), - [sym_comment] = STATE(104), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1850), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = 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_SEMI] = ACTIONS(53), + [106] = { + [sym_export_statement] = STATE(834), + [sym_declaration] = STATE(834), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(834), + [sym_expression_statement] = STATE(834), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_statement_block] = STATE(834), + [sym_if_statement] = STATE(834), + [sym_switch_statement] = STATE(834), + [sym_for_statement] = STATE(834), + [sym_for_in_statement] = STATE(834), + [sym_while_statement] = STATE(834), + [sym_do_statement] = STATE(834), + [sym_try_statement] = STATE(834), + [sym_with_statement] = STATE(834), + [sym_break_statement] = STATE(834), + [sym_continue_statement] = STATE(834), + [sym_debugger_statement] = STATE(834), + [sym_return_statement] = STATE(834), + [sym_throw_statement] = STATE(834), + [sym_empty_statement] = STATE(834), + [sym_labeled_statement] = STATE(834), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2229), + [sym_string] = STATE(1285), + [sym_comment] = STATE(106), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1885), + [sym_identifier] = ACTIONS(518), + [anon_sym_export] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_import] = ACTIONS(524), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(542), + [anon_sym_try] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_debugger] = ACTIONS(550), + [anon_sym_return] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(556), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_function] = ACTIONS(562), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -26366,93 +27155,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(91), - [anon_sym_get] = ACTIONS(91), - [anon_sym_set] = ACTIONS(91), + [anon_sym_static] = ACTIONS(564), + [anon_sym_get] = ACTIONS(564), + [anon_sym_set] = ACTIONS(564), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_export_statement] = STATE(2055), - [sym_declaration] = STATE(2055), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2055), - [sym_expression_statement] = STATE(2055), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2055), - [sym_if_statement] = STATE(2055), - [sym_switch_statement] = STATE(2055), - [sym_for_statement] = STATE(2055), - [sym_for_in_statement] = STATE(2055), - [sym_while_statement] = STATE(2055), - [sym_do_statement] = STATE(2055), - [sym_try_statement] = STATE(2055), - [sym_with_statement] = STATE(2055), - [sym_break_statement] = STATE(2055), - [sym_continue_statement] = STATE(2055), - [sym_debugger_statement] = STATE(2055), - [sym_return_statement] = STATE(2055), - [sym_throw_statement] = STATE(2055), - [sym_empty_statement] = STATE(2055), - [sym_labeled_statement] = STATE(2055), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), - [sym_comment] = STATE(105), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), + [107] = { + [sym_export_statement] = STATE(602), + [sym_declaration] = STATE(603), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(604), + [sym_expression_statement] = STATE(605), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_statement_block] = STATE(606), + [sym_if_statement] = STATE(607), + [sym_switch_statement] = STATE(608), + [sym_for_statement] = STATE(609), + [sym_for_in_statement] = STATE(610), + [sym_while_statement] = STATE(611), + [sym_do_statement] = STATE(612), + [sym_try_statement] = STATE(613), + [sym_with_statement] = STATE(614), + [sym_break_statement] = STATE(615), + [sym_continue_statement] = STATE(616), + [sym_debugger_statement] = STATE(618), + [sym_return_statement] = STATE(619), + [sym_throw_statement] = STATE(620), + [sym_empty_statement] = STATE(621), + [sym_labeled_statement] = STATE(622), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1222), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2547), + [sym_string] = STATE(1285), + [sym_comment] = STATE(107), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1858), [sym_identifier] = ACTIONS(614), [anon_sym_export] = ACTIONS(616), [anon_sym_LBRACE] = ACTIONS(618), [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), + [anon_sym_with] = ACTIONS(622), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(626), + [anon_sym_const] = ACTIONS(628), + [anon_sym_if] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(638), + [anon_sym_try] = ACTIONS(640), [anon_sym_break] = ACTIONS(642), [anon_sym_continue] = ACTIONS(644), [anon_sym_debugger] = ACTIONS(646), @@ -26463,22 +27252,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(654), [anon_sym_async] = ACTIONS(656), [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -26495,88 +27284,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(660), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_export_statement] = STATE(2649), - [sym_declaration] = STATE(2649), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2649), - [sym_expression_statement] = STATE(2649), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2649), - [sym_if_statement] = STATE(2649), - [sym_switch_statement] = STATE(2649), - [sym_for_statement] = STATE(2649), - [sym_for_in_statement] = STATE(2649), - [sym_while_statement] = STATE(2649), - [sym_do_statement] = STATE(2649), - [sym_try_statement] = STATE(2649), - [sym_with_statement] = STATE(2649), - [sym_break_statement] = STATE(2649), - [sym_continue_statement] = STATE(2649), - [sym_debugger_statement] = STATE(2649), - [sym_return_statement] = STATE(2649), - [sym_throw_statement] = STATE(2649), - [sym_empty_statement] = STATE(2649), - [sym_labeled_statement] = STATE(2649), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), - [sym_comment] = STATE(106), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), + [108] = { + [sym_export_statement] = STATE(819), + [sym_declaration] = STATE(820), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(821), + [sym_expression_statement] = STATE(822), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(823), + [sym_if_statement] = STATE(824), + [sym_switch_statement] = STATE(825), + [sym_for_statement] = STATE(826), + [sym_for_in_statement] = STATE(832), + [sym_while_statement] = STATE(835), + [sym_do_statement] = STATE(861), + [sym_try_statement] = STATE(863), + [sym_with_statement] = STATE(871), + [sym_break_statement] = STATE(874), + [sym_continue_statement] = STATE(875), + [sym_debugger_statement] = STATE(879), + [sym_return_statement] = STATE(880), + [sym_throw_statement] = STATE(881), + [sym_empty_statement] = STATE(882), + [sym_labeled_statement] = STATE(883), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), + [sym_comment] = STATE(108), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), + [sym_html_comment] = ACTIONS(5), + }, + [109] = { + [sym_export_statement] = STATE(630), + [sym_declaration] = STATE(630), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(630), + [sym_expression_statement] = STATE(630), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_statement_block] = STATE(630), + [sym_if_statement] = STATE(630), + [sym_switch_statement] = STATE(630), + [sym_for_statement] = STATE(630), + [sym_for_in_statement] = STATE(630), + [sym_while_statement] = STATE(630), + [sym_do_statement] = STATE(630), + [sym_try_statement] = STATE(630), + [sym_with_statement] = STATE(630), + [sym_break_statement] = STATE(630), + [sym_continue_statement] = STATE(630), + [sym_debugger_statement] = STATE(630), + [sym_return_statement] = STATE(630), + [sym_throw_statement] = STATE(630), + [sym_empty_statement] = STATE(630), + [sym_labeled_statement] = STATE(630), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1222), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2547), + [sym_string] = STATE(1285), + [sym_comment] = STATE(109), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1858), [sym_identifier] = ACTIONS(614), [anon_sym_export] = ACTIONS(616), [anon_sym_LBRACE] = ACTIONS(618), [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), + [anon_sym_with] = ACTIONS(622), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(626), + [anon_sym_const] = ACTIONS(628), + [anon_sym_if] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(638), + [anon_sym_try] = ACTIONS(640), [anon_sym_break] = ACTIONS(642), [anon_sym_continue] = ACTIONS(644), [anon_sym_debugger] = ACTIONS(646), @@ -26587,22 +27500,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(654), [anon_sym_async] = ACTIONS(656), [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -26619,114 +27532,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(660), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_export_statement] = STATE(725), - [sym_declaration] = STATE(724), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(723), - [sym_expression_statement] = STATE(722), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_statement_block] = STATE(721), - [sym_if_statement] = STATE(720), - [sym_switch_statement] = STATE(719), - [sym_for_statement] = STATE(717), - [sym_for_in_statement] = STATE(716), - [sym_while_statement] = STATE(715), - [sym_do_statement] = STATE(714), - [sym_try_statement] = STATE(713), - [sym_with_statement] = STATE(712), - [sym_break_statement] = STATE(710), - [sym_continue_statement] = STATE(708), - [sym_debugger_statement] = STATE(707), - [sym_return_statement] = STATE(706), - [sym_throw_statement] = STATE(704), - [sym_empty_statement] = STATE(703), - [sym_labeled_statement] = STATE(702), - [sym_parenthesized_expression] = STATE(1048), + [110] = { + [sym_export_statement] = STATE(866), + [sym_declaration] = STATE(866), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(866), + [sym_expression_statement] = STATE(866), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(866), + [sym_if_statement] = STATE(866), + [sym_switch_statement] = STATE(866), + [sym_for_statement] = STATE(866), + [sym_for_in_statement] = STATE(866), + [sym_while_statement] = STATE(866), + [sym_do_statement] = STATE(866), + [sym_try_statement] = STATE(866), + [sym_with_statement] = STATE(866), + [sym_break_statement] = STATE(866), + [sym_continue_statement] = STATE(866), + [sym_debugger_statement] = STATE(866), + [sym_return_statement] = STATE(866), + [sym_throw_statement] = STATE(866), + [sym_empty_statement] = STATE(866), + [sym_labeled_statement] = STATE(866), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), + [sym_comment] = STATE(110), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), + [sym_html_comment] = ACTIONS(5), + }, + [111] = { + [sym_export_statement] = STATE(637), + [sym_declaration] = STATE(637), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(637), + [sym_expression_statement] = STATE(637), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_statement_block] = STATE(637), + [sym_if_statement] = STATE(637), + [sym_switch_statement] = STATE(637), + [sym_for_statement] = STATE(637), + [sym_for_in_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_statement] = STATE(637), + [sym_try_statement] = STATE(637), + [sym_with_statement] = STATE(637), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(637), + [sym_debugger_statement] = STATE(637), + [sym_return_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym_empty_statement] = STATE(637), + [sym_labeled_statement] = STATE(637), + [sym_parenthesized_expression] = STATE(1058), [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2427), - [sym_string] = STATE(1312), - [sym_comment] = STATE(107), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1816), - [sym_identifier] = ACTIONS(159), - [anon_sym_export] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_import] = ACTIONS(167), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(171), - [anon_sym_const] = ACTIONS(173), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_for] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_try] = ACTIONS(185), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(191), - [anon_sym_debugger] = ACTIONS(193), - [anon_sym_return] = ACTIONS(195), - [anon_sym_throw] = ACTIONS(197), - [anon_sym_SEMI] = ACTIONS(199), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2547), + [sym_string] = STATE(1285), + [sym_comment] = STATE(111), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1858), + [sym_identifier] = ACTIONS(614), + [anon_sym_export] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_import] = ACTIONS(620), + [anon_sym_with] = ACTIONS(622), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(626), + [anon_sym_const] = ACTIONS(628), + [anon_sym_if] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(638), + [anon_sym_try] = ACTIONS(640), + [anon_sym_break] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_debugger] = ACTIONS(646), + [anon_sym_return] = ACTIONS(648), + [anon_sym_throw] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(652), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(654), + [anon_sym_async] = ACTIONS(656), + [anon_sym_function] = ACTIONS(658), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -26738,93 +27775,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(207), - [anon_sym_get] = ACTIONS(207), - [anon_sym_set] = ACTIONS(207), + [anon_sym_static] = ACTIONS(660), + [anon_sym_get] = ACTIONS(660), + [anon_sym_set] = ACTIONS(660), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_export_statement] = STATE(973), - [sym_declaration] = STATE(973), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(973), - [sym_expression_statement] = STATE(973), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(973), - [sym_if_statement] = STATE(973), - [sym_switch_statement] = STATE(973), - [sym_for_statement] = STATE(973), - [sym_for_in_statement] = STATE(973), - [sym_while_statement] = STATE(973), - [sym_do_statement] = STATE(973), - [sym_try_statement] = STATE(973), - [sym_with_statement] = STATE(973), - [sym_break_statement] = STATE(973), - [sym_continue_statement] = STATE(973), - [sym_debugger_statement] = STATE(973), - [sym_return_statement] = STATE(973), - [sym_throw_statement] = STATE(973), - [sym_empty_statement] = STATE(973), - [sym_labeled_statement] = STATE(973), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), - [sym_comment] = STATE(108), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1850), + [112] = { + [sym_export_statement] = STATE(907), + [sym_declaration] = STATE(907), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(907), + [sym_expression_statement] = STATE(907), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(907), + [sym_if_statement] = STATE(907), + [sym_switch_statement] = STATE(907), + [sym_for_statement] = STATE(907), + [sym_for_in_statement] = STATE(907), + [sym_while_statement] = STATE(907), + [sym_do_statement] = STATE(907), + [sym_try_statement] = STATE(907), + [sym_with_statement] = STATE(907), + [sym_break_statement] = STATE(907), + [sym_continue_statement] = STATE(907), + [sym_debugger_statement] = STATE(907), + [sym_return_statement] = STATE(907), + [sym_throw_statement] = STATE(907), + [sym_empty_statement] = STATE(907), + [sym_labeled_statement] = STATE(907), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), + [sym_comment] = STATE(112), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -26835,22 +27872,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -26867,88 +27904,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(91), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_export_statement] = STATE(2266), - [sym_declaration] = STATE(2266), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2266), - [sym_expression_statement] = STATE(2266), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2266), - [sym_if_statement] = STATE(2266), - [sym_switch_statement] = STATE(2266), - [sym_for_statement] = STATE(2266), - [sym_for_in_statement] = STATE(2266), - [sym_while_statement] = STATE(2266), - [sym_do_statement] = STATE(2266), - [sym_try_statement] = STATE(2266), - [sym_with_statement] = STATE(2266), - [sym_break_statement] = STATE(2266), - [sym_continue_statement] = STATE(2266), - [sym_debugger_statement] = STATE(2266), - [sym_return_statement] = STATE(2266), - [sym_throw_statement] = STATE(2266), - [sym_empty_statement] = STATE(2266), - [sym_labeled_statement] = STATE(2266), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), - [sym_comment] = STATE(109), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), + [113] = { + [sym_export_statement] = STATE(641), + [sym_declaration] = STATE(641), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(641), + [sym_expression_statement] = STATE(641), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_statement_block] = STATE(641), + [sym_if_statement] = STATE(641), + [sym_switch_statement] = STATE(641), + [sym_for_statement] = STATE(641), + [sym_for_in_statement] = STATE(641), + [sym_while_statement] = STATE(641), + [sym_do_statement] = STATE(641), + [sym_try_statement] = STATE(641), + [sym_with_statement] = STATE(641), + [sym_break_statement] = STATE(641), + [sym_continue_statement] = STATE(641), + [sym_debugger_statement] = STATE(641), + [sym_return_statement] = STATE(641), + [sym_throw_statement] = STATE(641), + [sym_empty_statement] = STATE(641), + [sym_labeled_statement] = STATE(641), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1222), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2547), + [sym_string] = STATE(1285), + [sym_comment] = STATE(113), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1858), [sym_identifier] = ACTIONS(614), [anon_sym_export] = ACTIONS(616), [anon_sym_LBRACE] = ACTIONS(618), [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), + [anon_sym_with] = ACTIONS(622), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(626), + [anon_sym_const] = ACTIONS(628), + [anon_sym_if] = ACTIONS(630), + [anon_sym_switch] = ACTIONS(632), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(638), + [anon_sym_try] = ACTIONS(640), [anon_sym_break] = ACTIONS(642), [anon_sym_continue] = ACTIONS(644), [anon_sym_debugger] = ACTIONS(646), @@ -26959,22 +27996,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(654), [anon_sym_async] = ACTIONS(656), [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -26991,212 +28028,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(660), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_export_statement] = STATE(2655), - [sym_declaration] = STATE(2655), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2655), - [sym_expression_statement] = STATE(2655), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2655), - [sym_if_statement] = STATE(2655), - [sym_switch_statement] = STATE(2655), - [sym_for_statement] = STATE(2655), - [sym_for_in_statement] = STATE(2655), - [sym_while_statement] = STATE(2655), - [sym_do_statement] = STATE(2655), - [sym_try_statement] = STATE(2655), - [sym_with_statement] = STATE(2655), - [sym_break_statement] = STATE(2655), - [sym_continue_statement] = STATE(2655), - [sym_debugger_statement] = STATE(2655), - [sym_return_statement] = STATE(2655), - [sym_throw_statement] = STATE(2655), - [sym_empty_statement] = STATE(2655), - [sym_labeled_statement] = STATE(2655), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), - [sym_comment] = STATE(110), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), - [sym_identifier] = ACTIONS(614), - [anon_sym_export] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_debugger] = ACTIONS(646), - [anon_sym_return] = ACTIONS(648), - [anon_sym_throw] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(660), - [anon_sym_get] = ACTIONS(660), - [anon_sym_set] = ACTIONS(660), - [sym_html_comment] = ACTIONS(5), - }, - [111] = { - [sym_export_statement] = STATE(801), - [sym_declaration] = STATE(801), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(801), - [sym_expression_statement] = STATE(801), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_statement_block] = STATE(801), - [sym_if_statement] = STATE(801), - [sym_switch_statement] = STATE(801), - [sym_for_statement] = STATE(801), - [sym_for_in_statement] = STATE(801), - [sym_while_statement] = STATE(801), - [sym_do_statement] = STATE(801), - [sym_try_statement] = STATE(801), - [sym_with_statement] = STATE(801), - [sym_break_statement] = STATE(801), - [sym_continue_statement] = STATE(801), - [sym_debugger_statement] = STATE(801), - [sym_return_statement] = STATE(801), - [sym_throw_statement] = STATE(801), - [sym_empty_statement] = STATE(801), - [sym_labeled_statement] = STATE(801), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2190), - [sym_string] = STATE(1312), - [sym_comment] = STATE(111), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1801), + [114] = { + [sym_export_statement] = STATE(2110), + [sym_declaration] = STATE(2110), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(2110), + [sym_expression_statement] = STATE(2110), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_statement_block] = STATE(2110), + [sym_if_statement] = STATE(2110), + [sym_switch_statement] = STATE(2110), + [sym_for_statement] = STATE(2110), + [sym_for_in_statement] = STATE(2110), + [sym_while_statement] = STATE(2110), + [sym_do_statement] = STATE(2110), + [sym_try_statement] = STATE(2110), + [sym_with_statement] = STATE(2110), + [sym_break_statement] = STATE(2110), + [sym_continue_statement] = STATE(2110), + [sym_debugger_statement] = STATE(2110), + [sym_return_statement] = STATE(2110), + [sym_throw_statement] = STATE(2110), + [sym_empty_statement] = STATE(2110), + [sym_labeled_statement] = STATE(2110), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2488), + [sym_string] = STATE(1285), + [sym_comment] = STATE(114), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1846), [sym_identifier] = ACTIONS(566), [anon_sym_export] = ACTIONS(568), [anon_sym_LBRACE] = ACTIONS(570), [anon_sym_import] = ACTIONS(572), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(576), - [anon_sym_const] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_try] = ACTIONS(590), - [anon_sym_with] = ACTIONS(592), + [anon_sym_with] = ACTIONS(574), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(578), + [anon_sym_const] = ACTIONS(580), + [anon_sym_if] = ACTIONS(582), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(588), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(592), [anon_sym_break] = ACTIONS(594), [anon_sym_continue] = ACTIONS(596), [anon_sym_debugger] = ACTIONS(598), @@ -27207,22 +28120,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(606), [anon_sym_async] = ACTIONS(608), [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -27239,88 +28152,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_export_statement] = STATE(511), - [sym_declaration] = STATE(511), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(511), - [sym_expression_statement] = STATE(511), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_statement_block] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_switch_statement] = STATE(511), - [sym_for_statement] = STATE(511), - [sym_for_in_statement] = STATE(511), - [sym_while_statement] = STATE(511), - [sym_do_statement] = STATE(511), - [sym_try_statement] = STATE(511), - [sym_with_statement] = STATE(511), - [sym_break_statement] = STATE(511), - [sym_continue_statement] = STATE(511), - [sym_debugger_statement] = STATE(511), - [sym_return_statement] = STATE(511), - [sym_throw_statement] = STATE(511), - [sym_empty_statement] = STATE(511), - [sym_labeled_statement] = STATE(511), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2502), - [sym_string] = STATE(1312), - [sym_comment] = STATE(112), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1830), + [115] = { + [sym_export_statement] = STATE(645), + [sym_declaration] = STATE(645), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(645), + [sym_expression_statement] = STATE(645), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_statement_block] = STATE(645), + [sym_if_statement] = STATE(645), + [sym_switch_statement] = STATE(645), + [sym_for_statement] = STATE(645), + [sym_for_in_statement] = STATE(645), + [sym_while_statement] = STATE(645), + [sym_do_statement] = STATE(645), + [sym_try_statement] = STATE(645), + [sym_with_statement] = STATE(645), + [sym_break_statement] = STATE(645), + [sym_continue_statement] = STATE(645), + [sym_debugger_statement] = STATE(645), + [sym_return_statement] = STATE(645), + [sym_throw_statement] = STATE(645), + [sym_empty_statement] = STATE(645), + [sym_labeled_statement] = STATE(645), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2229), + [sym_string] = STATE(1285), + [sym_comment] = STATE(115), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1885), [sym_identifier] = ACTIONS(518), [anon_sym_export] = ACTIONS(520), [anon_sym_LBRACE] = ACTIONS(522), [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(528), - [anon_sym_const] = ACTIONS(530), - [anon_sym_if] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(536), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(542), - [anon_sym_with] = ACTIONS(544), + [anon_sym_with] = ACTIONS(526), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(530), + [anon_sym_const] = ACTIONS(532), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_for] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(542), + [anon_sym_try] = ACTIONS(544), [anon_sym_break] = ACTIONS(546), [anon_sym_continue] = ACTIONS(548), [anon_sym_debugger] = ACTIONS(550), @@ -27331,22 +28244,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(558), [anon_sym_async] = ACTIONS(560), [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -27363,486 +28276,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(564), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_export_statement] = STATE(2694), - [sym_declaration] = STATE(2694), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(2694), - [sym_expression_statement] = STATE(2694), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_statement_block] = STATE(2694), - [sym_if_statement] = STATE(2694), - [sym_switch_statement] = STATE(2694), - [sym_for_statement] = STATE(2694), - [sym_for_in_statement] = STATE(2694), - [sym_while_statement] = STATE(2694), - [sym_do_statement] = STATE(2694), - [sym_try_statement] = STATE(2694), - [sym_with_statement] = STATE(2694), - [sym_break_statement] = STATE(2694), - [sym_continue_statement] = STATE(2694), - [sym_debugger_statement] = STATE(2694), - [sym_return_statement] = STATE(2694), - [sym_throw_statement] = STATE(2694), - [sym_empty_statement] = STATE(2694), - [sym_labeled_statement] = STATE(2694), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1205), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2181), - [sym_string] = STATE(1312), - [sym_comment] = STATE(113), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1839), - [sym_identifier] = ACTIONS(614), - [anon_sym_export] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_import] = ACTIONS(620), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(624), - [anon_sym_const] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(638), - [anon_sym_with] = ACTIONS(640), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_debugger] = ACTIONS(646), - [anon_sym_return] = ACTIONS(648), - [anon_sym_throw] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(656), - [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(660), - [anon_sym_get] = ACTIONS(660), - [anon_sym_set] = ACTIONS(660), - [sym_html_comment] = ACTIONS(5), - }, - [114] = { - [sym_export_statement] = STATE(974), - [sym_declaration] = STATE(975), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(976), - [sym_expression_statement] = STATE(959), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(955), - [sym_if_statement] = STATE(951), - [sym_switch_statement] = STATE(948), - [sym_for_statement] = STATE(944), - [sym_for_in_statement] = STATE(937), - [sym_while_statement] = STATE(922), - [sym_do_statement] = STATE(916), - [sym_try_statement] = STATE(914), - [sym_with_statement] = STATE(911), - [sym_break_statement] = STATE(935), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(901), - [sym_return_statement] = STATE(929), - [sym_throw_statement] = STATE(936), - [sym_empty_statement] = STATE(945), - [sym_labeled_statement] = STATE(985), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), - [sym_comment] = STATE(114), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1850), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = 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_SEMI] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(91), - [anon_sym_get] = ACTIONS(91), - [anon_sym_set] = ACTIONS(91), - [sym_html_comment] = ACTIONS(5), - }, - [115] = { - [sym_export_statement] = STATE(838), - [sym_declaration] = STATE(839), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(840), - [sym_expression_statement] = STATE(842), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_statement_block] = STATE(843), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(845), - [sym_for_statement] = STATE(846), - [sym_for_in_statement] = STATE(848), - [sym_while_statement] = STATE(849), - [sym_do_statement] = STATE(850), - [sym_try_statement] = STATE(851), - [sym_with_statement] = STATE(852), - [sym_break_statement] = STATE(853), - [sym_continue_statement] = STATE(855), - [sym_debugger_statement] = STATE(856), - [sym_return_statement] = STATE(857), - [sym_throw_statement] = STATE(859), - [sym_empty_statement] = STATE(860), - [sym_labeled_statement] = STATE(861), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2190), - [sym_string] = STATE(1312), - [sym_comment] = STATE(115), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1801), - [sym_identifier] = ACTIONS(566), - [anon_sym_export] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_import] = ACTIONS(572), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(576), - [anon_sym_const] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_try] = ACTIONS(590), - [anon_sym_with] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_debugger] = ACTIONS(598), - [anon_sym_return] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(606), - [anon_sym_async] = ACTIONS(608), - [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), - [sym_html_comment] = ACTIONS(5), - }, [116] = { - [sym_export_statement] = STATE(553), - [sym_declaration] = STATE(553), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(553), - [sym_expression_statement] = STATE(553), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_statement_block] = STATE(553), - [sym_if_statement] = STATE(553), - [sym_switch_statement] = STATE(553), - [sym_for_statement] = STATE(553), - [sym_for_in_statement] = STATE(553), - [sym_while_statement] = STATE(553), - [sym_do_statement] = STATE(553), - [sym_try_statement] = STATE(553), - [sym_with_statement] = STATE(553), - [sym_break_statement] = STATE(553), - [sym_continue_statement] = STATE(553), - [sym_debugger_statement] = STATE(553), - [sym_return_statement] = STATE(553), - [sym_throw_statement] = STATE(553), - [sym_empty_statement] = STATE(553), - [sym_labeled_statement] = STATE(553), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2190), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(766), + [sym_declaration] = STATE(766), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(766), + [sym_expression_statement] = STATE(766), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_switch_statement] = STATE(766), + [sym_for_statement] = STATE(766), + [sym_for_in_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_do_statement] = STATE(766), + [sym_try_statement] = STATE(766), + [sym_with_statement] = STATE(766), + [sym_break_statement] = STATE(766), + [sym_continue_statement] = STATE(766), + [sym_debugger_statement] = STATE(766), + [sym_return_statement] = STATE(766), + [sym_throw_statement] = STATE(766), + [sym_empty_statement] = STATE(766), + [sym_labeled_statement] = STATE(766), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), [sym_comment] = STATE(116), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1801), - [sym_identifier] = ACTIONS(566), - [anon_sym_export] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_import] = ACTIONS(572), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(576), - [anon_sym_const] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_try] = ACTIONS(590), - [anon_sym_with] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_debugger] = ACTIONS(598), - [anon_sym_return] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(604), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(606), - [anon_sym_async] = ACTIONS(608), - [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -27854,119 +28395,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_export_statement] = STATE(804), - [sym_declaration] = STATE(804), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(804), - [sym_expression_statement] = STATE(804), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_statement_block] = STATE(804), - [sym_if_statement] = STATE(804), - [sym_switch_statement] = STATE(804), - [sym_for_statement] = STATE(804), - [sym_for_in_statement] = STATE(804), - [sym_while_statement] = STATE(804), - [sym_do_statement] = STATE(804), - [sym_try_statement] = STATE(804), - [sym_with_statement] = STATE(804), - [sym_break_statement] = STATE(804), - [sym_continue_statement] = STATE(804), - [sym_debugger_statement] = STATE(804), - [sym_return_statement] = STATE(804), - [sym_throw_statement] = STATE(804), - [sym_empty_statement] = STATE(804), - [sym_labeled_statement] = STATE(804), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2190), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(805), + [sym_declaration] = STATE(805), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(805), + [sym_expression_statement] = STATE(805), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_statement_block] = STATE(805), + [sym_if_statement] = STATE(805), + [sym_switch_statement] = STATE(805), + [sym_for_statement] = STATE(805), + [sym_for_in_statement] = STATE(805), + [sym_while_statement] = STATE(805), + [sym_do_statement] = STATE(805), + [sym_try_statement] = STATE(805), + [sym_with_statement] = STATE(805), + [sym_break_statement] = STATE(805), + [sym_continue_statement] = STATE(805), + [sym_debugger_statement] = STATE(805), + [sym_return_statement] = STATE(805), + [sym_throw_statement] = STATE(805), + [sym_empty_statement] = STATE(805), + [sym_labeled_statement] = STATE(805), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(1285), [sym_comment] = STATE(117), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1801), - [sym_identifier] = ACTIONS(566), - [anon_sym_export] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_import] = ACTIONS(572), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(576), - [anon_sym_const] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(586), - [anon_sym_do] = ACTIONS(588), - [anon_sym_try] = ACTIONS(590), - [anon_sym_with] = ACTIONS(592), - [anon_sym_break] = ACTIONS(594), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_debugger] = ACTIONS(598), - [anon_sym_return] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(604), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1880), + [sym_identifier] = ACTIONS(284), + [anon_sym_export] = ACTIONS(286), + [anon_sym_LBRACE] = ACTIONS(290), + [anon_sym_import] = ACTIONS(292), + [anon_sym_with] = ACTIONS(294), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(298), + [anon_sym_const] = ACTIONS(300), + [anon_sym_if] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_for] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(308), + [anon_sym_do] = ACTIONS(310), + [anon_sym_try] = ACTIONS(312), + [anon_sym_break] = ACTIONS(314), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_debugger] = ACTIONS(318), + [anon_sym_return] = ACTIONS(320), + [anon_sym_throw] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(606), - [anon_sym_async] = ACTIONS(608), - [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -27978,93 +28519,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), + [anon_sym_static] = ACTIONS(332), + [anon_sym_get] = ACTIONS(332), + [anon_sym_set] = ACTIONS(332), [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_export_statement] = STATE(932), - [sym_declaration] = STATE(930), - [sym_import] = STATE(1785), - [sym_import_statement] = STATE(956), - [sym_expression_statement] = STATE(919), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_statement_block] = STATE(918), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(912), - [sym_for_statement] = STATE(910), - [sym_for_in_statement] = STATE(908), - [sym_while_statement] = STATE(907), - [sym_do_statement] = STATE(906), - [sym_try_statement] = STATE(905), - [sym_with_statement] = STATE(904), - [sym_break_statement] = STATE(903), - [sym_continue_statement] = STATE(899), - [sym_debugger_statement] = STATE(897), - [sym_return_statement] = STATE(896), - [sym_throw_statement] = STATE(895), - [sym_empty_statement] = STATE(949), - [sym_labeled_statement] = STATE(950), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1241), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2588), - [sym_string] = STATE(1312), + [sym_export_statement] = STATE(989), + [sym_declaration] = STATE(988), + [sym_import] = STATE(1819), + [sym_import_statement] = STATE(987), + [sym_expression_statement] = STATE(986), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_statement_block] = STATE(985), + [sym_if_statement] = STATE(984), + [sym_switch_statement] = STATE(979), + [sym_for_statement] = STATE(978), + [sym_for_in_statement] = STATE(977), + [sym_while_statement] = STATE(976), + [sym_do_statement] = STATE(975), + [sym_try_statement] = STATE(966), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(964), + [sym_continue_statement] = STATE(963), + [sym_debugger_statement] = STATE(961), + [sym_return_statement] = STATE(960), + [sym_throw_statement] = STATE(897), + [sym_empty_statement] = STATE(957), + [sym_labeled_statement] = STATE(956), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2609), + [sym_string] = STATE(1285), [sym_comment] = STATE(118), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1850), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1859), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(21), - [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_await] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_do] = ACTIONS(37), - [anon_sym_try] = ACTIONS(39), - [anon_sym_with] = ACTIONS(41), + [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_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), @@ -28075,22 +28616,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = 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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -28108,45 +28649,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1168), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1182), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(119), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(666), @@ -28167,11 +28708,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(682), [anon_sym_GT] = ACTIONS(670), [anon_sym_DOT] = ACTIONS(670), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), [sym_optional_chain] = ACTIONS(670), - [anon_sym_new] = ACTIONS(690), + [anon_sym_new] = ACTIONS(694), [anon_sym_AMP_AMP] = ACTIONS(670), [anon_sym_PIPE_PIPE] = ACTIONS(670), [anon_sym_GT_GT] = ACTIONS(670), @@ -28180,9 +28723,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(670), [anon_sym_CARET] = ACTIONS(670), [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_PERCENT] = ACTIONS(670), [anon_sym_STAR_STAR] = ACTIONS(670), [anon_sym_LT_EQ] = ACTIONS(670), @@ -28193,15 +28736,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(670), [anon_sym_QMARK_QMARK] = ACTIONS(670), [anon_sym_instanceof] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -28220,45 +28761,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1221), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1230), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), [sym_comment] = STATE(120), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_STAR] = ACTIONS(716), @@ -28267,8 +28808,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(670), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_in] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(670), [anon_sym_yield] = ACTIONS(55), @@ -28277,11 +28818,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_GT] = ACTIONS(670), [anon_sym_DOT] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), [sym_optional_chain] = ACTIONS(670), - [anon_sym_new] = ACTIONS(69), + [anon_sym_new] = ACTIONS(73), [anon_sym_AMP_AMP] = ACTIONS(670), [anon_sym_PIPE_PIPE] = ACTIONS(670), [anon_sym_GT_GT] = ACTIONS(670), @@ -28290,9 +28833,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(670), [anon_sym_CARET] = ACTIONS(670), [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), [anon_sym_PERCENT] = ACTIONS(670), [anon_sym_STAR_STAR] = ACTIONS(670), [anon_sym_LT_EQ] = ACTIONS(670), @@ -28303,15 +28846,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(670), [anon_sym_QMARK_QMARK] = ACTIONS(670), [anon_sym_instanceof] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -28331,45 +28872,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1231), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1229), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), [sym_comment] = STATE(121), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), [anon_sym_STAR] = ACTIONS(730), @@ -28377,7 +28918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(670), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_in] = ACTIONS(670), [anon_sym_of] = ACTIONS(670), @@ -28388,6 +28929,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_GT] = ACTIONS(670), [anon_sym_DOT] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -28421,8 +28964,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -28442,45 +28983,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1441), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1429), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(122), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(750), [anon_sym_export] = ACTIONS(752), [anon_sym_STAR] = ACTIONS(754), @@ -28497,9 +29038,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(682), [anon_sym_GT] = ACTIONS(670), [anon_sym_DOT] = ACTIONS(670), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [sym_optional_chain] = ACTIONS(670), [anon_sym_new] = ACTIONS(766), [anon_sym_AMP_AMP] = ACTIONS(670), @@ -28530,8 +29073,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(768), [anon_sym_PLUS_PLUS] = ACTIONS(772), [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -28550,45 +29091,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1380), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1420), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(123), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_STAR] = ACTIONS(782), @@ -28605,9 +29146,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(682), [anon_sym_GT] = ACTIONS(670), [anon_sym_DOT] = ACTIONS(670), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [sym_optional_chain] = ACTIONS(670), [anon_sym_new] = ACTIONS(790), [anon_sym_AMP_AMP] = ACTIONS(670), @@ -28620,7 +29163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(670), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_PERCENT] = ACTIONS(670), [anon_sym_STAR_STAR] = ACTIONS(670), [anon_sym_LT_EQ] = ACTIONS(670), @@ -28638,8 +29181,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -28658,51 +29199,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1300), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2070), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_spread_element] = STATE(2103), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1344), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2128), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(2142), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(124), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1934), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2045), - [aux_sym_array_pattern_repeat1] = STATE(2075), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(1898), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2149), + [aux_sym_array_pattern_repeat1] = STATE(2154), [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(802), [anon_sym_LBRACE] = ACTIONS(756), @@ -28716,23 +29257,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(806), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -28750,51 +29291,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1285), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2070), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_spread_element] = STATE(2073), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1306), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2128), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(2074), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(125), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1934), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2005), - [aux_sym_array_pattern_repeat1] = STATE(2075), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(1898), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2073), + [aux_sym_array_pattern_repeat1] = STATE(2154), [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(802), [anon_sym_LBRACE] = ACTIONS(756), @@ -28808,23 +29349,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(812), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -28842,51 +29383,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1300), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2070), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_spread_element] = STATE(2103), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1306), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2128), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(2074), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(126), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1934), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2045), - [aux_sym_array_pattern_repeat1] = STATE(2075), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(1898), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2073), + [aux_sym_array_pattern_repeat1] = STATE(2154), [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(802), [anon_sym_LBRACE] = ACTIONS(756), @@ -28900,23 +29441,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(814), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -28934,51 +29475,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1300), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2070), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_spread_element] = STATE(2103), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1306), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2128), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(2074), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(127), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1934), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2045), - [aux_sym_array_pattern_repeat1] = STATE(2075), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(1898), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2073), + [aux_sym_array_pattern_repeat1] = STATE(2154), [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(802), [anon_sym_LBRACE] = ACTIONS(756), @@ -28992,23 +29533,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(816), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -29026,51 +29567,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1307), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2070), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_spread_element] = STATE(2073), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1306), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2128), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(2074), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(128), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1934), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2005), - [aux_sym_array_pattern_repeat1] = STATE(2075), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(1898), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2073), + [aux_sym_array_pattern_repeat1] = STATE(2154), [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(802), [anon_sym_LBRACE] = ACTIONS(756), @@ -29084,23 +29625,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(818), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -29118,51 +29659,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1285), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2070), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_spread_element] = STATE(2073), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1344), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2128), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(2142), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(129), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1934), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2005), - [aux_sym_array_pattern_repeat1] = STATE(2075), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(1898), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2149), + [aux_sym_array_pattern_repeat1] = STATE(2154), [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(802), [anon_sym_LBRACE] = ACTIONS(756), @@ -29173,26 +29714,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(676), [anon_sym_yield] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_RBRACK] = ACTIONS(818), + [anon_sym_RBRACK] = ACTIONS(820), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -29210,51 +29751,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1300), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2070), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_spread_element] = STATE(2103), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1325), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2128), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(2142), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(130), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1934), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2045), - [aux_sym_array_pattern_repeat1] = STATE(2075), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(1898), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2149), + [aux_sym_array_pattern_repeat1] = STATE(2154), [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(802), [anon_sym_LBRACE] = ACTIONS(756), @@ -29268,23 +29809,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(820), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -29302,51 +29843,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1300), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2070), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_spread_element] = STATE(2103), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1306), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2128), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(2074), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(131), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1934), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2045), - [aux_sym_array_pattern_repeat1] = STATE(2075), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(1898), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2073), + [aux_sym_array_pattern_repeat1] = STATE(2154), [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(802), [anon_sym_LBRACE] = ACTIONS(756), @@ -29360,23 +29901,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(822), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -29394,50 +29935,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(1785), - [sym_expression_statement] = STATE(225), - [sym_variable_declaration] = STATE(225), - [sym_lexical_declaration] = STATE(225), - [sym_empty_statement] = STATE(225), - [sym_parenthesized_expression] = STATE(1050), + [sym_import] = STATE(1819), + [sym_expression_statement] = STATE(229), + [sym_variable_declaration] = STATE(229), + [sym_lexical_declaration] = STATE(229), + [sym_empty_statement] = STATE(229), + [sym_parenthesized_expression] = STATE(1063), [sym_expression] = STATE(1211), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1050), - [sym_subscript_expression] = STATE(1050), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2148), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2314), - [sym_string] = STATE(1312), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2182), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2359), + [sym_string] = STATE(1285), [sym_comment] = STATE(132), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(824), [anon_sym_export] = ACTIONS(826), [anon_sym_LBRACE] = ACTIONS(828), @@ -29445,29 +29986,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(830), [anon_sym_let] = ACTIONS(832), [anon_sym_const] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(836), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(840), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -29485,80 +30026,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_declaration] = STATE(688), - [sym_import] = STATE(1785), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1382), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), + [sym_import] = STATE(1819), + [sym_expression_statement] = STATE(230), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_empty_statement] = STATE(230), + [sym_parenthesized_expression] = STATE(1063), + [sym_expression] = STATE(1211), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2182), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2359), + [sym_string] = STATE(1285), [sym_comment] = STATE(133), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1984), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(824), + [anon_sym_export] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_import] = ACTIONS(672), + [anon_sym_var] = ACTIONS(830), + [anon_sym_let] = ACTIONS(832), + [anon_sym_const] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(842), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(826), + [anon_sym_get] = ACTIONS(826), + [anon_sym_set] = ACTIONS(826), + [sym_html_comment] = ACTIONS(5), + }, + [134] = { + [sym_declaration] = STATE(892), + [sym_import] = STATE(1819), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1418), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(134), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1938), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(169), + [anon_sym_var] = ACTIONS(296), [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_const] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), [anon_sym_async] = ACTIONS(846), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -29575,172 +30207,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_declaration] = STATE(650), - [sym_import] = STATE(1785), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1401), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(134), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1987), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(526), + [135] = { + [sym_comment] = STATE(135), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_default] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_with] = ACTIONS(848), + [anon_sym_var] = ACTIONS(848), [anon_sym_let] = ACTIONS(848), - [anon_sym_const] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(558), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_const] = ACTIONS(848), + [anon_sym_else] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_await] = ACTIONS(848), + [anon_sym_in] = ACTIONS(850), + [anon_sym_while] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_debugger] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_case] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LTtemplate_GT] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(850), + [anon_sym_new] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_GT_GT] = ACTIONS(850), + [anon_sym_GT_GT_GT] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(850), + [anon_sym_STAR_STAR] = ACTIONS(850), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(850), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK] = ACTIONS(850), + [anon_sym_instanceof] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_typeof] = ACTIONS(848), + [anon_sym_void] = ACTIONS(848), + [anon_sym_delete] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [sym_private_property_identifier] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_get] = ACTIONS(848), + [anon_sym_set] = ACTIONS(848), + [sym__automatic_semicolon] = ACTIONS(854), + [sym__ternary_qmark] = ACTIONS(856), [sym_html_comment] = ACTIONS(5), }, - [135] = { - [sym_declaration] = STATE(808), - [sym_import] = STATE(1785), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1389), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(858), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(858), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(858), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(135), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1984), + [136] = { + [sym_declaration] = STATE(2460), + [sym_import] = STATE(1819), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1399), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(136), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1981), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(169), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(858), + [anon_sym_const] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(846), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(606), + [anon_sym_async] = ACTIONS(860), + [anon_sym_function] = ACTIONS(610), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -29757,81 +30389,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [136] = { - [sym_declaration] = STATE(2562), - [sym_import] = STATE(1785), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1404), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(136), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1975), + [137] = { + [sym_declaration] = STATE(543), + [sym_import] = STATE(1819), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1385), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(137), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(2015), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(852), - [anon_sym_const] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(862), + [anon_sym_const] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(854), + [anon_sym_async] = ACTIONS(864), [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -29848,172 +30480,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(1785), - [sym_expression_statement] = STATE(231), - [sym_variable_declaration] = STATE(231), - [sym_lexical_declaration] = STATE(231), - [sym_empty_statement] = STATE(231), - [sym_parenthesized_expression] = STATE(1050), - [sym_expression] = STATE(1211), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1050), - [sym_subscript_expression] = STATE(1050), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2148), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2314), - [sym_string] = STATE(1312), - [sym_comment] = STATE(137), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(824), - [anon_sym_export] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(830), - [anon_sym_let] = ACTIONS(832), - [anon_sym_const] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(838), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(840), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(842), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(826), - [anon_sym_get] = ACTIONS(826), - [anon_sym_set] = ACTIONS(826), - [sym_html_comment] = ACTIONS(5), - }, [138] = { - [sym_declaration] = STATE(879), - [sym_import] = STATE(1785), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1381), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), + [sym_declaration] = STATE(993), + [sym_import] = STATE(1819), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1386), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), [sym_comment] = STATE(138), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1978), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1957), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(856), - [anon_sym_const] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(866), + [anon_sym_const] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(606), - [anon_sym_async] = ACTIONS(858), - [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(868), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -30031,80 +30572,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(1785), - [sym_expression_statement] = STATE(229), - [sym_variable_declaration] = STATE(229), - [sym_lexical_declaration] = STATE(229), - [sym_empty_statement] = STATE(229), - [sym_parenthesized_expression] = STATE(1050), - [sym_expression] = STATE(1211), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1050), - [sym_subscript_expression] = STATE(1050), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2148), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2314), - [sym_string] = STATE(1312), + [sym_declaration] = STATE(717), + [sym_import] = STATE(1819), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1407), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(734), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(734), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(734), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), [sym_comment] = STATE(139), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(824), - [anon_sym_export] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(828), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(830), - [anon_sym_let] = ACTIONS(832), - [anon_sym_const] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_var] = ACTIONS(296), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(300), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(840), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(846), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -30114,88 +30655,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(842), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(826), - [anon_sym_get] = ACTIONS(826), - [anon_sym_set] = ACTIONS(826), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_declaration] = STATE(639), - [sym_import] = STATE(1785), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1398), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(654), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(654), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(654), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), + [sym_declaration] = STATE(549), + [sym_import] = STATE(1819), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1409), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(538), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(538), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(538), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), [sym_comment] = STATE(140), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1987), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(2015), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(526), - [anon_sym_let] = ACTIONS(848), - [anon_sym_const] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(862), + [anon_sym_const] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(558), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(562), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(654), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(658), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -30213,80 +30754,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_declaration] = STATE(954), - [sym_import] = STATE(1785), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1379), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), + [sym_declaration] = STATE(996), + [sym_import] = STATE(1819), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1389), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(946), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(946), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(946), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), [sym_comment] = STATE(141), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1881), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1957), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(860), - [anon_sym_const] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(866), + [anon_sym_const] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(63), - [anon_sym_async] = ACTIONS(862), - [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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(868), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -30304,80 +30845,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_declaration] = STATE(2276), - [sym_import] = STATE(1785), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1390), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(2540), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(2540), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(2540), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), + [sym_import] = STATE(1819), + [sym_expression_statement] = STATE(227), + [sym_variable_declaration] = STATE(227), + [sym_lexical_declaration] = STATE(227), + [sym_empty_statement] = STATE(227), + [sym_parenthesized_expression] = STATE(1063), + [sym_expression] = STATE(1211), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2182), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2359), + [sym_string] = STATE(1285), [sym_comment] = STATE(142), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1975), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(824), + [anon_sym_export] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(852), - [anon_sym_const] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_var] = ACTIONS(830), + [anon_sym_let] = ACTIONS(832), + [anon_sym_const] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(836), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(654), - [anon_sym_async] = ACTIONS(854), - [anon_sym_function] = ACTIONS(658), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -30387,179 +30928,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [sym_undefined] = ACTIONS(842), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(826), + [anon_sym_get] = ACTIONS(826), + [anon_sym_set] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, [143] = { + [sym_import] = STATE(1819), + [sym_expression_statement] = STATE(223), + [sym_variable_declaration] = STATE(223), + [sym_lexical_declaration] = STATE(223), + [sym_empty_statement] = STATE(223), + [sym_parenthesized_expression] = STATE(1063), + [sym_expression] = STATE(1211), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2182), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2359), + [sym_string] = STATE(1285), [sym_comment] = STATE(143), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_default] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_import] = ACTIONS(864), - [anon_sym_var] = ACTIONS(864), - [anon_sym_let] = ACTIONS(864), - [anon_sym_const] = ACTIONS(864), - [anon_sym_else] = ACTIONS(864), - [anon_sym_if] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(864), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(864), - [anon_sym_in] = ACTIONS(866), - [anon_sym_while] = ACTIONS(864), - [anon_sym_do] = ACTIONS(864), - [anon_sym_try] = ACTIONS(864), - [anon_sym_with] = ACTIONS(864), - [anon_sym_break] = ACTIONS(864), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_case] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LTtemplate_GT] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_class] = ACTIONS(864), - [anon_sym_async] = ACTIONS(864), - [anon_sym_function] = ACTIONS(864), - [sym_optional_chain] = ACTIONS(866), - [anon_sym_new] = ACTIONS(864), - [anon_sym_AMP_AMP] = ACTIONS(866), - [anon_sym_PIPE_PIPE] = ACTIONS(866), - [anon_sym_GT_GT] = ACTIONS(866), - [anon_sym_GT_GT_GT] = ACTIONS(866), - [anon_sym_LT_LT] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_CARET] = ACTIONS(866), - [anon_sym_PIPE] = ACTIONS(866), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_PERCENT] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(866), - [anon_sym_LT_EQ] = ACTIONS(866), - [anon_sym_EQ_EQ] = ACTIONS(866), - [anon_sym_EQ_EQ_EQ] = ACTIONS(866), - [anon_sym_BANG_EQ] = ACTIONS(866), - [anon_sym_BANG_EQ_EQ] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(866), - [anon_sym_QMARK_QMARK] = ACTIONS(866), - [anon_sym_instanceof] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(864), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(824), + [anon_sym_export] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_import] = ACTIONS(672), + [anon_sym_var] = ACTIONS(830), + [anon_sym_let] = ACTIONS(832), + [anon_sym_const] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(864), - [sym_number] = ACTIONS(864), - [sym_private_property_identifier] = ACTIONS(864), - [sym_this] = ACTIONS(864), - [sym_super] = ACTIONS(864), - [sym_true] = ACTIONS(864), - [sym_false] = ACTIONS(864), - [sym_null] = ACTIONS(864), - [sym_undefined] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_static] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), - [sym__automatic_semicolon] = ACTIONS(870), - [sym__ternary_qmark] = ACTIONS(872), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(842), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(826), + [anon_sym_get] = ACTIONS(826), + [anon_sym_set] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_declaration] = STATE(728), - [sym_import] = STATE(1785), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1409), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(685), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(685), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(685), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), + [sym_declaration] = STATE(2589), + [sym_import] = STATE(1819), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1392), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(2242), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(2242), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(2242), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), [sym_comment] = STATE(144), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1978), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1981), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(574), - [anon_sym_let] = ACTIONS(856), - [anon_sym_const] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(858), + [anon_sym_const] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(606), - [anon_sym_async] = ACTIONS(858), + [anon_sym_async] = ACTIONS(860), [anon_sym_function] = ACTIONS(610), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -30577,80 +31118,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(1785), - [sym_expression_statement] = STATE(226), - [sym_variable_declaration] = STATE(226), - [sym_lexical_declaration] = STATE(226), - [sym_empty_statement] = STATE(226), - [sym_parenthesized_expression] = STATE(1050), - [sym_expression] = STATE(1211), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1050), - [sym_subscript_expression] = STATE(1050), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2148), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2314), - [sym_string] = STATE(1312), + [sym_declaration] = STATE(878), + [sym_import] = STATE(1819), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1390), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), [sym_comment] = STATE(145), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(824), - [anon_sym_export] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(828), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1903), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(830), - [anon_sym_let] = ACTIONS(832), - [anon_sym_const] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(870), + [anon_sym_const] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(840), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(558), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(562), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -30660,88 +31201,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(842), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(826), - [anon_sym_get] = ACTIONS(826), - [anon_sym_set] = ACTIONS(826), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_declaration] = STATE(927), - [sym_import] = STATE(1785), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1384), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_class_declaration] = STATE(923), - [sym_function_expression] = STATE(1312), - [sym_function_declaration] = STATE(923), - [sym_generator_function] = STATE(1312), - [sym_generator_function_declaration] = STATE(923), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), + [sym_declaration] = STATE(750), + [sym_import] = STATE(1819), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1388), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_class_declaration] = STATE(849), + [sym_function_expression] = STATE(1285), + [sym_function_declaration] = STATE(849), + [sym_generator_function] = STATE(1285), + [sym_generator_function_declaration] = STATE(849), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), [sym_comment] = STATE(146), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1881), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1903), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_var] = ACTIONS(19), - [anon_sym_let] = ACTIONS(860), - [anon_sym_const] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_var] = ACTIONS(528), + [anon_sym_let] = ACTIONS(870), + [anon_sym_const] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(63), - [anon_sym_async] = ACTIONS(862), - [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(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(558), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(562), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -30759,50 +31300,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(1785), - [sym_expression_statement] = STATE(227), - [sym_variable_declaration] = STATE(227), - [sym_lexical_declaration] = STATE(227), - [sym_empty_statement] = STATE(227), - [sym_parenthesized_expression] = STATE(1050), + [sym_import] = STATE(1819), + [sym_expression_statement] = STATE(232), + [sym_variable_declaration] = STATE(232), + [sym_lexical_declaration] = STATE(232), + [sym_empty_statement] = STATE(232), + [sym_parenthesized_expression] = STATE(1063), [sym_expression] = STATE(1211), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1050), - [sym_subscript_expression] = STATE(1050), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2148), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2314), - [sym_string] = STATE(1312), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2182), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2359), + [sym_string] = STATE(1285), [sym_comment] = STATE(147), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(824), [anon_sym_export] = ACTIONS(826), [anon_sym_LBRACE] = ACTIONS(828), @@ -30810,29 +31351,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(830), [anon_sym_let] = ACTIONS(832), [anon_sym_const] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(836), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(840), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -30850,169 +31391,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [148] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1346), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2606), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(2104), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(148), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_default] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(2101), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [anon_sym_let] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_else] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(874), - [anon_sym_in] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_try] = ACTIONS(874), - [anon_sym_with] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_case] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_LTtemplate_GT] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_DOT] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [sym_optional_chain] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_QMARK_QMARK] = ACTIONS(874), - [anon_sym_instanceof] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_void] = ACTIONS(874), - [anon_sym_delete] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(874), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [sym_private_property_identifier] = ACTIONS(874), - [sym_this] = ACTIONS(874), - [sym_super] = ACTIONS(874), - [sym_true] = ACTIONS(874), - [sym_false] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_get] = ACTIONS(874), - [anon_sym_set] = ACTIONS(874), - [sym__automatic_semicolon] = ACTIONS(876), - [sym__ternary_qmark] = ACTIONS(876), - [sym_html_comment] = ACTIONS(5), - }, - [149] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1434), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2070), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1063), - [sym_subscript_expression] = STATE(1063), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(149), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1934), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_pattern_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(878), - [anon_sym_export] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(882), - [anon_sym_COMMA] = ACTIONS(884), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(880), + [anon_sym_let] = ACTIONS(802), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_await] = ACTIONS(676), [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_RBRACK] = ACTIONS(874), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(890), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(109), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -31022,627 +31473,627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(894), + [sym_undefined] = ACTIONS(810), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), + [anon_sym_static] = ACTIONS(802), + [anon_sym_get] = ACTIONS(802), + [anon_sym_set] = ACTIONS(802), + [sym_html_comment] = ACTIONS(5), + }, + [149] = { + [sym_comment] = STATE(149), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_default] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_with] = ACTIONS(848), + [anon_sym_var] = ACTIONS(848), + [anon_sym_let] = ACTIONS(848), + [anon_sym_const] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_await] = ACTIONS(848), + [anon_sym_in] = ACTIONS(850), + [anon_sym_while] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_debugger] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_case] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LTtemplate_GT] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(850), + [anon_sym_new] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_GT_GT] = ACTIONS(850), + [anon_sym_GT_GT_GT] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(850), + [anon_sym_STAR_STAR] = ACTIONS(850), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(850), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK] = ACTIONS(850), + [anon_sym_instanceof] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_typeof] = ACTIONS(848), + [anon_sym_void] = ACTIONS(848), + [anon_sym_delete] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [sym_private_property_identifier] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_get] = ACTIONS(848), + [anon_sym_set] = ACTIONS(848), + [sym__automatic_semicolon] = ACTIONS(877), + [sym__ternary_qmark] = ACTIONS(856), [sym_html_comment] = ACTIONS(5), }, [150] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2128), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1837), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(150), - [sym_identifier] = ACTIONS(896), - [anon_sym_export] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_default] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_COMMA] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_import] = ACTIONS(896), - [anon_sym_var] = ACTIONS(896), - [anon_sym_let] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_else] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_await] = ACTIONS(896), - [anon_sym_in] = ACTIONS(898), - [anon_sym_while] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_try] = ACTIONS(896), - [anon_sym_with] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_debugger] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_throw] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_case] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_LTtemplate_GT] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_DOT] = ACTIONS(898), - [anon_sym_class] = ACTIONS(896), - [anon_sym_async] = ACTIONS(896), - [anon_sym_function] = ACTIONS(896), - [sym_optional_chain] = ACTIONS(898), - [anon_sym_new] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(898), - [anon_sym_GT_GT_GT] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(898), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_SLASH] = ACTIONS(896), - [anon_sym_PERCENT] = ACTIONS(898), - [anon_sym_STAR_STAR] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ_EQ] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(898), - [anon_sym_QMARK_QMARK] = ACTIONS(898), - [anon_sym_instanceof] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(896), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [sym_pattern] = STATE(1898), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_pattern_repeat1] = STATE(2154), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(889), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(891), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(896), - [sym_number] = ACTIONS(896), - [sym_private_property_identifier] = ACTIONS(896), - [sym_this] = ACTIONS(896), - [sym_super] = ACTIONS(896), - [sym_true] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [sym_null] = ACTIONS(896), - [sym_undefined] = ACTIONS(896), - [anon_sym_AT] = ACTIONS(896), - [anon_sym_static] = ACTIONS(896), - [anon_sym_get] = ACTIONS(896), - [anon_sym_set] = ACTIONS(896), - [sym__automatic_semicolon] = ACTIONS(900), - [sym__ternary_qmark] = ACTIONS(902), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(796), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(895), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), [sym_html_comment] = ACTIONS(5), }, [151] = { [sym_comment] = STATE(151), - [sym_identifier] = ACTIONS(904), - [anon_sym_export] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_default] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_import] = ACTIONS(904), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(904), - [anon_sym_const] = ACTIONS(904), - [anon_sym_else] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_await] = ACTIONS(904), - [anon_sym_in] = ACTIONS(906), - [anon_sym_while] = ACTIONS(904), - [anon_sym_do] = ACTIONS(904), - [anon_sym_try] = ACTIONS(904), - [anon_sym_with] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_debugger] = ACTIONS(904), - [anon_sym_return] = ACTIONS(904), - [anon_sym_throw] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_case] = ACTIONS(904), - [anon_sym_yield] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_LTtemplate_GT] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(904), - [anon_sym_function] = ACTIONS(904), - [sym_optional_chain] = ACTIONS(906), - [anon_sym_new] = ACTIONS(904), - [anon_sym_AMP_AMP] = ACTIONS(906), - [anon_sym_PIPE_PIPE] = ACTIONS(906), - [anon_sym_GT_GT] = ACTIONS(906), - [anon_sym_GT_GT_GT] = ACTIONS(906), - [anon_sym_LT_LT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_EQ_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ_EQ] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(906), - [anon_sym_QMARK_QMARK] = ACTIONS(906), - [anon_sym_instanceof] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_typeof] = ACTIONS(904), - [anon_sym_void] = ACTIONS(904), - [anon_sym_delete] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_default] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_import] = ACTIONS(897), + [anon_sym_with] = ACTIONS(897), + [anon_sym_var] = ACTIONS(897), + [anon_sym_let] = ACTIONS(897), + [anon_sym_const] = ACTIONS(897), + [anon_sym_else] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_switch] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_await] = ACTIONS(897), + [anon_sym_in] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_do] = ACTIONS(897), + [anon_sym_try] = ACTIONS(897), + [anon_sym_break] = ACTIONS(897), + [anon_sym_continue] = ACTIONS(897), + [anon_sym_debugger] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_throw] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_case] = ACTIONS(897), + [anon_sym_yield] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_LTtemplate_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_class] = ACTIONS(897), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(897), + [sym_optional_chain] = ACTIONS(897), + [anon_sym_new] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_GT_GT_GT] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_STAR_STAR] = ACTIONS(897), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_QMARK_QMARK] = ACTIONS(897), + [anon_sym_instanceof] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_typeof] = ACTIONS(897), + [anon_sym_void] = ACTIONS(897), + [anon_sym_delete] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(904), - [sym_number] = ACTIONS(904), - [sym_private_property_identifier] = ACTIONS(904), - [sym_this] = ACTIONS(904), - [sym_super] = ACTIONS(904), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [sym_null] = ACTIONS(904), - [sym_undefined] = ACTIONS(904), - [anon_sym_AT] = ACTIONS(904), - [anon_sym_static] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [sym__automatic_semicolon] = ACTIONS(908), - [sym__ternary_qmark] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(897), + [sym_number] = ACTIONS(897), + [sym_private_property_identifier] = ACTIONS(897), + [sym_this] = ACTIONS(897), + [sym_super] = ACTIONS(897), + [sym_true] = ACTIONS(897), + [sym_false] = ACTIONS(897), + [sym_null] = ACTIONS(897), + [sym_undefined] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [anon_sym_static] = ACTIONS(897), + [anon_sym_get] = ACTIONS(897), + [anon_sym_set] = ACTIONS(897), + [sym__automatic_semicolon] = ACTIONS(899), + [sym__ternary_qmark] = ACTIONS(899), [sym_html_comment] = ACTIONS(5), }, [152] = { [sym_comment] = STATE(152), - [sym_identifier] = ACTIONS(912), - [anon_sym_export] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_default] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_import] = ACTIONS(912), - [anon_sym_var] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_await] = ACTIONS(912), - [anon_sym_in] = ACTIONS(914), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_try] = ACTIONS(912), - [anon_sym_with] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_debugger] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_throw] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_case] = ACTIONS(912), - [anon_sym_yield] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(912), - [anon_sym_LTtemplate_GT] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_class] = ACTIONS(912), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(912), - [sym_optional_chain] = ACTIONS(914), - [anon_sym_new] = ACTIONS(912), - [anon_sym_AMP_AMP] = ACTIONS(914), - [anon_sym_PIPE_PIPE] = ACTIONS(914), - [anon_sym_GT_GT] = ACTIONS(914), - [anon_sym_GT_GT_GT] = ACTIONS(914), - [anon_sym_LT_LT] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_PERCENT] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_EQ_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_QMARK_QMARK] = ACTIONS(914), - [anon_sym_instanceof] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_typeof] = ACTIONS(912), - [anon_sym_void] = ACTIONS(912), - [anon_sym_delete] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), + [sym_identifier] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [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(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [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_SEMI] = ACTIONS(901), + [anon_sym_case] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LTtemplate_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_class] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(901), + [sym_optional_chain] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(901), + [anon_sym_PIPE_PIPE] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_GT_GT_GT] = ACTIONS(901), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_QMARK_QMARK] = ACTIONS(901), + [anon_sym_instanceof] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(912), - [sym_number] = ACTIONS(912), - [sym_private_property_identifier] = ACTIONS(912), - [sym_this] = ACTIONS(912), - [sym_super] = ACTIONS(912), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [sym_null] = ACTIONS(912), - [sym_undefined] = ACTIONS(912), - [anon_sym_AT] = ACTIONS(912), - [anon_sym_static] = ACTIONS(912), - [anon_sym_get] = ACTIONS(912), - [anon_sym_set] = ACTIONS(912), - [sym__automatic_semicolon] = ACTIONS(916), - [sym__ternary_qmark] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(901), + [sym_number] = ACTIONS(901), + [sym_private_property_identifier] = ACTIONS(901), + [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(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(901), + [sym__automatic_semicolon] = ACTIONS(903), + [sym__ternary_qmark] = ACTIONS(903), [sym_html_comment] = ACTIONS(5), }, [153] = { [sym_comment] = STATE(153), - [sym_identifier] = ACTIONS(920), - [anon_sym_export] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_default] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_var] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_await] = ACTIONS(920), - [anon_sym_in] = ACTIONS(922), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_with] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_debugger] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_throw] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_yield] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_LTtemplate_GT] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(922), - [anon_sym_class] = ACTIONS(920), - [anon_sym_async] = ACTIONS(920), - [anon_sym_function] = ACTIONS(920), - [sym_optional_chain] = ACTIONS(922), - [anon_sym_new] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(922), - [anon_sym_PIPE_PIPE] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(922), - [anon_sym_GT_GT_GT] = ACTIONS(922), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_EQ_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_QMARK_QMARK] = ACTIONS(922), - [anon_sym_instanceof] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_typeof] = ACTIONS(920), - [anon_sym_void] = ACTIONS(920), - [anon_sym_delete] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), + [ts_builtin_sym_end] = ACTIONS(905), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_with] = ACTIONS(848), + [anon_sym_var] = ACTIONS(848), + [anon_sym_let] = ACTIONS(848), + [anon_sym_const] = ACTIONS(848), + [anon_sym_else] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_await] = ACTIONS(848), + [anon_sym_in] = ACTIONS(850), + [anon_sym_while] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_debugger] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LTtemplate_GT] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(850), + [anon_sym_new] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_GT_GT] = ACTIONS(850), + [anon_sym_GT_GT_GT] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(850), + [anon_sym_STAR_STAR] = ACTIONS(850), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(850), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK] = ACTIONS(850), + [anon_sym_instanceof] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_typeof] = ACTIONS(848), + [anon_sym_void] = ACTIONS(848), + [anon_sym_delete] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(920), - [sym_number] = ACTIONS(920), - [sym_private_property_identifier] = ACTIONS(920), - [sym_this] = ACTIONS(920), - [sym_super] = ACTIONS(920), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), - [sym_undefined] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(920), - [anon_sym_static] = ACTIONS(920), - [anon_sym_get] = ACTIONS(920), - [anon_sym_set] = ACTIONS(920), - [sym__automatic_semicolon] = ACTIONS(924), - [sym__ternary_qmark] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [sym_private_property_identifier] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_get] = ACTIONS(848), + [anon_sym_set] = ACTIONS(848), + [sym__automatic_semicolon] = ACTIONS(907), + [sym__ternary_qmark] = ACTIONS(856), [sym_html_comment] = ACTIONS(5), }, [154] = { [sym_comment] = STATE(154), - [sym_identifier] = ACTIONS(928), - [anon_sym_export] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_import] = ACTIONS(928), - [anon_sym_var] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_await] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_with] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LTtemplate_GT] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_class] = ACTIONS(928), - [anon_sym_async] = ACTIONS(928), - [anon_sym_function] = ACTIONS(928), - [sym_optional_chain] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_typeof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(928), - [anon_sym_delete] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_with] = ACTIONS(848), + [anon_sym_var] = ACTIONS(848), + [anon_sym_let] = ACTIONS(848), + [anon_sym_const] = ACTIONS(848), + [anon_sym_else] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_await] = ACTIONS(848), + [anon_sym_in] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_debugger] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_case] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LTtemplate_GT] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(848), + [anon_sym_new] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(848), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_GT_GT_GT] = ACTIONS(848), + [anon_sym_LT_LT] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_CARET] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_STAR_STAR] = ACTIONS(848), + [anon_sym_LT_EQ] = ACTIONS(848), + [anon_sym_EQ_EQ] = ACTIONS(848), + [anon_sym_EQ_EQ_EQ] = ACTIONS(848), + [anon_sym_BANG_EQ] = ACTIONS(848), + [anon_sym_BANG_EQ_EQ] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(848), + [anon_sym_QMARK_QMARK] = ACTIONS(848), + [anon_sym_instanceof] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_typeof] = ACTIONS(848), + [anon_sym_void] = ACTIONS(848), + [anon_sym_delete] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(928), - [sym_number] = ACTIONS(928), - [sym_private_property_identifier] = ACTIONS(928), - [sym_this] = ACTIONS(928), - [sym_super] = ACTIONS(928), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_undefined] = ACTIONS(928), - [anon_sym_AT] = ACTIONS(928), - [anon_sym_static] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [sym__automatic_semicolon] = ACTIONS(930), - [sym__ternary_qmark] = ACTIONS(930), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [sym_private_property_identifier] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_get] = ACTIONS(848), + [anon_sym_set] = ACTIONS(848), + [sym__automatic_semicolon] = ACTIONS(909), + [sym__ternary_qmark] = ACTIONS(905), [sym_html_comment] = ACTIONS(5), }, [155] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1451), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2128), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1075), + [sym_subscript_expression] = STATE(1075), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(932), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_import] = ACTIONS(864), - [anon_sym_var] = ACTIONS(864), - [anon_sym_let] = ACTIONS(864), - [anon_sym_const] = ACTIONS(864), - [anon_sym_else] = ACTIONS(864), - [anon_sym_if] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(864), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(864), - [anon_sym_in] = ACTIONS(866), - [anon_sym_while] = ACTIONS(864), - [anon_sym_do] = ACTIONS(864), - [anon_sym_try] = ACTIONS(864), - [anon_sym_with] = ACTIONS(864), - [anon_sym_break] = ACTIONS(864), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LTtemplate_GT] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_class] = ACTIONS(864), - [anon_sym_async] = ACTIONS(864), - [anon_sym_function] = ACTIONS(864), - [sym_optional_chain] = ACTIONS(866), - [anon_sym_new] = ACTIONS(864), - [anon_sym_AMP_AMP] = ACTIONS(866), - [anon_sym_PIPE_PIPE] = ACTIONS(866), - [anon_sym_GT_GT] = ACTIONS(866), - [anon_sym_GT_GT_GT] = ACTIONS(866), - [anon_sym_LT_LT] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_CARET] = ACTIONS(866), - [anon_sym_PIPE] = ACTIONS(866), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_PERCENT] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(866), - [anon_sym_LT_EQ] = ACTIONS(866), - [anon_sym_EQ_EQ] = ACTIONS(866), - [anon_sym_EQ_EQ_EQ] = ACTIONS(866), - [anon_sym_BANG_EQ] = ACTIONS(866), - [anon_sym_BANG_EQ_EQ] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(866), - [anon_sym_QMARK_QMARK] = ACTIONS(866), - [anon_sym_instanceof] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(864), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(864), - [sym_number] = ACTIONS(864), - [sym_private_property_identifier] = ACTIONS(864), - [sym_this] = ACTIONS(864), - [sym_super] = ACTIONS(864), - [sym_true] = ACTIONS(864), - [sym_false] = ACTIONS(864), - [sym_null] = ACTIONS(864), - [sym_undefined] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_static] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), - [sym__automatic_semicolon] = ACTIONS(934), - [sym__ternary_qmark] = ACTIONS(872), - [sym_html_comment] = ACTIONS(5), - }, - [156] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1269), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2175), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_spread_element] = STATE(2138), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(156), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(2135), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(800), - [anon_sym_export] = ACTIONS(802), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(936), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(1898), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_pattern_repeat1] = STATE(2154), + [sym_identifier] = ACTIONS(911), + [anon_sym_export] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(885), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(802), + [anon_sym_let] = ACTIONS(913), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_await] = ACTIONS(676), [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_RBRACK] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(889), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(919), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -31652,2856 +32103,2768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(921), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), + [anon_sym_static] = ACTIONS(913), + [anon_sym_get] = ACTIONS(913), + [anon_sym_set] = ACTIONS(913), + [sym_html_comment] = ACTIONS(5), + }, + [156] = { + [sym_comment] = STATE(156), + [sym_identifier] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [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(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [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_SEMI] = ACTIONS(901), + [anon_sym_case] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LTtemplate_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_class] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(901), + [sym_optional_chain] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(901), + [anon_sym_PIPE_PIPE] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_GT_GT_GT] = ACTIONS(901), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_QMARK_QMARK] = ACTIONS(901), + [anon_sym_instanceof] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(901), + [sym_number] = ACTIONS(901), + [sym_private_property_identifier] = ACTIONS(901), + [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(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(901), + [sym__automatic_semicolon] = ACTIONS(923), + [sym__ternary_qmark] = ACTIONS(903), [sym_html_comment] = ACTIONS(5), }, [157] = { [sym_comment] = STATE(157), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_default] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_import] = ACTIONS(939), - [anon_sym_var] = ACTIONS(939), - [anon_sym_let] = ACTIONS(939), - [anon_sym_const] = ACTIONS(939), - [anon_sym_else] = ACTIONS(939), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_await] = ACTIONS(939), - [anon_sym_in] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [anon_sym_do] = ACTIONS(939), - [anon_sym_try] = ACTIONS(939), - [anon_sym_with] = ACTIONS(939), - [anon_sym_break] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [anon_sym_debugger] = ACTIONS(939), - [anon_sym_return] = ACTIONS(939), - [anon_sym_throw] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_case] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_LTtemplate_GT] = ACTIONS(939), - [anon_sym_LT] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(939), - [anon_sym_DOT] = ACTIONS(939), - [anon_sym_class] = ACTIONS(939), - [anon_sym_async] = ACTIONS(939), - [anon_sym_function] = ACTIONS(939), - [sym_optional_chain] = ACTIONS(939), - [anon_sym_new] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_GT_GT_GT] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(939), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(939), - [anon_sym_PERCENT] = ACTIONS(939), - [anon_sym_STAR_STAR] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_QMARK_QMARK] = ACTIONS(939), - [anon_sym_instanceof] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_typeof] = ACTIONS(939), - [anon_sym_void] = ACTIONS(939), - [anon_sym_delete] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(939), + [sym_identifier] = ACTIONS(925), + [anon_sym_export] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_default] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_import] = ACTIONS(925), + [anon_sym_with] = ACTIONS(925), + [anon_sym_var] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_else] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_switch] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_await] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_debugger] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_throw] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_case] = ACTIONS(925), + [anon_sym_yield] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LTtemplate_GT] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_class] = ACTIONS(925), + [anon_sym_async] = ACTIONS(925), + [anon_sym_function] = ACTIONS(925), + [sym_optional_chain] = ACTIONS(925), + [anon_sym_new] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_GT_GT_GT] = ACTIONS(925), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_QMARK_QMARK] = ACTIONS(925), + [anon_sym_instanceof] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_typeof] = ACTIONS(925), + [anon_sym_void] = ACTIONS(925), + [anon_sym_delete] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(939), - [sym_number] = ACTIONS(939), - [sym_private_property_identifier] = ACTIONS(939), - [sym_this] = ACTIONS(939), - [sym_super] = ACTIONS(939), - [sym_true] = ACTIONS(939), - [sym_false] = ACTIONS(939), - [sym_null] = ACTIONS(939), - [sym_undefined] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym_static] = ACTIONS(939), - [anon_sym_get] = ACTIONS(939), - [anon_sym_set] = ACTIONS(939), - [sym__automatic_semicolon] = ACTIONS(941), - [sym__ternary_qmark] = ACTIONS(941), + [anon_sym_BQUOTE] = ACTIONS(925), + [sym_number] = ACTIONS(925), + [sym_private_property_identifier] = ACTIONS(925), + [sym_this] = ACTIONS(925), + [sym_super] = ACTIONS(925), + [sym_true] = ACTIONS(925), + [sym_false] = ACTIONS(925), + [sym_null] = ACTIONS(925), + [sym_undefined] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(925), + [anon_sym_static] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [sym__automatic_semicolon] = ACTIONS(927), + [sym__ternary_qmark] = ACTIONS(927), [sym_html_comment] = ACTIONS(5), }, [158] = { [sym_comment] = STATE(158), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_default] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [anon_sym_let] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_else] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(874), - [anon_sym_in] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_try] = ACTIONS(874), - [anon_sym_with] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_case] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_LTtemplate_GT] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_DOT] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [sym_optional_chain] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_QMARK_QMARK] = ACTIONS(874), - [anon_sym_instanceof] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_void] = ACTIONS(874), - [anon_sym_delete] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(874), + [sym_identifier] = ACTIONS(929), + [anon_sym_export] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_default] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_import] = ACTIONS(929), + [anon_sym_with] = ACTIONS(929), + [anon_sym_var] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_switch] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_await] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_debugger] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_throw] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_case] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LTtemplate_GT] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_class] = ACTIONS(929), + [anon_sym_async] = ACTIONS(929), + [anon_sym_function] = ACTIONS(929), + [sym_optional_chain] = ACTIONS(929), + [anon_sym_new] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_GT_GT_GT] = ACTIONS(929), + [anon_sym_LT_LT] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_QMARK_QMARK] = ACTIONS(929), + [anon_sym_instanceof] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(929), + [anon_sym_void] = ACTIONS(929), + [anon_sym_delete] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [sym_private_property_identifier] = ACTIONS(874), - [sym_this] = ACTIONS(874), - [sym_super] = ACTIONS(874), - [sym_true] = ACTIONS(874), - [sym_false] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_get] = ACTIONS(874), - [anon_sym_set] = ACTIONS(874), - [sym__automatic_semicolon] = ACTIONS(943), - [sym__ternary_qmark] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(929), + [sym_number] = ACTIONS(929), + [sym_private_property_identifier] = ACTIONS(929), + [sym_this] = ACTIONS(929), + [sym_super] = ACTIONS(929), + [sym_true] = ACTIONS(929), + [sym_false] = ACTIONS(929), + [sym_null] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(929), + [anon_sym_static] = ACTIONS(929), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(929), + [sym__automatic_semicolon] = ACTIONS(931), + [sym__ternary_qmark] = ACTIONS(931), [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2070), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1046), - [sym_subscript_expression] = STATE(1046), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1837), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), [sym_comment] = STATE(159), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [sym_pattern] = STATE(1934), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_pattern_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(945), - [anon_sym_export] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(884), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_RBRACK] = ACTIONS(888), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [sym_identifier] = ACTIONS(933), + [anon_sym_export] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_default] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_import] = ACTIONS(933), + [anon_sym_with] = ACTIONS(933), + [anon_sym_var] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_await] = ACTIONS(933), + [anon_sym_in] = ACTIONS(935), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_try] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_throw] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_case] = ACTIONS(933), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LTtemplate_GT] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_SQUOTE] = ACTIONS(933), + [anon_sym_class] = ACTIONS(933), + [anon_sym_async] = ACTIONS(933), + [anon_sym_function] = ACTIONS(933), + [sym_optional_chain] = ACTIONS(935), + [anon_sym_new] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_GT_GT_GT] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_QMARK_QMARK] = ACTIONS(935), + [anon_sym_instanceof] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_typeof] = ACTIONS(933), + [anon_sym_void] = ACTIONS(933), + [anon_sym_delete] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(947), - [anon_sym_get] = ACTIONS(947), - [anon_sym_set] = ACTIONS(947), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [sym_private_property_identifier] = ACTIONS(933), + [sym_this] = ACTIONS(933), + [sym_super] = ACTIONS(933), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), + [sym_undefined] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), + [anon_sym_static] = ACTIONS(933), + [anon_sym_get] = ACTIONS(933), + [anon_sym_set] = ACTIONS(933), + [sym__automatic_semicolon] = ACTIONS(937), + [sym__ternary_qmark] = ACTIONS(939), [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2107), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1046), - [sym_subscript_expression] = STATE(1046), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1837), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), [sym_comment] = STATE(160), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [sym_pattern] = STATE(1950), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_pattern_repeat1] = STATE(2100), - [sym_identifier] = ACTIONS(945), - [anon_sym_export] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(884), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_RBRACK] = ACTIONS(957), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [sym_identifier] = ACTIONS(941), + [anon_sym_export] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_default] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(941), + [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(941), + [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_SEMI] = ACTIONS(941), + [anon_sym_case] = ACTIONS(941), + [anon_sym_yield] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_LTtemplate_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(941), + [anon_sym_function] = ACTIONS(941), + [sym_optional_chain] = ACTIONS(943), + [anon_sym_new] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_GT_GT_GT] = ACTIONS(943), + [anon_sym_LT_LT] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(943), + [anon_sym_STAR_STAR] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_QMARK_QMARK] = ACTIONS(943), + [anon_sym_instanceof] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_typeof] = ACTIONS(941), + [anon_sym_void] = ACTIONS(941), + [anon_sym_delete] = ACTIONS(941), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(947), - [anon_sym_get] = ACTIONS(947), - [anon_sym_set] = ACTIONS(947), + [anon_sym_BQUOTE] = ACTIONS(941), + [sym_number] = ACTIONS(941), + [sym_private_property_identifier] = ACTIONS(941), + [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(941), + [anon_sym_static] = ACTIONS(941), + [anon_sym_get] = ACTIONS(941), + [anon_sym_set] = ACTIONS(941), + [sym__automatic_semicolon] = ACTIONS(945), + [sym__ternary_qmark] = ACTIONS(947), [sym_html_comment] = ACTIONS(5), }, [161] = { [sym_comment] = STATE(161), - [sym_identifier] = ACTIONS(959), - [anon_sym_export] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_default] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_import] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_switch] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_await] = ACTIONS(959), - [anon_sym_in] = ACTIONS(961), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_with] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_debugger] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_throw] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_case] = ACTIONS(959), - [anon_sym_yield] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LTtemplate_GT] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_class] = ACTIONS(959), - [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(959), - [sym_optional_chain] = ACTIONS(961), - [anon_sym_new] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_GT_GT_GT] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(961), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(961), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_typeof] = ACTIONS(959), - [anon_sym_void] = ACTIONS(959), - [anon_sym_delete] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(959), + [sym_identifier] = ACTIONS(949), + [anon_sym_export] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_default] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_import] = ACTIONS(949), + [anon_sym_with] = ACTIONS(949), + [anon_sym_var] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_await] = ACTIONS(949), + [anon_sym_in] = ACTIONS(951), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_debugger] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_throw] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_case] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LTtemplate_GT] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(949), + [anon_sym_class] = ACTIONS(949), + [anon_sym_async] = ACTIONS(949), + [anon_sym_function] = ACTIONS(949), + [sym_optional_chain] = ACTIONS(951), + [anon_sym_new] = ACTIONS(949), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_GT_GT_GT] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_CARET] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(951), + [anon_sym_instanceof] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_TILDE] = ACTIONS(949), + [anon_sym_typeof] = ACTIONS(949), + [anon_sym_void] = ACTIONS(949), + [anon_sym_delete] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [sym_private_property_identifier] = ACTIONS(959), - [sym_this] = ACTIONS(959), - [sym_super] = ACTIONS(959), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_undefined] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_static] = ACTIONS(959), - [anon_sym_get] = ACTIONS(959), - [anon_sym_set] = ACTIONS(959), - [sym__automatic_semicolon] = ACTIONS(963), - [sym__ternary_qmark] = ACTIONS(965), + [anon_sym_BQUOTE] = ACTIONS(949), + [sym_number] = ACTIONS(949), + [sym_private_property_identifier] = ACTIONS(949), + [sym_this] = ACTIONS(949), + [sym_super] = ACTIONS(949), + [sym_true] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [sym_null] = ACTIONS(949), + [sym_undefined] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(949), + [anon_sym_static] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [sym__automatic_semicolon] = ACTIONS(953), + [sym__ternary_qmark] = ACTIONS(955), [sym_html_comment] = ACTIONS(5), }, [162] = { [sym_comment] = STATE(162), - [sym_identifier] = ACTIONS(967), - [anon_sym_export] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_default] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_import] = ACTIONS(967), - [anon_sym_var] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_switch] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_in] = ACTIONS(969), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_try] = ACTIONS(967), - [anon_sym_with] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_debugger] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_throw] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_case] = ACTIONS(967), - [anon_sym_yield] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LTtemplate_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_class] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_function] = ACTIONS(967), - [sym_optional_chain] = ACTIONS(969), - [anon_sym_new] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_GT_GT_GT] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(969), - [anon_sym_STAR_STAR] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_QMARK_QMARK] = ACTIONS(969), - [anon_sym_instanceof] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_typeof] = ACTIONS(967), - [anon_sym_void] = ACTIONS(967), - [anon_sym_delete] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(967), + [sym_identifier] = ACTIONS(957), + [anon_sym_export] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_default] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_import] = ACTIONS(957), + [anon_sym_with] = ACTIONS(957), + [anon_sym_var] = ACTIONS(957), + [anon_sym_let] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_else] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_switch] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_await] = ACTIONS(957), + [anon_sym_in] = ACTIONS(959), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(957), + [anon_sym_try] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_debugger] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_throw] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_case] = ACTIONS(957), + [anon_sym_yield] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LTtemplate_GT] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(957), + [anon_sym_class] = ACTIONS(957), + [anon_sym_async] = ACTIONS(957), + [anon_sym_function] = ACTIONS(957), + [sym_optional_chain] = ACTIONS(959), + [anon_sym_new] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_GT_GT_GT] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_QMARK_QMARK] = ACTIONS(959), + [anon_sym_instanceof] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_typeof] = ACTIONS(957), + [anon_sym_void] = ACTIONS(957), + [anon_sym_delete] = ACTIONS(957), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [sym_private_property_identifier] = ACTIONS(967), - [sym_this] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_true] = ACTIONS(967), - [sym_false] = ACTIONS(967), - [sym_null] = ACTIONS(967), - [sym_undefined] = ACTIONS(967), - [anon_sym_AT] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_get] = ACTIONS(967), - [anon_sym_set] = ACTIONS(967), - [sym__automatic_semicolon] = ACTIONS(971), - [sym__ternary_qmark] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [sym_private_property_identifier] = ACTIONS(957), + [sym_this] = ACTIONS(957), + [sym_super] = ACTIONS(957), + [sym_true] = ACTIONS(957), + [sym_false] = ACTIONS(957), + [sym_null] = ACTIONS(957), + [sym_undefined] = ACTIONS(957), + [anon_sym_AT] = ACTIONS(957), + [anon_sym_static] = ACTIONS(957), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(957), + [sym__automatic_semicolon] = ACTIONS(961), + [sym__ternary_qmark] = ACTIONS(963), [sym_html_comment] = ACTIONS(5), }, [163] = { [sym_comment] = STATE(163), - [sym_identifier] = ACTIONS(975), - [anon_sym_export] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(977), - [anon_sym_default] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_import] = ACTIONS(975), - [anon_sym_var] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_switch] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_in] = ACTIONS(977), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_try] = ACTIONS(975), - [anon_sym_with] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_debugger] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_throw] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_case] = ACTIONS(975), - [anon_sym_yield] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LTtemplate_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_class] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(975), - [sym_optional_chain] = ACTIONS(977), - [anon_sym_new] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_GT_GT_GT] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(977), - [anon_sym_STAR_STAR] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_QMARK_QMARK] = ACTIONS(977), - [anon_sym_instanceof] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_typeof] = ACTIONS(975), - [anon_sym_void] = ACTIONS(975), - [anon_sym_delete] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_SQUOTE] = ACTIONS(975), + [sym_identifier] = ACTIONS(965), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_default] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_import] = ACTIONS(965), + [anon_sym_with] = ACTIONS(965), + [anon_sym_var] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_else] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_switch] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_in] = ACTIONS(967), + [anon_sym_while] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_try] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_debugger] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_throw] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_case] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_LTtemplate_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_class] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_function] = ACTIONS(965), + [sym_optional_chain] = ACTIONS(967), + [anon_sym_new] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_GT_GT_GT] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_STAR_STAR] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ_EQ] = ACTIONS(967), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_QMARK_QMARK] = ACTIONS(967), + [anon_sym_instanceof] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(965), + [anon_sym_typeof] = ACTIONS(965), + [anon_sym_void] = ACTIONS(965), + [anon_sym_delete] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(965), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [sym_private_property_identifier] = ACTIONS(975), - [sym_this] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_true] = ACTIONS(975), - [sym_false] = ACTIONS(975), - [sym_null] = ACTIONS(975), - [sym_undefined] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_get] = ACTIONS(975), - [anon_sym_set] = ACTIONS(975), - [sym__automatic_semicolon] = ACTIONS(979), - [sym__ternary_qmark] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(965), + [sym_number] = ACTIONS(965), + [sym_private_property_identifier] = ACTIONS(965), + [sym_this] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [sym_undefined] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [sym__automatic_semicolon] = ACTIONS(969), + [sym__ternary_qmark] = ACTIONS(971), [sym_html_comment] = ACTIONS(5), }, [164] = { [sym_comment] = STATE(164), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(864), - [anon_sym_default] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(864), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_import] = ACTIONS(864), - [anon_sym_var] = ACTIONS(864), - [anon_sym_let] = ACTIONS(864), - [anon_sym_const] = ACTIONS(864), - [anon_sym_else] = ACTIONS(864), - [anon_sym_if] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(864), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(864), - [anon_sym_in] = ACTIONS(864), - [anon_sym_while] = ACTIONS(864), - [anon_sym_do] = ACTIONS(864), - [anon_sym_try] = ACTIONS(864), - [anon_sym_with] = ACTIONS(864), - [anon_sym_break] = ACTIONS(864), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_case] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LTtemplate_GT] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_GT] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(864), - [anon_sym_class] = ACTIONS(864), - [anon_sym_async] = ACTIONS(864), - [anon_sym_function] = ACTIONS(864), - [sym_optional_chain] = ACTIONS(864), - [anon_sym_new] = ACTIONS(864), - [anon_sym_AMP_AMP] = ACTIONS(864), - [anon_sym_PIPE_PIPE] = ACTIONS(864), - [anon_sym_GT_GT] = ACTIONS(864), - [anon_sym_GT_GT_GT] = ACTIONS(864), - [anon_sym_LT_LT] = ACTIONS(864), - [anon_sym_AMP] = ACTIONS(864), - [anon_sym_CARET] = ACTIONS(864), - [anon_sym_PIPE] = ACTIONS(864), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_PERCENT] = ACTIONS(864), - [anon_sym_STAR_STAR] = ACTIONS(864), - [anon_sym_LT_EQ] = ACTIONS(864), - [anon_sym_EQ_EQ] = ACTIONS(864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(864), - [anon_sym_BANG_EQ] = ACTIONS(864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(864), - [anon_sym_GT_EQ] = ACTIONS(864), - [anon_sym_QMARK_QMARK] = ACTIONS(864), - [anon_sym_instanceof] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(864), + [sym_identifier] = ACTIONS(973), + [anon_sym_export] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_default] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_import] = ACTIONS(973), + [anon_sym_with] = ACTIONS(973), + [anon_sym_var] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_await] = ACTIONS(973), + [anon_sym_in] = ACTIONS(975), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_try] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_debugger] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_throw] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_case] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LTtemplate_GT] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_SQUOTE] = ACTIONS(973), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(973), + [sym_optional_chain] = ACTIONS(975), + [anon_sym_new] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_GT_GT_GT] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(975), + [anon_sym_STAR_STAR] = ACTIONS(975), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ_EQ] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_QMARK_QMARK] = ACTIONS(975), + [anon_sym_instanceof] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_TILDE] = ACTIONS(973), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_void] = ACTIONS(973), + [anon_sym_delete] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(864), - [sym_number] = ACTIONS(864), - [sym_private_property_identifier] = ACTIONS(864), - [sym_this] = ACTIONS(864), - [sym_super] = ACTIONS(864), - [sym_true] = ACTIONS(864), - [sym_false] = ACTIONS(864), - [sym_null] = ACTIONS(864), - [sym_undefined] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_static] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), - [sym__automatic_semicolon] = ACTIONS(983), - [sym__ternary_qmark] = ACTIONS(932), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_number] = ACTIONS(973), + [sym_private_property_identifier] = ACTIONS(973), + [sym_this] = ACTIONS(973), + [sym_super] = ACTIONS(973), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), + [sym_undefined] = ACTIONS(973), + [anon_sym_AT] = ACTIONS(973), + [anon_sym_static] = ACTIONS(973), + [anon_sym_get] = ACTIONS(973), + [anon_sym_set] = ACTIONS(973), + [sym__automatic_semicolon] = ACTIONS(977), + [sym__ternary_qmark] = ACTIONS(979), [sym_html_comment] = ACTIONS(5), }, [165] = { [sym_comment] = STATE(165), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_default] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_import] = ACTIONS(864), - [anon_sym_var] = ACTIONS(864), - [anon_sym_let] = ACTIONS(864), - [anon_sym_const] = ACTIONS(864), - [anon_sym_if] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(864), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(864), - [anon_sym_in] = ACTIONS(866), - [anon_sym_while] = ACTIONS(864), - [anon_sym_do] = ACTIONS(864), - [anon_sym_try] = ACTIONS(864), - [anon_sym_with] = ACTIONS(864), - [anon_sym_break] = ACTIONS(864), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_case] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LTtemplate_GT] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_class] = ACTIONS(864), - [anon_sym_async] = ACTIONS(864), - [anon_sym_function] = ACTIONS(864), - [sym_optional_chain] = ACTIONS(866), - [anon_sym_new] = ACTIONS(864), - [anon_sym_AMP_AMP] = ACTIONS(866), - [anon_sym_PIPE_PIPE] = ACTIONS(866), - [anon_sym_GT_GT] = ACTIONS(866), - [anon_sym_GT_GT_GT] = ACTIONS(866), - [anon_sym_LT_LT] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_CARET] = ACTIONS(866), - [anon_sym_PIPE] = ACTIONS(866), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_PERCENT] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(866), - [anon_sym_LT_EQ] = ACTIONS(866), - [anon_sym_EQ_EQ] = ACTIONS(866), - [anon_sym_EQ_EQ_EQ] = ACTIONS(866), - [anon_sym_BANG_EQ] = ACTIONS(866), - [anon_sym_BANG_EQ_EQ] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(866), - [anon_sym_QMARK_QMARK] = ACTIONS(866), - [anon_sym_instanceof] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(864), + [sym_identifier] = ACTIONS(981), + [anon_sym_export] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_default] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_with] = ACTIONS(981), + [anon_sym_var] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_await] = ACTIONS(981), + [anon_sym_in] = ACTIONS(983), + [anon_sym_while] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_try] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_debugger] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_throw] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_case] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_LTtemplate_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_class] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_function] = ACTIONS(981), + [sym_optional_chain] = ACTIONS(983), + [anon_sym_new] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_GT_GT_GT] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ_EQ] = ACTIONS(983), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_QMARK_QMARK] = ACTIONS(983), + [anon_sym_instanceof] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(981), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(864), - [sym_number] = ACTIONS(864), - [sym_private_property_identifier] = ACTIONS(864), - [sym_this] = ACTIONS(864), - [sym_super] = ACTIONS(864), - [sym_true] = ACTIONS(864), - [sym_false] = ACTIONS(864), - [sym_null] = ACTIONS(864), - [sym_undefined] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_static] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_number] = ACTIONS(981), + [sym_private_property_identifier] = ACTIONS(981), + [sym_this] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_get] = ACTIONS(981), + [anon_sym_set] = ACTIONS(981), [sym__automatic_semicolon] = ACTIONS(985), - [sym__ternary_qmark] = ACTIONS(872), + [sym__ternary_qmark] = ACTIONS(987), [sym_html_comment] = ACTIONS(5), }, [166] = { [sym_comment] = STATE(166), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_default] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_import] = ACTIONS(987), - [anon_sym_var] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_else] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_switch] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_await] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_with] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_debugger] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_throw] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_case] = ACTIONS(987), - [anon_sym_yield] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LTtemplate_GT] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(987), - [anon_sym_class] = ACTIONS(987), - [anon_sym_async] = ACTIONS(987), - [anon_sym_function] = ACTIONS(987), - [sym_optional_chain] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_GT_GT] = ACTIONS(987), - [anon_sym_GT_GT_GT] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_PERCENT] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_QMARK_QMARK] = ACTIONS(987), - [anon_sym_instanceof] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_typeof] = ACTIONS(987), - [anon_sym_void] = ACTIONS(987), - [anon_sym_delete] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(987), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_default] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(989), + [anon_sym_with] = ACTIONS(989), + [anon_sym_var] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_else] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_await] = ACTIONS(989), + [anon_sym_in] = ACTIONS(991), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_try] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_debugger] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_throw] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym_case] = ACTIONS(989), + [anon_sym_yield] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(989), + [anon_sym_LTtemplate_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_class] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_function] = ACTIONS(989), + [sym_optional_chain] = ACTIONS(991), + [anon_sym_new] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(991), + [anon_sym_GT_GT_GT] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_STAR_STAR] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ_EQ] = ACTIONS(991), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_QMARK_QMARK] = ACTIONS(991), + [anon_sym_instanceof] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(989), + [anon_sym_typeof] = ACTIONS(989), + [anon_sym_void] = ACTIONS(989), + [anon_sym_delete] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(987), - [sym_number] = ACTIONS(987), - [sym_private_property_identifier] = ACTIONS(987), - [sym_this] = ACTIONS(987), - [sym_super] = ACTIONS(987), - [sym_true] = ACTIONS(987), - [sym_false] = ACTIONS(987), - [sym_null] = ACTIONS(987), - [sym_undefined] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym_static] = ACTIONS(987), - [anon_sym_get] = ACTIONS(987), - [anon_sym_set] = ACTIONS(987), - [sym__automatic_semicolon] = ACTIONS(989), - [sym__ternary_qmark] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [sym_number] = ACTIONS(989), + [sym_private_property_identifier] = ACTIONS(989), + [sym_this] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [sym_undefined] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(989), + [anon_sym_static] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [sym__automatic_semicolon] = ACTIONS(993), + [sym__ternary_qmark] = ACTIONS(995), [sym_html_comment] = ACTIONS(5), }, [167] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2075), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1837), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(167), - [sym_identifier] = ACTIONS(991), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_default] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_import] = ACTIONS(991), - [anon_sym_var] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_else] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_switch] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_in] = ACTIONS(993), - [anon_sym_while] = ACTIONS(991), - [anon_sym_do] = ACTIONS(991), - [anon_sym_try] = ACTIONS(991), - [anon_sym_with] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_debugger] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_throw] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_case] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_LTtemplate_GT] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_class] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_function] = ACTIONS(991), - [sym_optional_chain] = ACTIONS(993), - [anon_sym_new] = ACTIONS(991), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_GT_GT_GT] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_STAR_STAR] = ACTIONS(993), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_QMARK_QMARK] = ACTIONS(993), - [anon_sym_instanceof] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(991), - [anon_sym_void] = ACTIONS(991), - [anon_sym_delete] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(991), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [sym_pattern] = STATE(1987), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_pattern_repeat1] = STATE(2072), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(997), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(891), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(991), - [sym_number] = ACTIONS(991), - [sym_private_property_identifier] = ACTIONS(991), - [sym_this] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_true] = ACTIONS(991), - [sym_false] = ACTIONS(991), - [sym_null] = ACTIONS(991), - [sym_undefined] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym_static] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [sym__automatic_semicolon] = ACTIONS(995), - [sym__ternary_qmark] = ACTIONS(997), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(796), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(895), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), [sym_html_comment] = ACTIONS(5), }, [168] = { [sym_comment] = STATE(168), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_default] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_import] = ACTIONS(987), - [anon_sym_var] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_switch] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_await] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_with] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_debugger] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_throw] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_case] = ACTIONS(987), - [anon_sym_yield] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LTtemplate_GT] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(987), - [anon_sym_class] = ACTIONS(987), - [anon_sym_async] = ACTIONS(987), - [anon_sym_function] = ACTIONS(987), - [sym_optional_chain] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_GT_GT] = ACTIONS(987), - [anon_sym_GT_GT_GT] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_PERCENT] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_QMARK_QMARK] = ACTIONS(987), - [anon_sym_instanceof] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_typeof] = ACTIONS(987), - [anon_sym_void] = ACTIONS(987), - [anon_sym_delete] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(987), + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [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(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [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_SEMI] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LTtemplate_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_class] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(901), + [sym_optional_chain] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(901), + [anon_sym_PIPE_PIPE] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_GT_GT_GT] = ACTIONS(901), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_QMARK_QMARK] = ACTIONS(901), + [anon_sym_instanceof] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(987), - [sym_number] = ACTIONS(987), - [sym_private_property_identifier] = ACTIONS(987), - [sym_this] = ACTIONS(987), - [sym_super] = ACTIONS(987), - [sym_true] = ACTIONS(987), - [sym_false] = ACTIONS(987), - [sym_null] = ACTIONS(987), - [sym_undefined] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym_static] = ACTIONS(987), - [anon_sym_get] = ACTIONS(987), - [anon_sym_set] = ACTIONS(987), - [sym__automatic_semicolon] = ACTIONS(989), - [sym__ternary_qmark] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(901), + [sym_number] = ACTIONS(901), + [sym_private_property_identifier] = ACTIONS(901), + [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(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(901), + [sym__automatic_semicolon] = ACTIONS(903), + [sym__ternary_qmark] = ACTIONS(903), [sym_html_comment] = ACTIONS(5), }, [169] = { [sym_comment] = STATE(169), - [ts_builtin_sym_end] = ACTIONS(999), - [sym_identifier] = ACTIONS(904), - [anon_sym_export] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_import] = ACTIONS(904), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(904), - [anon_sym_const] = ACTIONS(904), - [anon_sym_else] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_await] = ACTIONS(904), - [anon_sym_in] = ACTIONS(906), - [anon_sym_while] = ACTIONS(904), - [anon_sym_do] = ACTIONS(904), - [anon_sym_try] = ACTIONS(904), - [anon_sym_with] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_debugger] = ACTIONS(904), - [anon_sym_return] = ACTIONS(904), - [anon_sym_throw] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_yield] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_LTtemplate_GT] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(904), - [anon_sym_function] = ACTIONS(904), - [sym_optional_chain] = ACTIONS(906), - [anon_sym_new] = ACTIONS(904), - [anon_sym_AMP_AMP] = ACTIONS(906), - [anon_sym_PIPE_PIPE] = ACTIONS(906), - [anon_sym_GT_GT] = ACTIONS(906), - [anon_sym_GT_GT_GT] = ACTIONS(906), - [anon_sym_LT_LT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_EQ_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ_EQ] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(906), - [anon_sym_QMARK_QMARK] = ACTIONS(906), - [anon_sym_instanceof] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_typeof] = ACTIONS(904), - [anon_sym_void] = ACTIONS(904), - [anon_sym_delete] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), + [sym_identifier] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [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_if] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [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_SEMI] = ACTIONS(901), + [anon_sym_case] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LTtemplate_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_class] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(901), + [sym_optional_chain] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(901), + [anon_sym_PIPE_PIPE] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_GT_GT_GT] = ACTIONS(901), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_QMARK_QMARK] = ACTIONS(901), + [anon_sym_instanceof] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(904), - [sym_number] = ACTIONS(904), - [sym_private_property_identifier] = ACTIONS(904), - [sym_this] = ACTIONS(904), - [sym_super] = ACTIONS(904), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [sym_null] = ACTIONS(904), - [sym_undefined] = ACTIONS(904), - [anon_sym_AT] = ACTIONS(904), - [anon_sym_static] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [sym__automatic_semicolon] = ACTIONS(1001), - [sym__ternary_qmark] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(901), + [sym_number] = ACTIONS(901), + [sym_private_property_identifier] = ACTIONS(901), + [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(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(901), + [sym__automatic_semicolon] = ACTIONS(903), + [sym__ternary_qmark] = ACTIONS(903), [sym_html_comment] = ACTIONS(5), }, [170] = { [sym_comment] = STATE(170), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_default] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_import] = ACTIONS(939), - [anon_sym_var] = ACTIONS(939), - [anon_sym_let] = ACTIONS(939), - [anon_sym_const] = ACTIONS(939), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_await] = ACTIONS(939), - [anon_sym_in] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [anon_sym_do] = ACTIONS(939), - [anon_sym_try] = ACTIONS(939), - [anon_sym_with] = ACTIONS(939), - [anon_sym_break] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [anon_sym_debugger] = ACTIONS(939), - [anon_sym_return] = ACTIONS(939), - [anon_sym_throw] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_case] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_LTtemplate_GT] = ACTIONS(939), - [anon_sym_LT] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(939), - [anon_sym_DOT] = ACTIONS(939), - [anon_sym_class] = ACTIONS(939), - [anon_sym_async] = ACTIONS(939), - [anon_sym_function] = ACTIONS(939), - [sym_optional_chain] = ACTIONS(939), - [anon_sym_new] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_GT_GT_GT] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(939), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(939), - [anon_sym_PERCENT] = ACTIONS(939), - [anon_sym_STAR_STAR] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_QMARK_QMARK] = ACTIONS(939), - [anon_sym_instanceof] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_typeof] = ACTIONS(939), - [anon_sym_void] = ACTIONS(939), - [anon_sym_delete] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(939), + [ts_builtin_sym_end] = ACTIONS(999), + [sym_identifier] = ACTIONS(981), + [anon_sym_export] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_with] = ACTIONS(981), + [anon_sym_var] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_await] = ACTIONS(981), + [anon_sym_in] = ACTIONS(983), + [anon_sym_while] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_try] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_debugger] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_throw] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_LTtemplate_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_class] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_function] = ACTIONS(981), + [sym_optional_chain] = ACTIONS(983), + [anon_sym_new] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_GT_GT_GT] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ_EQ] = ACTIONS(983), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_QMARK_QMARK] = ACTIONS(983), + [anon_sym_instanceof] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(981), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(939), - [sym_number] = ACTIONS(939), - [sym_private_property_identifier] = ACTIONS(939), - [sym_this] = ACTIONS(939), - [sym_super] = ACTIONS(939), - [sym_true] = ACTIONS(939), - [sym_false] = ACTIONS(939), - [sym_null] = ACTIONS(939), - [sym_undefined] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym_static] = ACTIONS(939), - [anon_sym_get] = ACTIONS(939), - [anon_sym_set] = ACTIONS(939), - [sym__automatic_semicolon] = ACTIONS(941), - [sym__ternary_qmark] = ACTIONS(941), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_number] = ACTIONS(981), + [sym_private_property_identifier] = ACTIONS(981), + [sym_this] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_get] = ACTIONS(981), + [anon_sym_set] = ACTIONS(981), + [sym__automatic_semicolon] = ACTIONS(1001), + [sym__ternary_qmark] = ACTIONS(987), [sym_html_comment] = ACTIONS(5), }, [171] = { [sym_comment] = STATE(171), - [sym_identifier] = ACTIONS(967), - [anon_sym_export] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_default] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_import] = ACTIONS(967), - [anon_sym_var] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_switch] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_in] = ACTIONS(969), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_try] = ACTIONS(967), - [anon_sym_with] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_debugger] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_throw] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_case] = ACTIONS(967), - [anon_sym_yield] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LTtemplate_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_class] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_function] = ACTIONS(967), - [sym_optional_chain] = ACTIONS(969), - [anon_sym_new] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_GT_GT_GT] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(969), - [anon_sym_STAR_STAR] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_QMARK_QMARK] = ACTIONS(969), - [anon_sym_instanceof] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_typeof] = ACTIONS(967), - [anon_sym_void] = ACTIONS(967), - [anon_sym_delete] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(967), + [ts_builtin_sym_end] = ACTIONS(1003), + [sym_identifier] = ACTIONS(933), + [anon_sym_export] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_import] = ACTIONS(933), + [anon_sym_with] = ACTIONS(933), + [anon_sym_var] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_await] = ACTIONS(933), + [anon_sym_in] = ACTIONS(935), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_try] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_throw] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LTtemplate_GT] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_SQUOTE] = ACTIONS(933), + [anon_sym_class] = ACTIONS(933), + [anon_sym_async] = ACTIONS(933), + [anon_sym_function] = ACTIONS(933), + [sym_optional_chain] = ACTIONS(935), + [anon_sym_new] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_GT_GT_GT] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_QMARK_QMARK] = ACTIONS(935), + [anon_sym_instanceof] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_typeof] = ACTIONS(933), + [anon_sym_void] = ACTIONS(933), + [anon_sym_delete] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [sym_private_property_identifier] = ACTIONS(967), - [sym_this] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_true] = ACTIONS(967), - [sym_false] = ACTIONS(967), - [sym_null] = ACTIONS(967), - [sym_undefined] = ACTIONS(967), - [anon_sym_AT] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_get] = ACTIONS(967), - [anon_sym_set] = ACTIONS(967), - [sym__automatic_semicolon] = ACTIONS(1003), - [sym__ternary_qmark] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [sym_private_property_identifier] = ACTIONS(933), + [sym_this] = ACTIONS(933), + [sym_super] = ACTIONS(933), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), + [sym_undefined] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), + [anon_sym_static] = ACTIONS(933), + [anon_sym_get] = ACTIONS(933), + [anon_sym_set] = ACTIONS(933), + [sym__automatic_semicolon] = ACTIONS(1005), + [sym__ternary_qmark] = ACTIONS(939), [sym_html_comment] = ACTIONS(5), }, [172] = { [sym_comment] = STATE(172), - [sym_identifier] = ACTIONS(975), - [anon_sym_export] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(977), - [anon_sym_default] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_import] = ACTIONS(975), - [anon_sym_var] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_switch] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_in] = ACTIONS(977), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_try] = ACTIONS(975), - [anon_sym_with] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_debugger] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_throw] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_case] = ACTIONS(975), - [anon_sym_yield] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LTtemplate_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_class] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(975), - [sym_optional_chain] = ACTIONS(977), - [anon_sym_new] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_GT_GT_GT] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(977), - [anon_sym_STAR_STAR] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_QMARK_QMARK] = ACTIONS(977), - [anon_sym_instanceof] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_typeof] = ACTIONS(975), - [anon_sym_void] = ACTIONS(975), - [anon_sym_delete] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_SQUOTE] = ACTIONS(975), + [sym_identifier] = ACTIONS(973), + [anon_sym_export] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_default] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_import] = ACTIONS(973), + [anon_sym_with] = ACTIONS(973), + [anon_sym_var] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_await] = ACTIONS(973), + [anon_sym_in] = ACTIONS(975), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_try] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_debugger] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_throw] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_case] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LTtemplate_GT] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_SQUOTE] = ACTIONS(973), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(973), + [sym_optional_chain] = ACTIONS(975), + [anon_sym_new] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_GT_GT_GT] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(975), + [anon_sym_STAR_STAR] = ACTIONS(975), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ_EQ] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_QMARK_QMARK] = ACTIONS(975), + [anon_sym_instanceof] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_TILDE] = ACTIONS(973), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_void] = ACTIONS(973), + [anon_sym_delete] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [sym_private_property_identifier] = ACTIONS(975), - [sym_this] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_true] = ACTIONS(975), - [sym_false] = ACTIONS(975), - [sym_null] = ACTIONS(975), - [sym_undefined] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_get] = ACTIONS(975), - [anon_sym_set] = ACTIONS(975), - [sym__automatic_semicolon] = ACTIONS(1005), - [sym__ternary_qmark] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_number] = ACTIONS(973), + [sym_private_property_identifier] = ACTIONS(973), + [sym_this] = ACTIONS(973), + [sym_super] = ACTIONS(973), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), + [sym_undefined] = ACTIONS(973), + [anon_sym_AT] = ACTIONS(973), + [anon_sym_static] = ACTIONS(973), + [anon_sym_get] = ACTIONS(973), + [anon_sym_set] = ACTIONS(973), + [sym__automatic_semicolon] = ACTIONS(1007), + [sym__ternary_qmark] = ACTIONS(979), [sym_html_comment] = ACTIONS(5), }, [173] = { [sym_comment] = STATE(173), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(864), - [anon_sym_default] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(864), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_import] = ACTIONS(864), - [anon_sym_var] = ACTIONS(864), - [anon_sym_let] = ACTIONS(864), - [anon_sym_const] = ACTIONS(864), - [anon_sym_if] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(864), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(864), - [anon_sym_in] = ACTIONS(864), - [anon_sym_while] = ACTIONS(864), - [anon_sym_do] = ACTIONS(864), - [anon_sym_try] = ACTIONS(864), - [anon_sym_with] = ACTIONS(864), - [anon_sym_break] = ACTIONS(864), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_case] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LTtemplate_GT] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_GT] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(864), - [anon_sym_class] = ACTIONS(864), - [anon_sym_async] = ACTIONS(864), - [anon_sym_function] = ACTIONS(864), - [sym_optional_chain] = ACTIONS(864), - [anon_sym_new] = ACTIONS(864), - [anon_sym_AMP_AMP] = ACTIONS(864), - [anon_sym_PIPE_PIPE] = ACTIONS(864), - [anon_sym_GT_GT] = ACTIONS(864), - [anon_sym_GT_GT_GT] = ACTIONS(864), - [anon_sym_LT_LT] = ACTIONS(864), - [anon_sym_AMP] = ACTIONS(864), - [anon_sym_CARET] = ACTIONS(864), - [anon_sym_PIPE] = ACTIONS(864), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_PERCENT] = ACTIONS(864), - [anon_sym_STAR_STAR] = ACTIONS(864), - [anon_sym_LT_EQ] = ACTIONS(864), - [anon_sym_EQ_EQ] = ACTIONS(864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(864), - [anon_sym_BANG_EQ] = ACTIONS(864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(864), - [anon_sym_GT_EQ] = ACTIONS(864), - [anon_sym_QMARK_QMARK] = ACTIONS(864), - [anon_sym_instanceof] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(864), + [sym_identifier] = ACTIONS(965), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_default] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_import] = ACTIONS(965), + [anon_sym_with] = ACTIONS(965), + [anon_sym_var] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_switch] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_in] = ACTIONS(967), + [anon_sym_while] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_try] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_debugger] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_throw] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_case] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_LTtemplate_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_class] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_function] = ACTIONS(965), + [sym_optional_chain] = ACTIONS(967), + [anon_sym_new] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_GT_GT_GT] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_STAR_STAR] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ_EQ] = ACTIONS(967), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_QMARK_QMARK] = ACTIONS(967), + [anon_sym_instanceof] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(965), + [anon_sym_typeof] = ACTIONS(965), + [anon_sym_void] = ACTIONS(965), + [anon_sym_delete] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(965), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(864), - [sym_number] = ACTIONS(864), - [sym_private_property_identifier] = ACTIONS(864), - [sym_this] = ACTIONS(864), - [sym_super] = ACTIONS(864), - [sym_true] = ACTIONS(864), - [sym_false] = ACTIONS(864), - [sym_null] = ACTIONS(864), - [sym_undefined] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_static] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), - [sym__automatic_semicolon] = ACTIONS(1007), - [sym__ternary_qmark] = ACTIONS(932), + [anon_sym_BQUOTE] = ACTIONS(965), + [sym_number] = ACTIONS(965), + [sym_private_property_identifier] = ACTIONS(965), + [sym_this] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [sym_undefined] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [sym__automatic_semicolon] = ACTIONS(1009), + [sym__ternary_qmark] = ACTIONS(971), [sym_html_comment] = ACTIONS(5), }, [174] = { [sym_comment] = STATE(174), - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(928), - [anon_sym_export] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_import] = ACTIONS(928), - [anon_sym_var] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_await] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_with] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LTtemplate_GT] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_class] = ACTIONS(928), - [anon_sym_async] = ACTIONS(928), - [anon_sym_function] = ACTIONS(928), - [sym_optional_chain] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_typeof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(928), - [anon_sym_delete] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_default] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_import] = ACTIONS(897), + [anon_sym_with] = ACTIONS(897), + [anon_sym_var] = ACTIONS(897), + [anon_sym_let] = ACTIONS(897), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_switch] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_await] = ACTIONS(897), + [anon_sym_in] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_do] = ACTIONS(897), + [anon_sym_try] = ACTIONS(897), + [anon_sym_break] = ACTIONS(897), + [anon_sym_continue] = ACTIONS(897), + [anon_sym_debugger] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_throw] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_case] = ACTIONS(897), + [anon_sym_yield] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_LTtemplate_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_class] = ACTIONS(897), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(897), + [sym_optional_chain] = ACTIONS(897), + [anon_sym_new] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_GT_GT_GT] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_STAR_STAR] = ACTIONS(897), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_QMARK_QMARK] = ACTIONS(897), + [anon_sym_instanceof] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_typeof] = ACTIONS(897), + [anon_sym_void] = ACTIONS(897), + [anon_sym_delete] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(928), - [sym_number] = ACTIONS(928), - [sym_private_property_identifier] = ACTIONS(928), - [sym_this] = ACTIONS(928), - [sym_super] = ACTIONS(928), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_undefined] = ACTIONS(928), - [anon_sym_AT] = ACTIONS(928), - [anon_sym_static] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [sym__automatic_semicolon] = ACTIONS(930), - [sym__ternary_qmark] = ACTIONS(930), + [anon_sym_BQUOTE] = ACTIONS(897), + [sym_number] = ACTIONS(897), + [sym_private_property_identifier] = ACTIONS(897), + [sym_this] = ACTIONS(897), + [sym_super] = ACTIONS(897), + [sym_true] = ACTIONS(897), + [sym_false] = ACTIONS(897), + [sym_null] = ACTIONS(897), + [sym_undefined] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [anon_sym_static] = ACTIONS(897), + [anon_sym_get] = ACTIONS(897), + [anon_sym_set] = ACTIONS(897), + [sym__automatic_semicolon] = ACTIONS(899), + [sym__ternary_qmark] = ACTIONS(899), [sym_html_comment] = ACTIONS(5), }, [175] = { [sym_comment] = STATE(175), - [sym_identifier] = ACTIONS(991), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_default] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_import] = ACTIONS(991), - [anon_sym_var] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_switch] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_in] = ACTIONS(993), - [anon_sym_while] = ACTIONS(991), - [anon_sym_do] = ACTIONS(991), - [anon_sym_try] = ACTIONS(991), - [anon_sym_with] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_debugger] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_throw] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_case] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_LTtemplate_GT] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_class] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_function] = ACTIONS(991), - [sym_optional_chain] = ACTIONS(993), - [anon_sym_new] = ACTIONS(991), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_GT_GT_GT] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_STAR_STAR] = ACTIONS(993), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_QMARK_QMARK] = ACTIONS(993), - [anon_sym_instanceof] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(991), - [anon_sym_void] = ACTIONS(991), - [anon_sym_delete] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(991), + [sym_identifier] = ACTIONS(981), + [anon_sym_export] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_default] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_with] = ACTIONS(981), + [anon_sym_var] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_await] = ACTIONS(981), + [anon_sym_in] = ACTIONS(983), + [anon_sym_while] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_try] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_debugger] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_throw] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_case] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_LTtemplate_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_class] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_function] = ACTIONS(981), + [sym_optional_chain] = ACTIONS(983), + [anon_sym_new] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_GT_GT_GT] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ_EQ] = ACTIONS(983), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_QMARK_QMARK] = ACTIONS(983), + [anon_sym_instanceof] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(981), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(991), - [sym_number] = ACTIONS(991), - [sym_private_property_identifier] = ACTIONS(991), - [sym_this] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_true] = ACTIONS(991), - [sym_false] = ACTIONS(991), - [sym_null] = ACTIONS(991), - [sym_undefined] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym_static] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [sym__automatic_semicolon] = ACTIONS(1009), - [sym__ternary_qmark] = ACTIONS(997), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_number] = ACTIONS(981), + [sym_private_property_identifier] = ACTIONS(981), + [sym_this] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_get] = ACTIONS(981), + [anon_sym_set] = ACTIONS(981), + [sym__automatic_semicolon] = ACTIONS(1011), + [sym__ternary_qmark] = ACTIONS(987), [sym_html_comment] = ACTIONS(5), }, [176] = { [sym_comment] = STATE(176), - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(959), - [anon_sym_export] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_import] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_switch] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_await] = ACTIONS(959), - [anon_sym_in] = ACTIONS(961), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_with] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_debugger] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_throw] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_yield] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LTtemplate_GT] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_class] = ACTIONS(959), - [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(959), - [sym_optional_chain] = ACTIONS(961), - [anon_sym_new] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_GT_GT_GT] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(961), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(961), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_typeof] = ACTIONS(959), - [anon_sym_void] = ACTIONS(959), - [anon_sym_delete] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(959), + [sym_identifier] = ACTIONS(957), + [anon_sym_export] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_default] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_import] = ACTIONS(957), + [anon_sym_with] = ACTIONS(957), + [anon_sym_var] = ACTIONS(957), + [anon_sym_let] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_switch] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_await] = ACTIONS(957), + [anon_sym_in] = ACTIONS(959), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(957), + [anon_sym_try] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_debugger] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_throw] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_case] = ACTIONS(957), + [anon_sym_yield] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LTtemplate_GT] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(957), + [anon_sym_class] = ACTIONS(957), + [anon_sym_async] = ACTIONS(957), + [anon_sym_function] = ACTIONS(957), + [sym_optional_chain] = ACTIONS(959), + [anon_sym_new] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_GT_GT_GT] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_QMARK_QMARK] = ACTIONS(959), + [anon_sym_instanceof] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_typeof] = ACTIONS(957), + [anon_sym_void] = ACTIONS(957), + [anon_sym_delete] = ACTIONS(957), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [sym_private_property_identifier] = ACTIONS(959), - [sym_this] = ACTIONS(959), - [sym_super] = ACTIONS(959), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_undefined] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_static] = ACTIONS(959), - [anon_sym_get] = ACTIONS(959), - [anon_sym_set] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [sym_private_property_identifier] = ACTIONS(957), + [sym_this] = ACTIONS(957), + [sym_super] = ACTIONS(957), + [sym_true] = ACTIONS(957), + [sym_false] = ACTIONS(957), + [sym_null] = ACTIONS(957), + [sym_undefined] = ACTIONS(957), + [anon_sym_AT] = ACTIONS(957), + [anon_sym_static] = ACTIONS(957), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(957), [sym__automatic_semicolon] = ACTIONS(1013), - [sym__ternary_qmark] = ACTIONS(965), + [sym__ternary_qmark] = ACTIONS(963), [sym_html_comment] = ACTIONS(5), }, [177] = { [sym_comment] = STATE(177), - [sym_identifier] = ACTIONS(912), - [anon_sym_export] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_default] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_import] = ACTIONS(912), - [anon_sym_var] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_await] = ACTIONS(912), - [anon_sym_in] = ACTIONS(914), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_try] = ACTIONS(912), - [anon_sym_with] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_debugger] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_throw] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_case] = ACTIONS(912), - [anon_sym_yield] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(912), - [anon_sym_LTtemplate_GT] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_class] = ACTIONS(912), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(912), - [sym_optional_chain] = ACTIONS(914), - [anon_sym_new] = ACTIONS(912), - [anon_sym_AMP_AMP] = ACTIONS(914), - [anon_sym_PIPE_PIPE] = ACTIONS(914), - [anon_sym_GT_GT] = ACTIONS(914), - [anon_sym_GT_GT_GT] = ACTIONS(914), - [anon_sym_LT_LT] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_PERCENT] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_EQ_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_QMARK_QMARK] = ACTIONS(914), - [anon_sym_instanceof] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_typeof] = ACTIONS(912), - [anon_sym_void] = ACTIONS(912), - [anon_sym_delete] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), + [sym_identifier] = ACTIONS(949), + [anon_sym_export] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_default] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_import] = ACTIONS(949), + [anon_sym_with] = ACTIONS(949), + [anon_sym_var] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_await] = ACTIONS(949), + [anon_sym_in] = ACTIONS(951), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_debugger] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_throw] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_case] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LTtemplate_GT] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(949), + [anon_sym_class] = ACTIONS(949), + [anon_sym_async] = ACTIONS(949), + [anon_sym_function] = ACTIONS(949), + [sym_optional_chain] = ACTIONS(951), + [anon_sym_new] = ACTIONS(949), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_GT_GT_GT] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_CARET] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(951), + [anon_sym_instanceof] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_TILDE] = ACTIONS(949), + [anon_sym_typeof] = ACTIONS(949), + [anon_sym_void] = ACTIONS(949), + [anon_sym_delete] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(912), - [sym_number] = ACTIONS(912), - [sym_private_property_identifier] = ACTIONS(912), - [sym_this] = ACTIONS(912), - [sym_super] = ACTIONS(912), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [sym_null] = ACTIONS(912), - [sym_undefined] = ACTIONS(912), - [anon_sym_AT] = ACTIONS(912), - [anon_sym_static] = ACTIONS(912), - [anon_sym_get] = ACTIONS(912), - [anon_sym_set] = ACTIONS(912), + [anon_sym_BQUOTE] = ACTIONS(949), + [sym_number] = ACTIONS(949), + [sym_private_property_identifier] = ACTIONS(949), + [sym_this] = ACTIONS(949), + [sym_super] = ACTIONS(949), + [sym_true] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [sym_null] = ACTIONS(949), + [sym_undefined] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(949), + [anon_sym_static] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), [sym__automatic_semicolon] = ACTIONS(1015), - [sym__ternary_qmark] = ACTIONS(918), + [sym__ternary_qmark] = ACTIONS(955), [sym_html_comment] = ACTIONS(5), }, [178] = { [sym_comment] = STATE(178), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_default] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [anon_sym_let] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(874), - [anon_sym_in] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_try] = ACTIONS(874), - [anon_sym_with] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_case] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_LTtemplate_GT] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_DOT] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [sym_optional_chain] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_QMARK_QMARK] = ACTIONS(874), - [anon_sym_instanceof] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_void] = ACTIONS(874), - [anon_sym_delete] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(874), + [sym_identifier] = ACTIONS(941), + [anon_sym_export] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_default] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(941), + [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_if] = ACTIONS(941), + [anon_sym_switch] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [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_SEMI] = ACTIONS(941), + [anon_sym_case] = ACTIONS(941), + [anon_sym_yield] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_LTtemplate_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(941), + [anon_sym_function] = ACTIONS(941), + [sym_optional_chain] = ACTIONS(943), + [anon_sym_new] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_GT_GT_GT] = ACTIONS(943), + [anon_sym_LT_LT] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(943), + [anon_sym_STAR_STAR] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_QMARK_QMARK] = ACTIONS(943), + [anon_sym_instanceof] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_typeof] = ACTIONS(941), + [anon_sym_void] = ACTIONS(941), + [anon_sym_delete] = ACTIONS(941), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [sym_private_property_identifier] = ACTIONS(874), - [sym_this] = ACTIONS(874), - [sym_super] = ACTIONS(874), - [sym_true] = ACTIONS(874), - [sym_false] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_get] = ACTIONS(874), - [anon_sym_set] = ACTIONS(874), - [sym__automatic_semicolon] = ACTIONS(876), - [sym__ternary_qmark] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(941), + [sym_number] = ACTIONS(941), + [sym_private_property_identifier] = ACTIONS(941), + [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(941), + [anon_sym_static] = ACTIONS(941), + [anon_sym_get] = ACTIONS(941), + [anon_sym_set] = ACTIONS(941), + [sym__automatic_semicolon] = ACTIONS(1017), + [sym__ternary_qmark] = ACTIONS(947), [sym_html_comment] = ACTIONS(5), }, [179] = { [sym_comment] = STATE(179), - [sym_identifier] = ACTIONS(904), - [anon_sym_export] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_default] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_import] = ACTIONS(904), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(904), - [anon_sym_const] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_await] = ACTIONS(904), - [anon_sym_in] = ACTIONS(906), - [anon_sym_while] = ACTIONS(904), - [anon_sym_do] = ACTIONS(904), - [anon_sym_try] = ACTIONS(904), - [anon_sym_with] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_debugger] = ACTIONS(904), - [anon_sym_return] = ACTIONS(904), - [anon_sym_throw] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_case] = ACTIONS(904), - [anon_sym_yield] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_LTtemplate_GT] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(904), - [anon_sym_function] = ACTIONS(904), - [sym_optional_chain] = ACTIONS(906), - [anon_sym_new] = ACTIONS(904), - [anon_sym_AMP_AMP] = ACTIONS(906), - [anon_sym_PIPE_PIPE] = ACTIONS(906), - [anon_sym_GT_GT] = ACTIONS(906), - [anon_sym_GT_GT_GT] = ACTIONS(906), - [anon_sym_LT_LT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_EQ_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ_EQ] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(906), - [anon_sym_QMARK_QMARK] = ACTIONS(906), - [anon_sym_instanceof] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_typeof] = ACTIONS(904), - [anon_sym_void] = ACTIONS(904), - [anon_sym_delete] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_with] = ACTIONS(848), + [anon_sym_var] = ACTIONS(848), + [anon_sym_let] = ACTIONS(848), + [anon_sym_const] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_await] = ACTIONS(848), + [anon_sym_in] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_debugger] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_case] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LTtemplate_GT] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(848), + [anon_sym_new] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(848), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_GT_GT_GT] = ACTIONS(848), + [anon_sym_LT_LT] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_CARET] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_STAR_STAR] = ACTIONS(848), + [anon_sym_LT_EQ] = ACTIONS(848), + [anon_sym_EQ_EQ] = ACTIONS(848), + [anon_sym_EQ_EQ_EQ] = ACTIONS(848), + [anon_sym_BANG_EQ] = ACTIONS(848), + [anon_sym_BANG_EQ_EQ] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(848), + [anon_sym_QMARK_QMARK] = ACTIONS(848), + [anon_sym_instanceof] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_typeof] = ACTIONS(848), + [anon_sym_void] = ACTIONS(848), + [anon_sym_delete] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(904), - [sym_number] = ACTIONS(904), - [sym_private_property_identifier] = ACTIONS(904), - [sym_this] = ACTIONS(904), - [sym_super] = ACTIONS(904), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [sym_null] = ACTIONS(904), - [sym_undefined] = ACTIONS(904), - [anon_sym_AT] = ACTIONS(904), - [anon_sym_static] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [sym__automatic_semicolon] = ACTIONS(1017), - [sym__ternary_qmark] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [sym_private_property_identifier] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_get] = ACTIONS(848), + [anon_sym_set] = ACTIONS(848), + [sym__automatic_semicolon] = ACTIONS(1019), + [sym__ternary_qmark] = ACTIONS(905), [sym_html_comment] = ACTIONS(5), }, [180] = { [sym_comment] = STATE(180), - [sym_identifier] = ACTIONS(896), - [anon_sym_export] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_default] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_COMMA] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_import] = ACTIONS(896), - [anon_sym_var] = ACTIONS(896), - [anon_sym_let] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_await] = ACTIONS(896), - [anon_sym_in] = ACTIONS(898), - [anon_sym_while] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_try] = ACTIONS(896), - [anon_sym_with] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_debugger] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_throw] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_case] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_LTtemplate_GT] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_DOT] = ACTIONS(898), - [anon_sym_class] = ACTIONS(896), - [anon_sym_async] = ACTIONS(896), - [anon_sym_function] = ACTIONS(896), - [sym_optional_chain] = ACTIONS(898), - [anon_sym_new] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(898), - [anon_sym_GT_GT_GT] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(898), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_SLASH] = ACTIONS(896), - [anon_sym_PERCENT] = ACTIONS(898), - [anon_sym_STAR_STAR] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ_EQ] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(898), - [anon_sym_QMARK_QMARK] = ACTIONS(898), - [anon_sym_instanceof] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(896), + [sym_identifier] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [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_if] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [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_SEMI] = ACTIONS(901), + [anon_sym_case] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LTtemplate_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_class] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(901), + [sym_optional_chain] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(901), + [anon_sym_PIPE_PIPE] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_GT_GT_GT] = ACTIONS(901), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_QMARK_QMARK] = ACTIONS(901), + [anon_sym_instanceof] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(896), - [sym_number] = ACTIONS(896), - [sym_private_property_identifier] = ACTIONS(896), - [sym_this] = ACTIONS(896), - [sym_super] = ACTIONS(896), - [sym_true] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [sym_null] = ACTIONS(896), - [sym_undefined] = ACTIONS(896), - [anon_sym_AT] = ACTIONS(896), - [anon_sym_static] = ACTIONS(896), - [anon_sym_get] = ACTIONS(896), - [anon_sym_set] = ACTIONS(896), - [sym__automatic_semicolon] = ACTIONS(1019), - [sym__ternary_qmark] = ACTIONS(902), + [anon_sym_BQUOTE] = ACTIONS(901), + [sym_number] = ACTIONS(901), + [sym_private_property_identifier] = ACTIONS(901), + [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(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(901), + [sym__automatic_semicolon] = ACTIONS(1021), + [sym__ternary_qmark] = ACTIONS(903), [sym_html_comment] = ACTIONS(5), }, [181] = { [sym_comment] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1021), - [sym_identifier] = ACTIONS(967), - [anon_sym_export] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_import] = ACTIONS(967), - [anon_sym_var] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_switch] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_in] = ACTIONS(969), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_try] = ACTIONS(967), - [anon_sym_with] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_debugger] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_throw] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_yield] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LTtemplate_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_class] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_function] = ACTIONS(967), - [sym_optional_chain] = ACTIONS(969), - [anon_sym_new] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_GT_GT_GT] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(969), - [anon_sym_STAR_STAR] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_QMARK_QMARK] = ACTIONS(969), - [anon_sym_instanceof] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_typeof] = ACTIONS(967), - [anon_sym_void] = ACTIONS(967), - [anon_sym_delete] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(967), + [ts_builtin_sym_end] = ACTIONS(899), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_import] = ACTIONS(897), + [anon_sym_with] = ACTIONS(897), + [anon_sym_var] = ACTIONS(897), + [anon_sym_let] = ACTIONS(897), + [anon_sym_const] = ACTIONS(897), + [anon_sym_else] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_switch] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_await] = ACTIONS(897), + [anon_sym_in] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_do] = ACTIONS(897), + [anon_sym_try] = ACTIONS(897), + [anon_sym_break] = ACTIONS(897), + [anon_sym_continue] = ACTIONS(897), + [anon_sym_debugger] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_throw] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_yield] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_LTtemplate_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_class] = ACTIONS(897), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(897), + [sym_optional_chain] = ACTIONS(897), + [anon_sym_new] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_GT_GT_GT] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_STAR_STAR] = ACTIONS(897), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_QMARK_QMARK] = ACTIONS(897), + [anon_sym_instanceof] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_typeof] = ACTIONS(897), + [anon_sym_void] = ACTIONS(897), + [anon_sym_delete] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [sym_private_property_identifier] = ACTIONS(967), - [sym_this] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_true] = ACTIONS(967), - [sym_false] = ACTIONS(967), - [sym_null] = ACTIONS(967), - [sym_undefined] = ACTIONS(967), - [anon_sym_AT] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_get] = ACTIONS(967), - [anon_sym_set] = ACTIONS(967), - [sym__automatic_semicolon] = ACTIONS(1023), - [sym__ternary_qmark] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(897), + [sym_number] = ACTIONS(897), + [sym_private_property_identifier] = ACTIONS(897), + [sym_this] = ACTIONS(897), + [sym_super] = ACTIONS(897), + [sym_true] = ACTIONS(897), + [sym_false] = ACTIONS(897), + [sym_null] = ACTIONS(897), + [sym_undefined] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [anon_sym_static] = ACTIONS(897), + [anon_sym_get] = ACTIONS(897), + [anon_sym_set] = ACTIONS(897), + [sym__automatic_semicolon] = ACTIONS(899), + [sym__ternary_qmark] = ACTIONS(899), [sym_html_comment] = ACTIONS(5), }, [182] = { [sym_comment] = STATE(182), - [ts_builtin_sym_end] = ACTIONS(1025), - [sym_identifier] = ACTIONS(920), - [anon_sym_export] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_var] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_await] = ACTIONS(920), - [anon_sym_in] = ACTIONS(922), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_with] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_debugger] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_throw] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_yield] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_LTtemplate_GT] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(922), - [anon_sym_class] = ACTIONS(920), - [anon_sym_async] = ACTIONS(920), - [anon_sym_function] = ACTIONS(920), - [sym_optional_chain] = ACTIONS(922), - [anon_sym_new] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(922), - [anon_sym_PIPE_PIPE] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(922), - [anon_sym_GT_GT_GT] = ACTIONS(922), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_EQ_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_QMARK_QMARK] = ACTIONS(922), - [anon_sym_instanceof] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_typeof] = ACTIONS(920), - [anon_sym_void] = ACTIONS(920), - [anon_sym_delete] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), + [ts_builtin_sym_end] = ACTIONS(1023), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(989), + [anon_sym_with] = ACTIONS(989), + [anon_sym_var] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_else] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_await] = ACTIONS(989), + [anon_sym_in] = ACTIONS(991), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_try] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_debugger] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_throw] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym_yield] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(989), + [anon_sym_LTtemplate_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_class] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_function] = ACTIONS(989), + [sym_optional_chain] = ACTIONS(991), + [anon_sym_new] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(991), + [anon_sym_GT_GT_GT] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_STAR_STAR] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ_EQ] = ACTIONS(991), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_QMARK_QMARK] = ACTIONS(991), + [anon_sym_instanceof] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(989), + [anon_sym_typeof] = ACTIONS(989), + [anon_sym_void] = ACTIONS(989), + [anon_sym_delete] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(920), - [sym_number] = ACTIONS(920), - [sym_private_property_identifier] = ACTIONS(920), - [sym_this] = ACTIONS(920), - [sym_super] = ACTIONS(920), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), - [sym_undefined] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(920), - [anon_sym_static] = ACTIONS(920), - [anon_sym_get] = ACTIONS(920), - [anon_sym_set] = ACTIONS(920), - [sym__automatic_semicolon] = ACTIONS(1027), - [sym__ternary_qmark] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(989), + [sym_number] = ACTIONS(989), + [sym_private_property_identifier] = ACTIONS(989), + [sym_this] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [sym_undefined] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(989), + [anon_sym_static] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [sym__automatic_semicolon] = ACTIONS(1025), + [sym__ternary_qmark] = ACTIONS(995), [sym_html_comment] = ACTIONS(5), }, [183] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1290), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2077), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2730), + [sym_string] = STATE(1099), [sym_comment] = STATE(183), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_default] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [anon_sym_let] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(874), - [anon_sym_in] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_try] = ACTIONS(874), - [anon_sym_with] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_case] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_LTtemplate_GT] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_DOT] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [sym_optional_chain] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_QMARK_QMARK] = ACTIONS(874), - [anon_sym_instanceof] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_void] = ACTIONS(874), - [anon_sym_delete] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(874), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(2001), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [sym_private_property_identifier] = ACTIONS(874), - [sym_this] = ACTIONS(874), - [sym_super] = ACTIONS(874), - [sym_true] = ACTIONS(874), - [sym_false] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_get] = ACTIONS(874), - [anon_sym_set] = ACTIONS(874), - [sym__automatic_semicolon] = ACTIONS(1029), - [sym__ternary_qmark] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(706), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(802), + [anon_sym_get] = ACTIONS(802), + [anon_sym_set] = ACTIONS(802), [sym_html_comment] = ACTIONS(5), }, [184] = { [sym_comment] = STATE(184), - [ts_builtin_sym_end] = ACTIONS(1031), - [sym_identifier] = ACTIONS(975), - [anon_sym_export] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_import] = ACTIONS(975), - [anon_sym_var] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_switch] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_in] = ACTIONS(977), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_try] = ACTIONS(975), - [anon_sym_with] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_debugger] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_throw] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_yield] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LTtemplate_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_class] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(975), - [sym_optional_chain] = ACTIONS(977), - [anon_sym_new] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_GT_GT_GT] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(977), - [anon_sym_STAR_STAR] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_QMARK_QMARK] = ACTIONS(977), - [anon_sym_instanceof] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_typeof] = ACTIONS(975), - [anon_sym_void] = ACTIONS(975), - [anon_sym_delete] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_SQUOTE] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(905), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_with] = ACTIONS(848), + [anon_sym_var] = ACTIONS(848), + [anon_sym_let] = ACTIONS(848), + [anon_sym_const] = ACTIONS(848), + [anon_sym_else] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_await] = ACTIONS(848), + [anon_sym_in] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_debugger] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LTtemplate_GT] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(848), + [anon_sym_new] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(848), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_GT_GT_GT] = ACTIONS(848), + [anon_sym_LT_LT] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_CARET] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_STAR_STAR] = ACTIONS(848), + [anon_sym_LT_EQ] = ACTIONS(848), + [anon_sym_EQ_EQ] = ACTIONS(848), + [anon_sym_EQ_EQ_EQ] = ACTIONS(848), + [anon_sym_BANG_EQ] = ACTIONS(848), + [anon_sym_BANG_EQ_EQ] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(848), + [anon_sym_QMARK_QMARK] = ACTIONS(848), + [anon_sym_instanceof] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_typeof] = ACTIONS(848), + [anon_sym_void] = ACTIONS(848), + [anon_sym_delete] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [sym_private_property_identifier] = ACTIONS(975), - [sym_this] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_true] = ACTIONS(975), - [sym_false] = ACTIONS(975), - [sym_null] = ACTIONS(975), - [sym_undefined] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_get] = ACTIONS(975), - [anon_sym_set] = ACTIONS(975), - [sym__automatic_semicolon] = ACTIONS(1033), - [sym__ternary_qmark] = ACTIONS(981), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [sym_private_property_identifier] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_get] = ACTIONS(848), + [anon_sym_set] = ACTIONS(848), + [sym__automatic_semicolon] = ACTIONS(1029), + [sym__ternary_qmark] = ACTIONS(905), [sym_html_comment] = ACTIONS(5), }, [185] = { [sym_comment] = STATE(185), - [ts_builtin_sym_end] = ACTIONS(1035), - [sym_identifier] = ACTIONS(991), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_import] = ACTIONS(991), - [anon_sym_var] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_else] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_switch] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_in] = ACTIONS(993), - [anon_sym_while] = ACTIONS(991), - [anon_sym_do] = ACTIONS(991), - [anon_sym_try] = ACTIONS(991), - [anon_sym_with] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_debugger] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_throw] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_LTtemplate_GT] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_class] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_function] = ACTIONS(991), - [sym_optional_chain] = ACTIONS(993), - [anon_sym_new] = ACTIONS(991), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_GT_GT_GT] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_STAR_STAR] = ACTIONS(993), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_QMARK_QMARK] = ACTIONS(993), - [anon_sym_instanceof] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(991), - [anon_sym_void] = ACTIONS(991), - [anon_sym_delete] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(991), + [ts_builtin_sym_end] = ACTIONS(905), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_with] = ACTIONS(848), + [anon_sym_var] = ACTIONS(848), + [anon_sym_let] = ACTIONS(848), + [anon_sym_const] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_await] = ACTIONS(848), + [anon_sym_in] = ACTIONS(850), + [anon_sym_while] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_debugger] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LTtemplate_GT] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(850), + [anon_sym_new] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_GT_GT] = ACTIONS(850), + [anon_sym_GT_GT_GT] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(850), + [anon_sym_STAR_STAR] = ACTIONS(850), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(850), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK] = ACTIONS(850), + [anon_sym_instanceof] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_typeof] = ACTIONS(848), + [anon_sym_void] = ACTIONS(848), + [anon_sym_delete] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(991), - [sym_number] = ACTIONS(991), - [sym_private_property_identifier] = ACTIONS(991), - [sym_this] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_true] = ACTIONS(991), - [sym_false] = ACTIONS(991), - [sym_null] = ACTIONS(991), - [sym_undefined] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym_static] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [sym__automatic_semicolon] = ACTIONS(1037), - [sym__ternary_qmark] = ACTIONS(997), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [sym_private_property_identifier] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_get] = ACTIONS(848), + [anon_sym_set] = ACTIONS(848), + [sym__automatic_semicolon] = ACTIONS(1031), + [sym__ternary_qmark] = ACTIONS(856), [sym_html_comment] = ACTIONS(5), }, [186] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1315), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2077), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2820), + [sym_string] = STATE(1099), [sym_comment] = STATE(186), - [sym_identifier] = ACTIONS(920), - [anon_sym_export] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_default] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_var] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_await] = ACTIONS(920), - [anon_sym_in] = ACTIONS(922), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_with] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_debugger] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_throw] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_case] = ACTIONS(920), - [anon_sym_yield] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_LTtemplate_GT] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(922), - [anon_sym_class] = ACTIONS(920), - [anon_sym_async] = ACTIONS(920), - [anon_sym_function] = ACTIONS(920), - [sym_optional_chain] = ACTIONS(922), - [anon_sym_new] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(922), - [anon_sym_PIPE_PIPE] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(922), - [anon_sym_GT_GT_GT] = ACTIONS(922), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_EQ_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_QMARK_QMARK] = ACTIONS(922), - [anon_sym_instanceof] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_typeof] = ACTIONS(920), - [anon_sym_void] = ACTIONS(920), - [anon_sym_delete] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(920), - [sym_number] = ACTIONS(920), - [sym_private_property_identifier] = ACTIONS(920), - [sym_this] = ACTIONS(920), - [sym_super] = ACTIONS(920), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), - [sym_undefined] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(920), - [anon_sym_static] = ACTIONS(920), - [anon_sym_get] = ACTIONS(920), - [anon_sym_set] = ACTIONS(920), - [sym__automatic_semicolon] = ACTIONS(1039), - [sym__ternary_qmark] = ACTIONS(926), - [sym_html_comment] = ACTIONS(5), - }, - [187] = { - [sym_comment] = STATE(187), - [ts_builtin_sym_end] = ACTIONS(1041), - [sym_identifier] = ACTIONS(896), - [anon_sym_export] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_COMMA] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_import] = ACTIONS(896), - [anon_sym_var] = ACTIONS(896), - [anon_sym_let] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_else] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_await] = ACTIONS(896), - [anon_sym_in] = ACTIONS(898), - [anon_sym_while] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_try] = ACTIONS(896), - [anon_sym_with] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_debugger] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_throw] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_LTtemplate_GT] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_DOT] = ACTIONS(898), - [anon_sym_class] = ACTIONS(896), - [anon_sym_async] = ACTIONS(896), - [anon_sym_function] = ACTIONS(896), - [sym_optional_chain] = ACTIONS(898), - [anon_sym_new] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(898), - [anon_sym_GT_GT_GT] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(898), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_SLASH] = ACTIONS(896), - [anon_sym_PERCENT] = ACTIONS(898), - [anon_sym_STAR_STAR] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ_EQ] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(898), - [anon_sym_QMARK_QMARK] = ACTIONS(898), - [anon_sym_instanceof] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(896), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(896), - [sym_number] = ACTIONS(896), - [sym_private_property_identifier] = ACTIONS(896), - [sym_this] = ACTIONS(896), - [sym_super] = ACTIONS(896), - [sym_true] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [sym_null] = ACTIONS(896), - [sym_undefined] = ACTIONS(896), - [anon_sym_AT] = ACTIONS(896), - [anon_sym_static] = ACTIONS(896), - [anon_sym_get] = ACTIONS(896), - [anon_sym_set] = ACTIONS(896), - [sym__automatic_semicolon] = ACTIONS(1043), - [sym__ternary_qmark] = ACTIONS(902), - [sym_html_comment] = ACTIONS(5), - }, - [188] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2063), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2747), - [sym_string] = STATE(1174), - [sym_comment] = STATE(188), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1951), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(2001), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(800), [anon_sym_export] = ACTIONS(802), [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(802), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(1027), [anon_sym_await] = ACTIONS(676), [anon_sym_yield] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -34518,1233 +34881,1411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(802), [sym_html_comment] = ACTIONS(5), }, + [187] = { + [sym_comment] = STATE(187), + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [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(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [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_SEMI] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LTtemplate_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_class] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(901), + [sym_optional_chain] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(901), + [anon_sym_PIPE_PIPE] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_GT_GT_GT] = ACTIONS(901), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_QMARK_QMARK] = ACTIONS(901), + [anon_sym_instanceof] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(901), + [sym_number] = ACTIONS(901), + [sym_private_property_identifier] = ACTIONS(901), + [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(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(901), + [sym__automatic_semicolon] = ACTIONS(1033), + [sym__ternary_qmark] = ACTIONS(903), + [sym_html_comment] = ACTIONS(5), + }, + [188] = { + [sym_comment] = STATE(188), + [sym_identifier] = ACTIONS(933), + [anon_sym_export] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_default] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_import] = ACTIONS(933), + [anon_sym_with] = ACTIONS(933), + [anon_sym_var] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_await] = ACTIONS(933), + [anon_sym_in] = ACTIONS(935), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_try] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_throw] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_case] = ACTIONS(933), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LTtemplate_GT] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_SQUOTE] = ACTIONS(933), + [anon_sym_class] = ACTIONS(933), + [anon_sym_async] = ACTIONS(933), + [anon_sym_function] = ACTIONS(933), + [sym_optional_chain] = ACTIONS(935), + [anon_sym_new] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_GT_GT_GT] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_QMARK_QMARK] = ACTIONS(935), + [anon_sym_instanceof] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_typeof] = ACTIONS(933), + [anon_sym_void] = ACTIONS(933), + [anon_sym_delete] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [sym_private_property_identifier] = ACTIONS(933), + [sym_this] = ACTIONS(933), + [sym_super] = ACTIONS(933), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), + [sym_undefined] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), + [anon_sym_static] = ACTIONS(933), + [anon_sym_get] = ACTIONS(933), + [anon_sym_set] = ACTIONS(933), + [sym__automatic_semicolon] = ACTIONS(1035), + [sym__ternary_qmark] = ACTIONS(939), + [sym_html_comment] = ACTIONS(5), + }, [189] = { [sym_comment] = STATE(189), - [ts_builtin_sym_end] = ACTIONS(932), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(866), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_import] = ACTIONS(864), - [anon_sym_var] = ACTIONS(864), - [anon_sym_let] = ACTIONS(864), - [anon_sym_const] = ACTIONS(864), - [anon_sym_if] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(864), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(864), - [anon_sym_in] = ACTIONS(866), - [anon_sym_while] = ACTIONS(864), - [anon_sym_do] = ACTIONS(864), - [anon_sym_try] = ACTIONS(864), - [anon_sym_with] = ACTIONS(864), - [anon_sym_break] = ACTIONS(864), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LTtemplate_GT] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_DOT] = ACTIONS(866), - [anon_sym_class] = ACTIONS(864), - [anon_sym_async] = ACTIONS(864), - [anon_sym_function] = ACTIONS(864), - [sym_optional_chain] = ACTIONS(866), - [anon_sym_new] = ACTIONS(864), - [anon_sym_AMP_AMP] = ACTIONS(866), - [anon_sym_PIPE_PIPE] = ACTIONS(866), - [anon_sym_GT_GT] = ACTIONS(866), - [anon_sym_GT_GT_GT] = ACTIONS(866), - [anon_sym_LT_LT] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_CARET] = ACTIONS(866), - [anon_sym_PIPE] = ACTIONS(866), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_PERCENT] = ACTIONS(866), - [anon_sym_STAR_STAR] = ACTIONS(866), - [anon_sym_LT_EQ] = ACTIONS(866), - [anon_sym_EQ_EQ] = ACTIONS(866), - [anon_sym_EQ_EQ_EQ] = ACTIONS(866), - [anon_sym_BANG_EQ] = ACTIONS(866), - [anon_sym_BANG_EQ_EQ] = ACTIONS(866), - [anon_sym_GT_EQ] = ACTIONS(866), - [anon_sym_QMARK_QMARK] = ACTIONS(866), - [anon_sym_instanceof] = ACTIONS(866), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(864), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(949), + [anon_sym_export] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_import] = ACTIONS(949), + [anon_sym_with] = ACTIONS(949), + [anon_sym_var] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_await] = ACTIONS(949), + [anon_sym_in] = ACTIONS(951), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_debugger] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_throw] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LTtemplate_GT] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(949), + [anon_sym_class] = ACTIONS(949), + [anon_sym_async] = ACTIONS(949), + [anon_sym_function] = ACTIONS(949), + [sym_optional_chain] = ACTIONS(951), + [anon_sym_new] = ACTIONS(949), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_GT_GT_GT] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_CARET] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(951), + [anon_sym_instanceof] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_TILDE] = ACTIONS(949), + [anon_sym_typeof] = ACTIONS(949), + [anon_sym_void] = ACTIONS(949), + [anon_sym_delete] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(864), - [sym_number] = ACTIONS(864), - [sym_private_property_identifier] = ACTIONS(864), - [sym_this] = ACTIONS(864), - [sym_super] = ACTIONS(864), - [sym_true] = ACTIONS(864), - [sym_false] = ACTIONS(864), - [sym_null] = ACTIONS(864), - [sym_undefined] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_static] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), - [sym__automatic_semicolon] = ACTIONS(1047), - [sym__ternary_qmark] = ACTIONS(872), + [anon_sym_BQUOTE] = ACTIONS(949), + [sym_number] = ACTIONS(949), + [sym_private_property_identifier] = ACTIONS(949), + [sym_this] = ACTIONS(949), + [sym_super] = ACTIONS(949), + [sym_true] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [sym_null] = ACTIONS(949), + [sym_undefined] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(949), + [anon_sym_static] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [sym__automatic_semicolon] = ACTIONS(1039), + [sym__ternary_qmark] = ACTIONS(955), [sym_html_comment] = ACTIONS(5), }, [190] = { [sym_comment] = STATE(190), - [sym_identifier] = ACTIONS(928), - [anon_sym_export] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_import] = ACTIONS(928), - [anon_sym_var] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_await] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_with] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_case] = ACTIONS(928), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LTtemplate_GT] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_class] = ACTIONS(928), - [anon_sym_async] = ACTIONS(928), - [anon_sym_function] = ACTIONS(928), - [sym_optional_chain] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_typeof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(928), - [anon_sym_delete] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), + [ts_builtin_sym_end] = ACTIONS(931), + [sym_identifier] = ACTIONS(929), + [anon_sym_export] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_import] = ACTIONS(929), + [anon_sym_with] = ACTIONS(929), + [anon_sym_var] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_else] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_switch] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_await] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_debugger] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_throw] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LTtemplate_GT] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_class] = ACTIONS(929), + [anon_sym_async] = ACTIONS(929), + [anon_sym_function] = ACTIONS(929), + [sym_optional_chain] = ACTIONS(929), + [anon_sym_new] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_GT_GT_GT] = ACTIONS(929), + [anon_sym_LT_LT] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_QMARK_QMARK] = ACTIONS(929), + [anon_sym_instanceof] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(929), + [anon_sym_void] = ACTIONS(929), + [anon_sym_delete] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(928), - [sym_number] = ACTIONS(928), - [sym_private_property_identifier] = ACTIONS(928), - [sym_this] = ACTIONS(928), - [sym_super] = ACTIONS(928), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_undefined] = ACTIONS(928), - [anon_sym_AT] = ACTIONS(928), - [anon_sym_static] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [sym__automatic_semicolon] = ACTIONS(930), - [sym__ternary_qmark] = ACTIONS(930), + [anon_sym_BQUOTE] = ACTIONS(929), + [sym_number] = ACTIONS(929), + [sym_private_property_identifier] = ACTIONS(929), + [sym_this] = ACTIONS(929), + [sym_super] = ACTIONS(929), + [sym_true] = ACTIONS(929), + [sym_false] = ACTIONS(929), + [sym_null] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(929), + [anon_sym_static] = ACTIONS(929), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(929), + [sym__automatic_semicolon] = ACTIONS(931), + [sym__ternary_qmark] = ACTIONS(931), [sym_html_comment] = ACTIONS(5), }, [191] = { [sym_comment] = STATE(191), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_import] = ACTIONS(939), - [anon_sym_var] = ACTIONS(939), - [anon_sym_let] = ACTIONS(939), - [anon_sym_const] = ACTIONS(939), - [anon_sym_else] = ACTIONS(939), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_await] = ACTIONS(939), - [anon_sym_in] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [anon_sym_do] = ACTIONS(939), - [anon_sym_try] = ACTIONS(939), - [anon_sym_with] = ACTIONS(939), - [anon_sym_break] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [anon_sym_debugger] = ACTIONS(939), - [anon_sym_return] = ACTIONS(939), - [anon_sym_throw] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_LTtemplate_GT] = ACTIONS(939), - [anon_sym_LT] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(939), - [anon_sym_DOT] = ACTIONS(939), - [anon_sym_class] = ACTIONS(939), - [anon_sym_async] = ACTIONS(939), - [anon_sym_function] = ACTIONS(939), - [sym_optional_chain] = ACTIONS(939), - [anon_sym_new] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_GT_GT_GT] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(939), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(939), - [anon_sym_PERCENT] = ACTIONS(939), - [anon_sym_STAR_STAR] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_QMARK_QMARK] = ACTIONS(939), - [anon_sym_instanceof] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_typeof] = ACTIONS(939), - [anon_sym_void] = ACTIONS(939), - [anon_sym_delete] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(939), + [ts_builtin_sym_end] = ACTIONS(1041), + [sym_identifier] = ACTIONS(941), + [anon_sym_export] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(941), + [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(941), + [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_SEMI] = ACTIONS(941), + [anon_sym_yield] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_LTtemplate_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(941), + [anon_sym_function] = ACTIONS(941), + [sym_optional_chain] = ACTIONS(943), + [anon_sym_new] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_GT_GT_GT] = ACTIONS(943), + [anon_sym_LT_LT] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(943), + [anon_sym_STAR_STAR] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_QMARK_QMARK] = ACTIONS(943), + [anon_sym_instanceof] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_typeof] = ACTIONS(941), + [anon_sym_void] = ACTIONS(941), + [anon_sym_delete] = ACTIONS(941), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(939), - [sym_number] = ACTIONS(939), - [sym_private_property_identifier] = ACTIONS(939), - [sym_this] = ACTIONS(939), - [sym_super] = ACTIONS(939), - [sym_true] = ACTIONS(939), - [sym_false] = ACTIONS(939), - [sym_null] = ACTIONS(939), - [sym_undefined] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym_static] = ACTIONS(939), - [anon_sym_get] = ACTIONS(939), - [anon_sym_set] = ACTIONS(939), - [sym__automatic_semicolon] = ACTIONS(941), - [sym__ternary_qmark] = ACTIONS(941), + [anon_sym_BQUOTE] = ACTIONS(941), + [sym_number] = ACTIONS(941), + [sym_private_property_identifier] = ACTIONS(941), + [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(941), + [anon_sym_static] = ACTIONS(941), + [anon_sym_get] = ACTIONS(941), + [anon_sym_set] = ACTIONS(941), + [sym__automatic_semicolon] = ACTIONS(1043), + [sym__ternary_qmark] = ACTIONS(947), [sym_html_comment] = ACTIONS(5), }, [192] = { [sym_comment] = STATE(192), - [sym_identifier] = ACTIONS(959), - [anon_sym_export] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_default] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_import] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_switch] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_await] = ACTIONS(959), - [anon_sym_in] = ACTIONS(961), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_with] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_debugger] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_throw] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_case] = ACTIONS(959), - [anon_sym_yield] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LTtemplate_GT] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_class] = ACTIONS(959), - [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(959), - [sym_optional_chain] = ACTIONS(961), - [anon_sym_new] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_GT_GT_GT] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(961), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(961), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_typeof] = ACTIONS(959), - [anon_sym_void] = ACTIONS(959), - [anon_sym_delete] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(959), + [sym_identifier] = ACTIONS(925), + [anon_sym_export] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_default] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_import] = ACTIONS(925), + [anon_sym_with] = ACTIONS(925), + [anon_sym_var] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_switch] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_await] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_debugger] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_throw] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_case] = ACTIONS(925), + [anon_sym_yield] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LTtemplate_GT] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_class] = ACTIONS(925), + [anon_sym_async] = ACTIONS(925), + [anon_sym_function] = ACTIONS(925), + [sym_optional_chain] = ACTIONS(925), + [anon_sym_new] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_GT_GT_GT] = ACTIONS(925), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_QMARK_QMARK] = ACTIONS(925), + [anon_sym_instanceof] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_typeof] = ACTIONS(925), + [anon_sym_void] = ACTIONS(925), + [anon_sym_delete] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [sym_private_property_identifier] = ACTIONS(959), - [sym_this] = ACTIONS(959), - [sym_super] = ACTIONS(959), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_undefined] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_static] = ACTIONS(959), - [anon_sym_get] = ACTIONS(959), - [anon_sym_set] = ACTIONS(959), - [sym__automatic_semicolon] = ACTIONS(1049), - [sym__ternary_qmark] = ACTIONS(965), + [anon_sym_BQUOTE] = ACTIONS(925), + [sym_number] = ACTIONS(925), + [sym_private_property_identifier] = ACTIONS(925), + [sym_this] = ACTIONS(925), + [sym_super] = ACTIONS(925), + [sym_true] = ACTIONS(925), + [sym_false] = ACTIONS(925), + [sym_null] = ACTIONS(925), + [sym_undefined] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(925), + [anon_sym_static] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [sym__automatic_semicolon] = ACTIONS(927), + [sym__ternary_qmark] = ACTIONS(927), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1316), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2063), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2718), - [sym_string] = STATE(1174), [sym_comment] = STATE(193), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(1951), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(800), - [anon_sym_export] = ACTIONS(802), - [anon_sym_LBRACE] = ACTIONS(756), + [sym_identifier] = ACTIONS(929), + [anon_sym_export] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_default] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_import] = ACTIONS(929), + [anon_sym_with] = ACTIONS(929), + [anon_sym_var] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_switch] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_await] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_debugger] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_throw] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_case] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LTtemplate_GT] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_class] = ACTIONS(929), + [anon_sym_async] = ACTIONS(929), + [anon_sym_function] = ACTIONS(929), + [sym_optional_chain] = ACTIONS(929), + [anon_sym_new] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_GT_GT_GT] = ACTIONS(929), + [anon_sym_LT_LT] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_QMARK_QMARK] = ACTIONS(929), + [anon_sym_instanceof] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(929), + [anon_sym_void] = ACTIONS(929), + [anon_sym_delete] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(929), + [sym_number] = ACTIONS(929), + [sym_private_property_identifier] = ACTIONS(929), + [sym_this] = ACTIONS(929), + [sym_super] = ACTIONS(929), + [sym_true] = ACTIONS(929), + [sym_false] = ACTIONS(929), + [sym_null] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(929), + [anon_sym_static] = ACTIONS(929), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(929), + [sym__automatic_semicolon] = ACTIONS(931), + [sym__ternary_qmark] = ACTIONS(931), + [sym_html_comment] = ACTIONS(5), + }, + [194] = { + [sym_comment] = STATE(194), + [ts_builtin_sym_end] = ACTIONS(927), + [sym_identifier] = ACTIONS(925), + [anon_sym_export] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_import] = ACTIONS(925), + [anon_sym_with] = ACTIONS(925), + [anon_sym_var] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_else] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_switch] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_await] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_debugger] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_throw] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_yield] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LTtemplate_GT] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_class] = ACTIONS(925), + [anon_sym_async] = ACTIONS(925), + [anon_sym_function] = ACTIONS(925), + [sym_optional_chain] = ACTIONS(925), + [anon_sym_new] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_GT_GT_GT] = ACTIONS(925), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_QMARK_QMARK] = ACTIONS(925), + [anon_sym_instanceof] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_typeof] = ACTIONS(925), + [anon_sym_void] = ACTIONS(925), + [anon_sym_delete] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(925), + [sym_number] = ACTIONS(925), + [sym_private_property_identifier] = ACTIONS(925), + [sym_this] = ACTIONS(925), + [sym_super] = ACTIONS(925), + [sym_true] = ACTIONS(925), + [sym_false] = ACTIONS(925), + [sym_null] = ACTIONS(925), + [sym_undefined] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(925), + [anon_sym_static] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [sym__automatic_semicolon] = ACTIONS(927), + [sym__ternary_qmark] = ACTIONS(927), + [sym_html_comment] = ACTIONS(5), + }, + [195] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2606), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1837), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(195), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [sym_pattern] = STATE(2101), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_COMMA] = ACTIONS(1045), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(802), + [anon_sym_let] = ACTIONS(881), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1045), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_RBRACK] = ACTIONS(1045), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(891), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(895), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [sym_html_comment] = ACTIONS(5), - }, - [194] = { - [sym_comment] = STATE(194), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [anon_sym_let] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_else] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(874), - [anon_sym_in] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_try] = ACTIONS(874), - [anon_sym_with] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_LTtemplate_GT] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_DOT] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [sym_optional_chain] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_QMARK_QMARK] = ACTIONS(874), - [anon_sym_instanceof] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_void] = ACTIONS(874), - [anon_sym_delete] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(874), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [sym_private_property_identifier] = ACTIONS(874), - [sym_this] = ACTIONS(874), - [sym_super] = ACTIONS(874), - [sym_true] = ACTIONS(874), - [sym_false] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_get] = ACTIONS(874), - [anon_sym_set] = ACTIONS(874), - [sym__automatic_semicolon] = ACTIONS(876), - [sym__ternary_qmark] = ACTIONS(876), - [sym_html_comment] = ACTIONS(5), - }, - [195] = { - [sym_comment] = STATE(195), - [ts_builtin_sym_end] = ACTIONS(932), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(864), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_import] = ACTIONS(864), - [anon_sym_var] = ACTIONS(864), - [anon_sym_let] = ACTIONS(864), - [anon_sym_const] = ACTIONS(864), - [anon_sym_else] = ACTIONS(864), - [anon_sym_if] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(864), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(864), - [anon_sym_in] = ACTIONS(864), - [anon_sym_while] = ACTIONS(864), - [anon_sym_do] = ACTIONS(864), - [anon_sym_try] = ACTIONS(864), - [anon_sym_with] = ACTIONS(864), - [anon_sym_break] = ACTIONS(864), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LTtemplate_GT] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_GT] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(864), - [anon_sym_class] = ACTIONS(864), - [anon_sym_async] = ACTIONS(864), - [anon_sym_function] = ACTIONS(864), - [sym_optional_chain] = ACTIONS(864), - [anon_sym_new] = ACTIONS(864), - [anon_sym_AMP_AMP] = ACTIONS(864), - [anon_sym_PIPE_PIPE] = ACTIONS(864), - [anon_sym_GT_GT] = ACTIONS(864), - [anon_sym_GT_GT_GT] = ACTIONS(864), - [anon_sym_LT_LT] = ACTIONS(864), - [anon_sym_AMP] = ACTIONS(864), - [anon_sym_CARET] = ACTIONS(864), - [anon_sym_PIPE] = ACTIONS(864), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_PERCENT] = ACTIONS(864), - [anon_sym_STAR_STAR] = ACTIONS(864), - [anon_sym_LT_EQ] = ACTIONS(864), - [anon_sym_EQ_EQ] = ACTIONS(864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(864), - [anon_sym_BANG_EQ] = ACTIONS(864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(864), - [anon_sym_GT_EQ] = ACTIONS(864), - [anon_sym_QMARK_QMARK] = ACTIONS(864), - [anon_sym_instanceof] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(864), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(864), - [sym_number] = ACTIONS(864), - [sym_private_property_identifier] = ACTIONS(864), - [sym_this] = ACTIONS(864), - [sym_super] = ACTIONS(864), - [sym_true] = ACTIONS(864), - [sym_false] = ACTIONS(864), - [sym_null] = ACTIONS(864), - [sym_undefined] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_static] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), - [sym__automatic_semicolon] = ACTIONS(1051), - [sym__ternary_qmark] = ACTIONS(932), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), [sym_html_comment] = ACTIONS(5), }, [196] = { [sym_comment] = STATE(196), - [ts_builtin_sym_end] = ACTIONS(1053), - [sym_identifier] = ACTIONS(912), - [anon_sym_export] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_import] = ACTIONS(912), - [anon_sym_var] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [anon_sym_else] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_await] = ACTIONS(912), - [anon_sym_in] = ACTIONS(914), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_try] = ACTIONS(912), - [anon_sym_with] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_debugger] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_throw] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_yield] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(912), - [anon_sym_LTtemplate_GT] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_class] = ACTIONS(912), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(912), - [sym_optional_chain] = ACTIONS(914), - [anon_sym_new] = ACTIONS(912), - [anon_sym_AMP_AMP] = ACTIONS(914), - [anon_sym_PIPE_PIPE] = ACTIONS(914), - [anon_sym_GT_GT] = ACTIONS(914), - [anon_sym_GT_GT_GT] = ACTIONS(914), - [anon_sym_LT_LT] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_PERCENT] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_EQ_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_QMARK_QMARK] = ACTIONS(914), - [anon_sym_instanceof] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_typeof] = ACTIONS(912), - [anon_sym_void] = ACTIONS(912), - [anon_sym_delete] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(973), + [anon_sym_export] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_import] = ACTIONS(973), + [anon_sym_with] = ACTIONS(973), + [anon_sym_var] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_await] = ACTIONS(973), + [anon_sym_in] = ACTIONS(975), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_try] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_debugger] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_throw] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LTtemplate_GT] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_SQUOTE] = ACTIONS(973), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(973), + [sym_optional_chain] = ACTIONS(975), + [anon_sym_new] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_GT_GT_GT] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(975), + [anon_sym_STAR_STAR] = ACTIONS(975), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ_EQ] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_QMARK_QMARK] = ACTIONS(975), + [anon_sym_instanceof] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_TILDE] = ACTIONS(973), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_void] = ACTIONS(973), + [anon_sym_delete] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(912), - [sym_number] = ACTIONS(912), - [sym_private_property_identifier] = ACTIONS(912), - [sym_this] = ACTIONS(912), - [sym_super] = ACTIONS(912), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [sym_null] = ACTIONS(912), - [sym_undefined] = ACTIONS(912), - [anon_sym_AT] = ACTIONS(912), - [anon_sym_static] = ACTIONS(912), - [anon_sym_get] = ACTIONS(912), - [anon_sym_set] = ACTIONS(912), - [sym__automatic_semicolon] = ACTIONS(1055), - [sym__ternary_qmark] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_number] = ACTIONS(973), + [sym_private_property_identifier] = ACTIONS(973), + [sym_this] = ACTIONS(973), + [sym_super] = ACTIONS(973), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), + [sym_undefined] = ACTIONS(973), + [anon_sym_AT] = ACTIONS(973), + [anon_sym_static] = ACTIONS(973), + [anon_sym_get] = ACTIONS(973), + [anon_sym_set] = ACTIONS(973), + [sym__automatic_semicolon] = ACTIONS(1049), + [sym__ternary_qmark] = ACTIONS(979), [sym_html_comment] = ACTIONS(5), }, [197] = { [sym_comment] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_import] = ACTIONS(987), - [anon_sym_var] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_else] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_switch] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_await] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_with] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_debugger] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_throw] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_yield] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LTtemplate_GT] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(987), - [anon_sym_class] = ACTIONS(987), - [anon_sym_async] = ACTIONS(987), - [anon_sym_function] = ACTIONS(987), - [sym_optional_chain] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_GT_GT] = ACTIONS(987), - [anon_sym_GT_GT_GT] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_PERCENT] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_QMARK_QMARK] = ACTIONS(987), - [anon_sym_instanceof] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_typeof] = ACTIONS(987), - [anon_sym_void] = ACTIONS(987), - [anon_sym_delete] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(987), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_default] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(989), + [anon_sym_with] = ACTIONS(989), + [anon_sym_var] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_await] = ACTIONS(989), + [anon_sym_in] = ACTIONS(991), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_try] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_debugger] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_throw] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym_case] = ACTIONS(989), + [anon_sym_yield] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(989), + [anon_sym_LTtemplate_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_class] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_function] = ACTIONS(989), + [sym_optional_chain] = ACTIONS(991), + [anon_sym_new] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(991), + [anon_sym_GT_GT_GT] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_STAR_STAR] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ_EQ] = ACTIONS(991), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_QMARK_QMARK] = ACTIONS(991), + [anon_sym_instanceof] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(989), + [anon_sym_typeof] = ACTIONS(989), + [anon_sym_void] = ACTIONS(989), + [anon_sym_delete] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(987), - [sym_number] = ACTIONS(987), - [sym_private_property_identifier] = ACTIONS(987), - [sym_this] = ACTIONS(987), - [sym_super] = ACTIONS(987), - [sym_true] = ACTIONS(987), - [sym_false] = ACTIONS(987), - [sym_null] = ACTIONS(987), - [sym_undefined] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym_static] = ACTIONS(987), - [anon_sym_get] = ACTIONS(987), - [anon_sym_set] = ACTIONS(987), - [sym__automatic_semicolon] = ACTIONS(989), - [sym__ternary_qmark] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(989), + [sym_number] = ACTIONS(989), + [sym_private_property_identifier] = ACTIONS(989), + [sym_this] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [sym_undefined] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(989), + [anon_sym_static] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [sym__automatic_semicolon] = ACTIONS(1051), + [sym__ternary_qmark] = ACTIONS(995), [sym_html_comment] = ACTIONS(5), }, [198] = { [sym_comment] = STATE(198), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [anon_sym_let] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_else] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(874), - [anon_sym_in] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_try] = ACTIONS(874), - [anon_sym_with] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_LTtemplate_GT] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_DOT] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [sym_optional_chain] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_QMARK_QMARK] = ACTIONS(874), - [anon_sym_instanceof] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_void] = ACTIONS(874), - [anon_sym_delete] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(1053), + [sym_identifier] = ACTIONS(965), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_import] = ACTIONS(965), + [anon_sym_with] = ACTIONS(965), + [anon_sym_var] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_else] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_switch] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_in] = ACTIONS(967), + [anon_sym_while] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_try] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_debugger] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_throw] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_LTtemplate_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_class] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_function] = ACTIONS(965), + [sym_optional_chain] = ACTIONS(967), + [anon_sym_new] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_GT_GT_GT] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_STAR_STAR] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ_EQ] = ACTIONS(967), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_QMARK_QMARK] = ACTIONS(967), + [anon_sym_instanceof] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(965), + [anon_sym_typeof] = ACTIONS(965), + [anon_sym_void] = ACTIONS(965), + [anon_sym_delete] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(965), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [sym_private_property_identifier] = ACTIONS(874), - [sym_this] = ACTIONS(874), - [sym_super] = ACTIONS(874), - [sym_true] = ACTIONS(874), - [sym_false] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_get] = ACTIONS(874), - [anon_sym_set] = ACTIONS(874), - [sym__automatic_semicolon] = ACTIONS(1057), - [sym__ternary_qmark] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(965), + [sym_number] = ACTIONS(965), + [sym_private_property_identifier] = ACTIONS(965), + [sym_this] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [sym_undefined] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [sym__automatic_semicolon] = ACTIONS(1055), + [sym__ternary_qmark] = ACTIONS(971), [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2175), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1046), - [sym_subscript_expression] = STATE(1046), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1837), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), [sym_comment] = STATE(199), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [sym_pattern] = STATE(2135), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(945), - [anon_sym_export] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_COMMA] = ACTIONS(1059), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(957), + [anon_sym_export] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_import] = ACTIONS(957), + [anon_sym_with] = ACTIONS(957), + [anon_sym_var] = ACTIONS(957), + [anon_sym_let] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_else] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_switch] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_await] = ACTIONS(957), + [anon_sym_in] = ACTIONS(959), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(957), + [anon_sym_try] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_debugger] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_throw] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_yield] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LTtemplate_GT] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(957), + [anon_sym_class] = ACTIONS(957), + [anon_sym_async] = ACTIONS(957), + [anon_sym_function] = ACTIONS(957), + [sym_optional_chain] = ACTIONS(959), + [anon_sym_new] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_GT_GT_GT] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_QMARK_QMARK] = ACTIONS(959), + [anon_sym_instanceof] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_typeof] = ACTIONS(957), + [anon_sym_void] = ACTIONS(957), + [anon_sym_delete] = ACTIONS(957), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [sym_private_property_identifier] = ACTIONS(957), + [sym_this] = ACTIONS(957), + [sym_super] = ACTIONS(957), + [sym_true] = ACTIONS(957), + [sym_false] = ACTIONS(957), + [sym_null] = ACTIONS(957), + [sym_undefined] = ACTIONS(957), + [anon_sym_AT] = ACTIONS(957), + [anon_sym_static] = ACTIONS(957), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(957), + [sym__automatic_semicolon] = ACTIONS(1059), + [sym__ternary_qmark] = ACTIONS(963), + [sym_html_comment] = ACTIONS(5), + }, + [200] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1346), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_spread_element] = STATE(2104), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(200), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(1061), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(947), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_RBRACK] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(1061), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(955), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(947), - [anon_sym_get] = ACTIONS(947), - [anon_sym_set] = ACTIONS(947), - [sym_html_comment] = ACTIONS(5), - }, - [200] = { - [sym_comment] = STATE(200), - [ts_builtin_sym_end] = ACTIONS(1035), - [sym_identifier] = ACTIONS(991), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_import] = ACTIONS(991), - [anon_sym_var] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_switch] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_in] = ACTIONS(993), - [anon_sym_while] = ACTIONS(991), - [anon_sym_do] = ACTIONS(991), - [anon_sym_try] = ACTIONS(991), - [anon_sym_with] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_debugger] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_throw] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_LTtemplate_GT] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_class] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_function] = ACTIONS(991), - [sym_optional_chain] = ACTIONS(993), - [anon_sym_new] = ACTIONS(991), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_GT_GT_GT] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(993), - [anon_sym_STAR_STAR] = ACTIONS(993), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ_EQ] = ACTIONS(993), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_QMARK_QMARK] = ACTIONS(993), - [anon_sym_instanceof] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(991), - [anon_sym_void] = ACTIONS(991), - [anon_sym_delete] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(991), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(991), - [sym_number] = ACTIONS(991), - [sym_private_property_identifier] = ACTIONS(991), - [sym_this] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_true] = ACTIONS(991), - [sym_false] = ACTIONS(991), - [sym_null] = ACTIONS(991), - [sym_undefined] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym_static] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [sym__automatic_semicolon] = ACTIONS(1061), - [sym__ternary_qmark] = ACTIONS(997), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, [201] = { [sym_comment] = STATE(201), - [ts_builtin_sym_end] = ACTIONS(999), - [sym_identifier] = ACTIONS(904), - [anon_sym_export] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_import] = ACTIONS(904), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(904), - [anon_sym_const] = ACTIONS(904), - [anon_sym_if] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(904), - [anon_sym_for] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_await] = ACTIONS(904), - [anon_sym_in] = ACTIONS(906), - [anon_sym_while] = ACTIONS(904), - [anon_sym_do] = ACTIONS(904), - [anon_sym_try] = ACTIONS(904), - [anon_sym_with] = ACTIONS(904), - [anon_sym_break] = ACTIONS(904), - [anon_sym_continue] = ACTIONS(904), - [anon_sym_debugger] = ACTIONS(904), - [anon_sym_return] = ACTIONS(904), - [anon_sym_throw] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_yield] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_LTtemplate_GT] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(904), - [anon_sym_function] = ACTIONS(904), - [sym_optional_chain] = ACTIONS(906), - [anon_sym_new] = ACTIONS(904), - [anon_sym_AMP_AMP] = ACTIONS(906), - [anon_sym_PIPE_PIPE] = ACTIONS(906), - [anon_sym_GT_GT] = ACTIONS(906), - [anon_sym_GT_GT_GT] = ACTIONS(906), - [anon_sym_LT_LT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_EQ_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ_EQ] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(906), - [anon_sym_QMARK_QMARK] = ACTIONS(906), - [anon_sym_instanceof] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_TILDE] = ACTIONS(904), - [anon_sym_typeof] = ACTIONS(904), - [anon_sym_void] = ACTIONS(904), - [anon_sym_delete] = ACTIONS(904), - [anon_sym_PLUS_PLUS] = ACTIONS(904), - [anon_sym_DASH_DASH] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), + [ts_builtin_sym_end] = ACTIONS(905), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_COMMA] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_with] = ACTIONS(848), + [anon_sym_var] = ACTIONS(848), + [anon_sym_let] = ACTIONS(848), + [anon_sym_const] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_await] = ACTIONS(848), + [anon_sym_in] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_debugger] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LTtemplate_GT] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(848), + [anon_sym_DOT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(848), + [anon_sym_new] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(848), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_GT_GT_GT] = ACTIONS(848), + [anon_sym_LT_LT] = ACTIONS(848), + [anon_sym_AMP] = ACTIONS(848), + [anon_sym_CARET] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_STAR_STAR] = ACTIONS(848), + [anon_sym_LT_EQ] = ACTIONS(848), + [anon_sym_EQ_EQ] = ACTIONS(848), + [anon_sym_EQ_EQ_EQ] = ACTIONS(848), + [anon_sym_BANG_EQ] = ACTIONS(848), + [anon_sym_BANG_EQ_EQ] = ACTIONS(848), + [anon_sym_GT_EQ] = ACTIONS(848), + [anon_sym_QMARK_QMARK] = ACTIONS(848), + [anon_sym_instanceof] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_typeof] = ACTIONS(848), + [anon_sym_void] = ACTIONS(848), + [anon_sym_delete] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(904), - [sym_number] = ACTIONS(904), - [sym_private_property_identifier] = ACTIONS(904), - [sym_this] = ACTIONS(904), - [sym_super] = ACTIONS(904), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [sym_null] = ACTIONS(904), - [sym_undefined] = ACTIONS(904), - [anon_sym_AT] = ACTIONS(904), - [anon_sym_static] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [sym__automatic_semicolon] = ACTIONS(1063), - [sym__ternary_qmark] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [sym_private_property_identifier] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_get] = ACTIONS(848), + [anon_sym_set] = ACTIONS(848), + [sym__automatic_semicolon] = ACTIONS(1065), + [sym__ternary_qmark] = ACTIONS(905), [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1333), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_spread_element] = STATE(2080), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1379), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_spread_element] = STATE(2059), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(202), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2079), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2060), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1067), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1069), [anon_sym_await] = ACTIONS(676), [anon_sym_yield] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -35762,165 +36303,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_comment] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(1041), - [sym_identifier] = ACTIONS(896), - [anon_sym_export] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_COMMA] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_import] = ACTIONS(896), - [anon_sym_var] = ACTIONS(896), - [anon_sym_let] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_await] = ACTIONS(896), - [anon_sym_in] = ACTIONS(898), - [anon_sym_while] = ACTIONS(896), - [anon_sym_do] = ACTIONS(896), - [anon_sym_try] = ACTIONS(896), - [anon_sym_with] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_debugger] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_throw] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_LTtemplate_GT] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_DOT] = ACTIONS(898), - [anon_sym_class] = ACTIONS(896), - [anon_sym_async] = ACTIONS(896), - [anon_sym_function] = ACTIONS(896), - [sym_optional_chain] = ACTIONS(898), - [anon_sym_new] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(898), - [anon_sym_GT_GT_GT] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(898), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_SLASH] = ACTIONS(896), - [anon_sym_PERCENT] = ACTIONS(898), - [anon_sym_STAR_STAR] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(898), - [anon_sym_EQ_EQ_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ_EQ] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(898), - [anon_sym_QMARK_QMARK] = ACTIONS(898), - [anon_sym_instanceof] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(896), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(896), - [sym_number] = ACTIONS(896), - [sym_private_property_identifier] = ACTIONS(896), - [sym_this] = ACTIONS(896), - [sym_super] = ACTIONS(896), - [sym_true] = ACTIONS(896), - [sym_false] = ACTIONS(896), - [sym_null] = ACTIONS(896), - [sym_undefined] = ACTIONS(896), - [anon_sym_AT] = ACTIONS(896), - [anon_sym_static] = ACTIONS(896), - [anon_sym_get] = ACTIONS(896), - [anon_sym_set] = ACTIONS(896), - [sym__automatic_semicolon] = ACTIONS(1071), - [sym__ternary_qmark] = ACTIONS(902), - [sym_html_comment] = ACTIONS(5), - }, - [204] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), [sym_expression] = STATE(1340), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_spread_element] = STATE(2109), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(204), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2112), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_spread_element] = STATE(2056), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(203), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2057), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1067), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1071), [anon_sym_await] = ACTIONS(676), [anon_sym_yield] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -35937,69 +36390,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, + [204] = { + [sym_comment] = STATE(204), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(949), + [anon_sym_export] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_import] = ACTIONS(949), + [anon_sym_with] = ACTIONS(949), + [anon_sym_var] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_switch] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_await] = ACTIONS(949), + [anon_sym_in] = ACTIONS(951), + [anon_sym_while] = ACTIONS(949), + [anon_sym_do] = ACTIONS(949), + [anon_sym_try] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_debugger] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_throw] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LTtemplate_GT] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(949), + [anon_sym_class] = ACTIONS(949), + [anon_sym_async] = ACTIONS(949), + [anon_sym_function] = ACTIONS(949), + [sym_optional_chain] = ACTIONS(951), + [anon_sym_new] = ACTIONS(949), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_GT_GT_GT] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_CARET] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_QMARK_QMARK] = ACTIONS(951), + [anon_sym_instanceof] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_TILDE] = ACTIONS(949), + [anon_sym_typeof] = ACTIONS(949), + [anon_sym_void] = ACTIONS(949), + [anon_sym_delete] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(949), + [sym_number] = ACTIONS(949), + [sym_private_property_identifier] = ACTIONS(949), + [sym_this] = ACTIONS(949), + [sym_super] = ACTIONS(949), + [sym_true] = ACTIONS(949), + [sym_false] = ACTIONS(949), + [sym_null] = ACTIONS(949), + [sym_undefined] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(949), + [anon_sym_static] = ACTIONS(949), + [anon_sym_get] = ACTIONS(949), + [anon_sym_set] = ACTIONS(949), + [sym__automatic_semicolon] = ACTIONS(1073), + [sym__ternary_qmark] = ACTIONS(955), + [sym_html_comment] = ACTIONS(5), + }, [205] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2316), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1046), - [sym_subscript_expression] = STATE(1046), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1837), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), [sym_comment] = STATE(205), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [sym_pattern] = STATE(2086), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(945), - [anon_sym_export] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), + [ts_builtin_sym_end] = ACTIONS(1041), + [sym_identifier] = ACTIONS(941), + [anon_sym_export] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(941), + [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_if] = ACTIONS(941), + [anon_sym_switch] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [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_SEMI] = ACTIONS(941), + [anon_sym_yield] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_LTtemplate_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(941), + [anon_sym_function] = ACTIONS(941), + [sym_optional_chain] = ACTIONS(943), + [anon_sym_new] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_GT_GT_GT] = ACTIONS(943), + [anon_sym_LT_LT] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(943), + [anon_sym_STAR_STAR] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_QMARK_QMARK] = ACTIONS(943), + [anon_sym_instanceof] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_typeof] = ACTIONS(941), + [anon_sym_void] = ACTIONS(941), + [anon_sym_delete] = ACTIONS(941), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(941), + [sym_number] = ACTIONS(941), + [sym_private_property_identifier] = ACTIONS(941), + [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(941), + [anon_sym_static] = ACTIONS(941), + [anon_sym_get] = ACTIONS(941), + [anon_sym_set] = ACTIONS(941), + [sym__automatic_semicolon] = ACTIONS(1075), + [sym__ternary_qmark] = ACTIONS(947), + [sym_html_comment] = ACTIONS(5), + }, + [206] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2393), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1837), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(206), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [sym_pattern] = STATE(2103), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(883), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(947), + [anon_sym_let] = ACTIONS(881), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1077), [anon_sym_await] = ACTIONS(784), [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(887), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(891), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -36007,8 +36638,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -36018,340 +36647,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(955), + [sym_undefined] = ACTIONS(895), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(947), - [anon_sym_get] = ACTIONS(947), - [anon_sym_set] = ACTIONS(947), - [sym_html_comment] = ACTIONS(5), - }, - [206] = { - [sym_comment] = STATE(206), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(939), - [anon_sym_export] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_import] = ACTIONS(939), - [anon_sym_var] = ACTIONS(939), - [anon_sym_let] = ACTIONS(939), - [anon_sym_const] = ACTIONS(939), - [anon_sym_if] = ACTIONS(939), - [anon_sym_switch] = ACTIONS(939), - [anon_sym_for] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_await] = ACTIONS(939), - [anon_sym_in] = ACTIONS(939), - [anon_sym_while] = ACTIONS(939), - [anon_sym_do] = ACTIONS(939), - [anon_sym_try] = ACTIONS(939), - [anon_sym_with] = ACTIONS(939), - [anon_sym_break] = ACTIONS(939), - [anon_sym_continue] = ACTIONS(939), - [anon_sym_debugger] = ACTIONS(939), - [anon_sym_return] = ACTIONS(939), - [anon_sym_throw] = ACTIONS(939), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_yield] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_LTtemplate_GT] = ACTIONS(939), - [anon_sym_LT] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(939), - [anon_sym_DOT] = ACTIONS(939), - [anon_sym_class] = ACTIONS(939), - [anon_sym_async] = ACTIONS(939), - [anon_sym_function] = ACTIONS(939), - [sym_optional_chain] = ACTIONS(939), - [anon_sym_new] = ACTIONS(939), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_GT_GT] = ACTIONS(939), - [anon_sym_GT_GT_GT] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(939), - [anon_sym_CARET] = ACTIONS(939), - [anon_sym_PIPE] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_SLASH] = ACTIONS(939), - [anon_sym_PERCENT] = ACTIONS(939), - [anon_sym_STAR_STAR] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_EQ_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(939), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_QMARK_QMARK] = ACTIONS(939), - [anon_sym_instanceof] = ACTIONS(939), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_typeof] = ACTIONS(939), - [anon_sym_void] = ACTIONS(939), - [anon_sym_delete] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(939), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(939), - [sym_number] = ACTIONS(939), - [sym_private_property_identifier] = ACTIONS(939), - [sym_this] = ACTIONS(939), - [sym_super] = ACTIONS(939), - [sym_true] = ACTIONS(939), - [sym_false] = ACTIONS(939), - [sym_null] = ACTIONS(939), - [sym_undefined] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym_static] = ACTIONS(939), - [anon_sym_get] = ACTIONS(939), - [anon_sym_set] = ACTIONS(939), - [sym__automatic_semicolon] = ACTIONS(941), - [sym__ternary_qmark] = ACTIONS(941), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), [sym_html_comment] = ACTIONS(5), }, [207] = { [sym_comment] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [anon_sym_let] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(874), - [anon_sym_in] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_try] = ACTIONS(874), - [anon_sym_with] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_LTtemplate_GT] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_DOT] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [sym_optional_chain] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_QMARK_QMARK] = ACTIONS(874), - [anon_sym_instanceof] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_void] = ACTIONS(874), - [anon_sym_delete] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [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_if] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [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_SEMI] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LTtemplate_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_class] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(901), + [sym_optional_chain] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(901), + [anon_sym_PIPE_PIPE] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_GT_GT_GT] = ACTIONS(901), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_QMARK_QMARK] = ACTIONS(901), + [anon_sym_instanceof] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [sym_private_property_identifier] = ACTIONS(874), - [sym_this] = ACTIONS(874), - [sym_super] = ACTIONS(874), - [sym_true] = ACTIONS(874), - [sym_false] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_get] = ACTIONS(874), - [anon_sym_set] = ACTIONS(874), - [sym__automatic_semicolon] = ACTIONS(876), - [sym__ternary_qmark] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(901), + [sym_number] = ACTIONS(901), + [sym_private_property_identifier] = ACTIONS(901), + [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(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(901), + [sym__automatic_semicolon] = ACTIONS(903), + [sym__ternary_qmark] = ACTIONS(903), [sym_html_comment] = ACTIONS(5), }, [208] = { [sym_comment] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(1025), - [sym_identifier] = ACTIONS(920), - [anon_sym_export] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_COMMA] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_var] = ACTIONS(920), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(920), - [anon_sym_if] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_await] = ACTIONS(920), - [anon_sym_in] = ACTIONS(922), - [anon_sym_while] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_with] = ACTIONS(920), - [anon_sym_break] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_debugger] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_throw] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_yield] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_LTtemplate_GT] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(922), - [anon_sym_class] = ACTIONS(920), - [anon_sym_async] = ACTIONS(920), - [anon_sym_function] = ACTIONS(920), - [sym_optional_chain] = ACTIONS(922), - [anon_sym_new] = ACTIONS(920), - [anon_sym_AMP_AMP] = ACTIONS(922), - [anon_sym_PIPE_PIPE] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(922), - [anon_sym_GT_GT_GT] = ACTIONS(922), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(922), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PERCENT] = ACTIONS(922), - [anon_sym_STAR_STAR] = ACTIONS(922), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_EQ_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ_EQ] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_QMARK_QMARK] = ACTIONS(922), - [anon_sym_instanceof] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(920), - [anon_sym_typeof] = ACTIONS(920), - [anon_sym_void] = ACTIONS(920), - [anon_sym_delete] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE] = ACTIONS(920), + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [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_if] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [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_SEMI] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LTtemplate_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_class] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(901), + [sym_optional_chain] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(901), + [anon_sym_PIPE_PIPE] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_GT_GT_GT] = ACTIONS(901), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_QMARK_QMARK] = ACTIONS(901), + [anon_sym_instanceof] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(920), - [sym_number] = ACTIONS(920), - [sym_private_property_identifier] = ACTIONS(920), - [sym_this] = ACTIONS(920), - [sym_super] = ACTIONS(920), - [sym_true] = ACTIONS(920), - [sym_false] = ACTIONS(920), - [sym_null] = ACTIONS(920), - [sym_undefined] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(920), - [anon_sym_static] = ACTIONS(920), - [anon_sym_get] = ACTIONS(920), - [anon_sym_set] = ACTIONS(920), - [sym__automatic_semicolon] = ACTIONS(1077), - [sym__ternary_qmark] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(901), + [sym_number] = ACTIONS(901), + [sym_private_property_identifier] = ACTIONS(901), + [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(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(901), + [sym__automatic_semicolon] = ACTIONS(1079), + [sym__ternary_qmark] = ACTIONS(903), [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2063), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1046), - [sym_subscript_expression] = STATE(1046), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2393), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), [sym__destructuring_pattern] = STATE(1837), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(209), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [sym_pattern] = STATE(1951), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(945), - [anon_sym_export] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [sym_pattern] = STATE(2103), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(883), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(947), + [anon_sym_let] = ACTIONS(881), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(1081), [anon_sym_await] = ACTIONS(784), [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(887), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(891), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -36359,8 +36902,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -36370,261 +36911,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(955), + [sym_undefined] = ACTIONS(895), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(947), - [anon_sym_get] = ACTIONS(947), - [anon_sym_set] = ACTIONS(947), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), [sym_html_comment] = ACTIONS(5), }, [210] = { [sym_comment] = STATE(210), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [anon_sym_let] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(874), - [anon_sym_in] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_try] = ACTIONS(874), - [anon_sym_with] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_LTtemplate_GT] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_DOT] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [sym_optional_chain] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_GT_GT] = ACTIONS(874), - [anon_sym_GT_GT_GT] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_QMARK_QMARK] = ACTIONS(874), - [anon_sym_instanceof] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_void] = ACTIONS(874), - [anon_sym_delete] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(999), + [sym_identifier] = ACTIONS(981), + [anon_sym_export] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_with] = ACTIONS(981), + [anon_sym_var] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_await] = ACTIONS(981), + [anon_sym_in] = ACTIONS(983), + [anon_sym_while] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_try] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_debugger] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_throw] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_LTtemplate_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_class] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_function] = ACTIONS(981), + [sym_optional_chain] = ACTIONS(983), + [anon_sym_new] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_GT_GT_GT] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ_EQ] = ACTIONS(983), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_QMARK_QMARK] = ACTIONS(983), + [anon_sym_instanceof] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(981), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [sym_private_property_identifier] = ACTIONS(874), - [sym_this] = ACTIONS(874), - [sym_super] = ACTIONS(874), - [sym_true] = ACTIONS(874), - [sym_false] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_get] = ACTIONS(874), - [anon_sym_set] = ACTIONS(874), - [sym__automatic_semicolon] = ACTIONS(1079), - [sym__ternary_qmark] = ACTIONS(876), + [anon_sym_BQUOTE] = ACTIONS(981), + [sym_number] = ACTIONS(981), + [sym_private_property_identifier] = ACTIONS(981), + [sym_this] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_get] = ACTIONS(981), + [anon_sym_set] = ACTIONS(981), + [sym__automatic_semicolon] = ACTIONS(1083), + [sym__ternary_qmark] = ACTIONS(987), [sym_html_comment] = ACTIONS(5), }, [211] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1310), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_spread_element] = STATE(2123), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(211), - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(987), - [anon_sym_export] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_import] = ACTIONS(987), - [anon_sym_var] = ACTIONS(987), - [anon_sym_let] = ACTIONS(987), - [anon_sym_const] = ACTIONS(987), - [anon_sym_if] = ACTIONS(987), - [anon_sym_switch] = ACTIONS(987), - [anon_sym_for] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_await] = ACTIONS(987), - [anon_sym_in] = ACTIONS(987), - [anon_sym_while] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_try] = ACTIONS(987), - [anon_sym_with] = ACTIONS(987), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(987), - [anon_sym_debugger] = ACTIONS(987), - [anon_sym_return] = ACTIONS(987), - [anon_sym_throw] = ACTIONS(987), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_yield] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_LTtemplate_GT] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(987), - [anon_sym_class] = ACTIONS(987), - [anon_sym_async] = ACTIONS(987), - [anon_sym_function] = ACTIONS(987), - [sym_optional_chain] = ACTIONS(987), - [anon_sym_new] = ACTIONS(987), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_GT_GT] = ACTIONS(987), - [anon_sym_GT_GT_GT] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(987), - [anon_sym_CARET] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(987), - [anon_sym_DASH] = ACTIONS(987), - [anon_sym_SLASH] = ACTIONS(987), - [anon_sym_PERCENT] = ACTIONS(987), - [anon_sym_STAR_STAR] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ_EQ] = ACTIONS(987), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_QMARK_QMARK] = ACTIONS(987), - [anon_sym_instanceof] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_typeof] = ACTIONS(987), - [anon_sym_void] = ACTIONS(987), - [anon_sym_delete] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(987), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(987), - [sym_number] = ACTIONS(987), - [sym_private_property_identifier] = ACTIONS(987), - [sym_this] = ACTIONS(987), - [sym_super] = ACTIONS(987), - [sym_true] = ACTIONS(987), - [sym_false] = ACTIONS(987), - [sym_null] = ACTIONS(987), - [sym_undefined] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym_static] = ACTIONS(987), - [anon_sym_get] = ACTIONS(987), - [anon_sym_set] = ACTIONS(987), - [sym__automatic_semicolon] = ACTIONS(989), - [sym__ternary_qmark] = ACTIONS(989), - [sym_html_comment] = ACTIONS(5), - }, - [212] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1332), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_spread_element] = STATE(2098), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(212), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2097), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2124), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1067), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1085), [anon_sym_await] = ACTIONS(676), [anon_sym_yield] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -36641,166 +37094,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, + [212] = { + [sym_comment] = STATE(212), + [ts_builtin_sym_end] = ACTIONS(1003), + [sym_identifier] = ACTIONS(933), + [anon_sym_export] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_import] = ACTIONS(933), + [anon_sym_with] = ACTIONS(933), + [anon_sym_var] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_await] = ACTIONS(933), + [anon_sym_in] = ACTIONS(935), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_try] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_throw] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LTtemplate_GT] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(933), + [anon_sym_SQUOTE] = ACTIONS(933), + [anon_sym_class] = ACTIONS(933), + [anon_sym_async] = ACTIONS(933), + [anon_sym_function] = ACTIONS(933), + [sym_optional_chain] = ACTIONS(935), + [anon_sym_new] = ACTIONS(933), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_GT_GT_GT] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_QMARK_QMARK] = ACTIONS(935), + [anon_sym_instanceof] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_typeof] = ACTIONS(933), + [anon_sym_void] = ACTIONS(933), + [anon_sym_delete] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(933), + [sym_number] = ACTIONS(933), + [sym_private_property_identifier] = ACTIONS(933), + [sym_this] = ACTIONS(933), + [sym_super] = ACTIONS(933), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), + [sym_undefined] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), + [anon_sym_static] = ACTIONS(933), + [anon_sym_get] = ACTIONS(933), + [anon_sym_set] = ACTIONS(933), + [sym__automatic_semicolon] = ACTIONS(1087), + [sym__ternary_qmark] = ACTIONS(939), + [sym_html_comment] = ACTIONS(5), + }, [213] = { [sym_comment] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(932), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(864), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_import] = ACTIONS(864), - [anon_sym_var] = ACTIONS(864), - [anon_sym_let] = ACTIONS(864), - [anon_sym_const] = ACTIONS(864), - [anon_sym_if] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(864), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(864), - [anon_sym_in] = ACTIONS(864), - [anon_sym_while] = ACTIONS(864), - [anon_sym_do] = ACTIONS(864), - [anon_sym_try] = ACTIONS(864), - [anon_sym_with] = ACTIONS(864), - [anon_sym_break] = ACTIONS(864), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LTtemplate_GT] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_GT] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(864), - [anon_sym_class] = ACTIONS(864), - [anon_sym_async] = ACTIONS(864), - [anon_sym_function] = ACTIONS(864), - [sym_optional_chain] = ACTIONS(864), - [anon_sym_new] = ACTIONS(864), - [anon_sym_AMP_AMP] = ACTIONS(864), - [anon_sym_PIPE_PIPE] = ACTIONS(864), - [anon_sym_GT_GT] = ACTIONS(864), - [anon_sym_GT_GT_GT] = ACTIONS(864), - [anon_sym_LT_LT] = ACTIONS(864), - [anon_sym_AMP] = ACTIONS(864), - [anon_sym_CARET] = ACTIONS(864), - [anon_sym_PIPE] = ACTIONS(864), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_PERCENT] = ACTIONS(864), - [anon_sym_STAR_STAR] = ACTIONS(864), - [anon_sym_LT_EQ] = ACTIONS(864), - [anon_sym_EQ_EQ] = ACTIONS(864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(864), - [anon_sym_BANG_EQ] = ACTIONS(864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(864), - [anon_sym_GT_EQ] = ACTIONS(864), - [anon_sym_QMARK_QMARK] = ACTIONS(864), - [anon_sym_instanceof] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(864), + [ts_builtin_sym_end] = ACTIONS(1053), + [sym_identifier] = ACTIONS(965), + [anon_sym_export] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_import] = ACTIONS(965), + [anon_sym_with] = ACTIONS(965), + [anon_sym_var] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_switch] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_in] = ACTIONS(967), + [anon_sym_while] = ACTIONS(965), + [anon_sym_do] = ACTIONS(965), + [anon_sym_try] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_debugger] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_throw] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_LTtemplate_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_class] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_function] = ACTIONS(965), + [sym_optional_chain] = ACTIONS(967), + [anon_sym_new] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_GT_GT_GT] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_STAR_STAR] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ_EQ] = ACTIONS(967), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_QMARK_QMARK] = ACTIONS(967), + [anon_sym_instanceof] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(965), + [anon_sym_typeof] = ACTIONS(965), + [anon_sym_void] = ACTIONS(965), + [anon_sym_delete] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(965), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(864), - [sym_number] = ACTIONS(864), - [sym_private_property_identifier] = ACTIONS(864), - [sym_this] = ACTIONS(864), - [sym_super] = ACTIONS(864), - [sym_true] = ACTIONS(864), - [sym_false] = ACTIONS(864), - [sym_null] = ACTIONS(864), - [sym_undefined] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_static] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), - [sym__automatic_semicolon] = ACTIONS(1083), - [sym__ternary_qmark] = ACTIONS(932), + [anon_sym_BQUOTE] = ACTIONS(965), + [sym_number] = ACTIONS(965), + [sym_private_property_identifier] = ACTIONS(965), + [sym_this] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_true] = ACTIONS(965), + [sym_false] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [sym_undefined] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_get] = ACTIONS(965), + [anon_sym_set] = ACTIONS(965), + [sym__automatic_semicolon] = ACTIONS(1089), + [sym__ternary_qmark] = ACTIONS(971), [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1299), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_spread_element] = STATE(2067), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), [sym_comment] = STATE(214), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2066), + [ts_builtin_sym_end] = ACTIONS(899), + [sym_identifier] = ACTIONS(897), + [anon_sym_export] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_import] = ACTIONS(897), + [anon_sym_with] = ACTIONS(897), + [anon_sym_var] = ACTIONS(897), + [anon_sym_let] = ACTIONS(897), + [anon_sym_const] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_switch] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_await] = ACTIONS(897), + [anon_sym_in] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_do] = ACTIONS(897), + [anon_sym_try] = ACTIONS(897), + [anon_sym_break] = ACTIONS(897), + [anon_sym_continue] = ACTIONS(897), + [anon_sym_debugger] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_throw] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_yield] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_LTtemplate_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_class] = ACTIONS(897), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(897), + [sym_optional_chain] = ACTIONS(897), + [anon_sym_new] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_GT_GT_GT] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_STAR_STAR] = ACTIONS(897), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_QMARK_QMARK] = ACTIONS(897), + [anon_sym_instanceof] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_typeof] = ACTIONS(897), + [anon_sym_void] = ACTIONS(897), + [anon_sym_delete] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(897), + [sym_number] = ACTIONS(897), + [sym_private_property_identifier] = ACTIONS(897), + [sym_this] = ACTIONS(897), + [sym_super] = ACTIONS(897), + [sym_true] = ACTIONS(897), + [sym_false] = ACTIONS(897), + [sym_null] = ACTIONS(897), + [sym_undefined] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [anon_sym_static] = ACTIONS(897), + [anon_sym_get] = ACTIONS(897), + [anon_sym_set] = ACTIONS(897), + [sym__automatic_semicolon] = ACTIONS(899), + [sym__ternary_qmark] = ACTIONS(899), + [sym_html_comment] = ACTIONS(5), + }, + [215] = { + [sym_comment] = STATE(215), + [ts_builtin_sym_end] = ACTIONS(1023), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(989), + [anon_sym_with] = ACTIONS(989), + [anon_sym_var] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_await] = ACTIONS(989), + [anon_sym_in] = ACTIONS(991), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_try] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_debugger] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_throw] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym_yield] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(989), + [anon_sym_LTtemplate_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(989), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_class] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_function] = ACTIONS(989), + [sym_optional_chain] = ACTIONS(991), + [anon_sym_new] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(991), + [anon_sym_GT_GT_GT] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_STAR_STAR] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ_EQ] = ACTIONS(991), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_QMARK_QMARK] = ACTIONS(991), + [anon_sym_instanceof] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(989), + [anon_sym_typeof] = ACTIONS(989), + [anon_sym_void] = ACTIONS(989), + [anon_sym_delete] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(989), + [sym_number] = ACTIONS(989), + [sym_private_property_identifier] = ACTIONS(989), + [sym_this] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [sym_undefined] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(989), + [anon_sym_static] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [sym__automatic_semicolon] = ACTIONS(1091), + [sym__ternary_qmark] = ACTIONS(995), + [sym_html_comment] = ACTIONS(5), + }, + [216] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1357), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_spread_element] = STATE(2100), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(216), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2099), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1067), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_RPAREN] = ACTIONS(1093), [anon_sym_await] = ACTIONS(676), [anon_sym_yield] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -36817,342 +37534,518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [215] = { - [sym_comment] = STATE(215), - [ts_builtin_sym_end] = ACTIONS(1021), - [sym_identifier] = ACTIONS(967), - [anon_sym_export] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_import] = ACTIONS(967), - [anon_sym_var] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_switch] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_in] = ACTIONS(969), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_try] = ACTIONS(967), - [anon_sym_with] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_debugger] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_throw] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_yield] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_LTtemplate_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_class] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_function] = ACTIONS(967), - [sym_optional_chain] = ACTIONS(969), - [anon_sym_new] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_GT_GT_GT] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(969), - [anon_sym_STAR_STAR] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_QMARK_QMARK] = ACTIONS(969), - [anon_sym_instanceof] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_typeof] = ACTIONS(967), - [anon_sym_void] = ACTIONS(967), - [anon_sym_delete] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(967), + [217] = { + [sym_comment] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(957), + [anon_sym_export] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_import] = ACTIONS(957), + [anon_sym_with] = ACTIONS(957), + [anon_sym_var] = ACTIONS(957), + [anon_sym_let] = ACTIONS(957), + [anon_sym_const] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_switch] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_await] = ACTIONS(957), + [anon_sym_in] = ACTIONS(959), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(957), + [anon_sym_try] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_debugger] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_throw] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_yield] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_LTtemplate_GT] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(957), + [anon_sym_class] = ACTIONS(957), + [anon_sym_async] = ACTIONS(957), + [anon_sym_function] = ACTIONS(957), + [sym_optional_chain] = ACTIONS(959), + [anon_sym_new] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(959), + [anon_sym_PIPE_PIPE] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_GT_GT_GT] = ACTIONS(959), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_STAR_STAR] = ACTIONS(959), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ_EQ] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_QMARK_QMARK] = ACTIONS(959), + [anon_sym_instanceof] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_typeof] = ACTIONS(957), + [anon_sym_void] = ACTIONS(957), + [anon_sym_delete] = ACTIONS(957), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(967), - [sym_number] = ACTIONS(967), - [sym_private_property_identifier] = ACTIONS(967), - [sym_this] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_true] = ACTIONS(967), - [sym_false] = ACTIONS(967), - [sym_null] = ACTIONS(967), - [sym_undefined] = ACTIONS(967), - [anon_sym_AT] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_get] = ACTIONS(967), - [anon_sym_set] = ACTIONS(967), - [sym__automatic_semicolon] = ACTIONS(1087), - [sym__ternary_qmark] = ACTIONS(973), + [anon_sym_BQUOTE] = ACTIONS(957), + [sym_number] = ACTIONS(957), + [sym_private_property_identifier] = ACTIONS(957), + [sym_this] = ACTIONS(957), + [sym_super] = ACTIONS(957), + [sym_true] = ACTIONS(957), + [sym_false] = ACTIONS(957), + [sym_null] = ACTIONS(957), + [sym_undefined] = ACTIONS(957), + [anon_sym_AT] = ACTIONS(957), + [anon_sym_static] = ACTIONS(957), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(957), + [sym__automatic_semicolon] = ACTIONS(1095), + [sym__ternary_qmark] = ACTIONS(963), [sym_html_comment] = ACTIONS(5), }, - [216] = { - [sym_comment] = STATE(216), - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(959), - [anon_sym_export] = ACTIONS(959), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_import] = ACTIONS(959), - [anon_sym_var] = ACTIONS(959), - [anon_sym_let] = ACTIONS(959), - [anon_sym_const] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_switch] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_await] = ACTIONS(959), - [anon_sym_in] = ACTIONS(961), - [anon_sym_while] = ACTIONS(959), - [anon_sym_do] = ACTIONS(959), - [anon_sym_try] = ACTIONS(959), - [anon_sym_with] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_debugger] = ACTIONS(959), - [anon_sym_return] = ACTIONS(959), - [anon_sym_throw] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_yield] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LTtemplate_GT] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_class] = ACTIONS(959), - [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(959), - [sym_optional_chain] = ACTIONS(961), - [anon_sym_new] = ACTIONS(959), - [anon_sym_AMP_AMP] = ACTIONS(961), - [anon_sym_PIPE_PIPE] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_GT_GT_GT] = ACTIONS(961), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_PERCENT] = ACTIONS(961), - [anon_sym_STAR_STAR] = ACTIONS(961), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ_EQ] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_QMARK_QMARK] = ACTIONS(961), - [anon_sym_instanceof] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_typeof] = ACTIONS(959), - [anon_sym_void] = ACTIONS(959), - [anon_sym_delete] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(959), + [218] = { + [sym_comment] = STATE(218), + [ts_builtin_sym_end] = ACTIONS(931), + [sym_identifier] = ACTIONS(929), + [anon_sym_export] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_import] = ACTIONS(929), + [anon_sym_with] = ACTIONS(929), + [anon_sym_var] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_switch] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_await] = ACTIONS(929), + [anon_sym_in] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(929), + [anon_sym_try] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_debugger] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_throw] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LTtemplate_GT] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_class] = ACTIONS(929), + [anon_sym_async] = ACTIONS(929), + [anon_sym_function] = ACTIONS(929), + [sym_optional_chain] = ACTIONS(929), + [anon_sym_new] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_GT_GT_GT] = ACTIONS(929), + [anon_sym_LT_LT] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_STAR_STAR] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ_EQ] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_QMARK_QMARK] = ACTIONS(929), + [anon_sym_instanceof] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(929), + [anon_sym_void] = ACTIONS(929), + [anon_sym_delete] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [sym_private_property_identifier] = ACTIONS(959), - [sym_this] = ACTIONS(959), - [sym_super] = ACTIONS(959), - [sym_true] = ACTIONS(959), - [sym_false] = ACTIONS(959), - [sym_null] = ACTIONS(959), - [sym_undefined] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_static] = ACTIONS(959), - [anon_sym_get] = ACTIONS(959), - [anon_sym_set] = ACTIONS(959), - [sym__automatic_semicolon] = ACTIONS(1089), - [sym__ternary_qmark] = ACTIONS(965), + [anon_sym_BQUOTE] = ACTIONS(929), + [sym_number] = ACTIONS(929), + [sym_private_property_identifier] = ACTIONS(929), + [sym_this] = ACTIONS(929), + [sym_super] = ACTIONS(929), + [sym_true] = ACTIONS(929), + [sym_false] = ACTIONS(929), + [sym_null] = ACTIONS(929), + [sym_undefined] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(929), + [anon_sym_static] = ACTIONS(929), + [anon_sym_get] = ACTIONS(929), + [anon_sym_set] = ACTIONS(929), + [sym__automatic_semicolon] = ACTIONS(931), + [sym__ternary_qmark] = ACTIONS(931), [sym_html_comment] = ACTIONS(5), }, - [217] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1365), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_spread_element] = STATE(2029), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(217), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [aux_sym_array_repeat1] = STATE(2030), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(1065), + [219] = { + [sym_comment] = STATE(219), + [ts_builtin_sym_end] = ACTIONS(927), + [sym_identifier] = ACTIONS(925), + [anon_sym_export] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_import] = ACTIONS(925), + [anon_sym_with] = ACTIONS(925), + [anon_sym_var] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_switch] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_await] = ACTIONS(925), + [anon_sym_in] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_try] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_debugger] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_throw] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_yield] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_LTtemplate_GT] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_class] = ACTIONS(925), + [anon_sym_async] = ACTIONS(925), + [anon_sym_function] = ACTIONS(925), + [sym_optional_chain] = ACTIONS(925), + [anon_sym_new] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_GT_GT_GT] = ACTIONS(925), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_QMARK_QMARK] = ACTIONS(925), + [anon_sym_instanceof] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_typeof] = ACTIONS(925), + [anon_sym_void] = ACTIONS(925), + [anon_sym_delete] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(925), + [sym_number] = ACTIONS(925), + [sym_private_property_identifier] = ACTIONS(925), + [sym_this] = ACTIONS(925), + [sym_super] = ACTIONS(925), + [sym_true] = ACTIONS(925), + [sym_false] = ACTIONS(925), + [sym_null] = ACTIONS(925), + [sym_undefined] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(925), + [anon_sym_static] = ACTIONS(925), + [anon_sym_get] = ACTIONS(925), + [anon_sym_set] = ACTIONS(925), + [sym__automatic_semicolon] = ACTIONS(927), + [sym__ternary_qmark] = ACTIONS(927), + [sym_html_comment] = ACTIONS(5), + }, + [220] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2077), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1837), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(220), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [sym_pattern] = STATE(2001), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(883), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(881), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1091), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(887), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(891), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(895), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), [sym_html_comment] = ACTIONS(5), }, - [218] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1269), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_spread_element] = STATE(2138), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(218), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [221] = { + [sym_comment] = STATE(221), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(973), + [anon_sym_export] = ACTIONS(973), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_import] = ACTIONS(973), + [anon_sym_with] = ACTIONS(973), + [anon_sym_var] = ACTIONS(973), + [anon_sym_let] = ACTIONS(973), + [anon_sym_const] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_switch] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_await] = ACTIONS(973), + [anon_sym_in] = ACTIONS(975), + [anon_sym_while] = ACTIONS(973), + [anon_sym_do] = ACTIONS(973), + [anon_sym_try] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_debugger] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_throw] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LTtemplate_GT] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(973), + [anon_sym_SQUOTE] = ACTIONS(973), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(973), + [sym_optional_chain] = ACTIONS(975), + [anon_sym_new] = ACTIONS(973), + [anon_sym_AMP_AMP] = ACTIONS(975), + [anon_sym_PIPE_PIPE] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_GT_GT_GT] = ACTIONS(975), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(975), + [anon_sym_STAR_STAR] = ACTIONS(975), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ_EQ] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_QMARK_QMARK] = ACTIONS(975), + [anon_sym_instanceof] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_TILDE] = ACTIONS(973), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_void] = ACTIONS(973), + [anon_sym_delete] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(973), + [sym_number] = ACTIONS(973), + [sym_private_property_identifier] = ACTIONS(973), + [sym_this] = ACTIONS(973), + [sym_super] = ACTIONS(973), + [sym_true] = ACTIONS(973), + [sym_false] = ACTIONS(973), + [sym_null] = ACTIONS(973), + [sym_undefined] = ACTIONS(973), + [anon_sym_AT] = ACTIONS(973), + [anon_sym_static] = ACTIONS(973), + [anon_sym_get] = ACTIONS(973), + [anon_sym_set] = ACTIONS(973), + [sym__automatic_semicolon] = ACTIONS(1097), + [sym__ternary_qmark] = ACTIONS(979), + [sym_html_comment] = ACTIONS(5), + }, + [222] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1303), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_spread_element] = STATE(2037), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(222), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [aux_sym_array_repeat1] = STATE(2036), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(1067), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1099), [anon_sym_await] = ACTIONS(676), [anon_sym_yield] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(1093), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -37169,420 +38062,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [219] = { - [sym_comment] = STATE(219), - [ts_builtin_sym_end] = ACTIONS(1053), - [sym_identifier] = ACTIONS(912), - [anon_sym_export] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_import] = ACTIONS(912), - [anon_sym_var] = ACTIONS(912), - [anon_sym_let] = ACTIONS(912), - [anon_sym_const] = ACTIONS(912), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_await] = ACTIONS(912), - [anon_sym_in] = ACTIONS(914), - [anon_sym_while] = ACTIONS(912), - [anon_sym_do] = ACTIONS(912), - [anon_sym_try] = ACTIONS(912), - [anon_sym_with] = ACTIONS(912), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_debugger] = ACTIONS(912), - [anon_sym_return] = ACTIONS(912), - [anon_sym_throw] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_yield] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(912), - [anon_sym_LTtemplate_GT] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_class] = ACTIONS(912), - [anon_sym_async] = ACTIONS(912), - [anon_sym_function] = ACTIONS(912), - [sym_optional_chain] = ACTIONS(914), - [anon_sym_new] = ACTIONS(912), - [anon_sym_AMP_AMP] = ACTIONS(914), - [anon_sym_PIPE_PIPE] = ACTIONS(914), - [anon_sym_GT_GT] = ACTIONS(914), - [anon_sym_GT_GT_GT] = ACTIONS(914), - [anon_sym_LT_LT] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(914), - [anon_sym_PIPE] = ACTIONS(914), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_SLASH] = ACTIONS(912), - [anon_sym_PERCENT] = ACTIONS(914), - [anon_sym_STAR_STAR] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(914), - [anon_sym_EQ_EQ_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ] = ACTIONS(914), - [anon_sym_BANG_EQ_EQ] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(914), - [anon_sym_QMARK_QMARK] = ACTIONS(914), - [anon_sym_instanceof] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_typeof] = ACTIONS(912), - [anon_sym_void] = ACTIONS(912), - [anon_sym_delete] = ACTIONS(912), - [anon_sym_PLUS_PLUS] = ACTIONS(912), - [anon_sym_DASH_DASH] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [anon_sym_SQUOTE] = ACTIONS(912), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(912), - [sym_number] = ACTIONS(912), - [sym_private_property_identifier] = ACTIONS(912), - [sym_this] = ACTIONS(912), - [sym_super] = ACTIONS(912), - [sym_true] = ACTIONS(912), - [sym_false] = ACTIONS(912), - [sym_null] = ACTIONS(912), - [sym_undefined] = ACTIONS(912), - [anon_sym_AT] = ACTIONS(912), - [anon_sym_static] = ACTIONS(912), - [anon_sym_get] = ACTIONS(912), - [anon_sym_set] = ACTIONS(912), - [sym__automatic_semicolon] = ACTIONS(1095), - [sym__ternary_qmark] = ACTIONS(918), - [sym_html_comment] = ACTIONS(5), - }, - [220] = { - [sym_comment] = STATE(220), - [ts_builtin_sym_end] = ACTIONS(1031), - [sym_identifier] = ACTIONS(975), - [anon_sym_export] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_import] = ACTIONS(975), - [anon_sym_var] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_switch] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_in] = ACTIONS(977), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_try] = ACTIONS(975), - [anon_sym_with] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_debugger] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_throw] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_yield] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LTtemplate_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_class] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_function] = ACTIONS(975), - [sym_optional_chain] = ACTIONS(977), - [anon_sym_new] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_GT_GT_GT] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(977), - [anon_sym_STAR_STAR] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ_EQ] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_QMARK_QMARK] = ACTIONS(977), - [anon_sym_instanceof] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_typeof] = ACTIONS(975), - [anon_sym_void] = ACTIONS(975), - [anon_sym_delete] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [anon_sym_SQUOTE] = ACTIONS(975), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(975), - [sym_number] = ACTIONS(975), - [sym_private_property_identifier] = ACTIONS(975), - [sym_this] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_true] = ACTIONS(975), - [sym_false] = ACTIONS(975), - [sym_null] = ACTIONS(975), - [sym_undefined] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_get] = ACTIONS(975), - [anon_sym_set] = ACTIONS(975), - [sym__automatic_semicolon] = ACTIONS(1097), - [sym__ternary_qmark] = ACTIONS(981), - [sym_html_comment] = ACTIONS(5), - }, - [221] = { - [sym_comment] = STATE(221), - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(928), - [anon_sym_export] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_import] = ACTIONS(928), - [anon_sym_var] = ACTIONS(928), - [anon_sym_let] = ACTIONS(928), - [anon_sym_const] = ACTIONS(928), - [anon_sym_if] = ACTIONS(928), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_await] = ACTIONS(928), - [anon_sym_in] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_with] = ACTIONS(928), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LTtemplate_GT] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_DOT] = ACTIONS(928), - [anon_sym_class] = ACTIONS(928), - [anon_sym_async] = ACTIONS(928), - [anon_sym_function] = ACTIONS(928), - [sym_optional_chain] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_AMP_AMP] = ACTIONS(928), - [anon_sym_PIPE_PIPE] = ACTIONS(928), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(928), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_PERCENT] = ACTIONS(928), - [anon_sym_STAR_STAR] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_EQ_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ_EQ] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_QMARK_QMARK] = ACTIONS(928), - [anon_sym_instanceof] = ACTIONS(928), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_typeof] = ACTIONS(928), - [anon_sym_void] = ACTIONS(928), - [anon_sym_delete] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(928), - [anon_sym_DASH_DASH] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE] = ACTIONS(928), + [223] = { + [sym_import] = STATE(1819), + [sym_expression_statement] = STATE(239), + [sym_empty_statement] = STATE(239), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1211), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2359), + [sym_string] = STATE(1285), + [sym_comment] = STATE(223), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(928), - [sym_number] = ACTIONS(928), - [sym_private_property_identifier] = ACTIONS(928), - [sym_this] = ACTIONS(928), - [sym_super] = ACTIONS(928), - [sym_true] = ACTIONS(928), - [sym_false] = ACTIONS(928), - [sym_null] = ACTIONS(928), - [sym_undefined] = ACTIONS(928), - [anon_sym_AT] = ACTIONS(928), - [anon_sym_static] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [sym__automatic_semicolon] = ACTIONS(930), - [sym__ternary_qmark] = ACTIONS(930), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [222] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2316), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1046), - [sym_subscript_expression] = STATE(1046), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1837), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(222), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [sym_pattern] = STATE(2086), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(945), - [anon_sym_export] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), + [224] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1397), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2250), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1853), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(224), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [sym_pattern] = STATE(2125), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(947), + [anon_sym_let] = ACTIONS(802), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(1099), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(955), + [sym_undefined] = ACTIONS(810), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(947), - [anon_sym_get] = ACTIONS(947), - [anon_sym_set] = ACTIONS(947), + [anon_sym_static] = ACTIONS(802), + [anon_sym_get] = ACTIONS(802), + [anon_sym_set] = ACTIONS(802), [sym_html_comment] = ACTIONS(5), }, - [223] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2251), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1046), - [sym_subscript_expression] = STATE(1046), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), + [225] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2250), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), [sym__destructuring_pattern] = STATE(1837), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(223), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [sym_pattern] = STATE(2101), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(945), - [anon_sym_export] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(225), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [sym_pattern] = STATE(2125), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(883), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(947), + [anon_sym_let] = ACTIONS(881), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_await] = ACTIONS(784), [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(887), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(891), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -37590,8 +38307,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -37601,171 +38316,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(955), + [sym_undefined] = ACTIONS(895), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(947), - [anon_sym_get] = ACTIONS(947), - [anon_sym_set] = ACTIONS(947), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), [sym_html_comment] = ACTIONS(5), }, - [224] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2316), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1046), - [sym_subscript_expression] = STATE(1046), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1837), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(224), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [sym_pattern] = STATE(2086), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(945), - [anon_sym_export] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), + [226] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1299), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_spread_element] = STATE(2817), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2817), + [sym_string] = STATE(1099), + [sym_comment] = STATE(226), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(1101), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(947), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(955), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(947), - [anon_sym_get] = ACTIONS(947), - [anon_sym_set] = ACTIONS(947), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [225] = { - [sym_import] = STATE(1785), - [sym_expression_statement] = STATE(241), - [sym_empty_statement] = STATE(241), - [sym_parenthesized_expression] = STATE(1048), + [227] = { + [sym_import] = STATE(1819), + [sym_expression_statement] = STATE(240), + [sym_empty_statement] = STATE(240), + [sym_parenthesized_expression] = STATE(1058), [sym_expression] = STATE(1211), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2314), - [sym_string] = STATE(1312), - [sym_comment] = STATE(225), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2359), + [sym_string] = STATE(1285), + [sym_comment] = STATE(227), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(836), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -37782,164 +38497,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [226] = { - [sym_import] = STATE(1785), - [sym_expression_statement] = STATE(239), - [sym_empty_statement] = STATE(239), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1211), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2314), - [sym_string] = STATE(1312), - [sym_comment] = STATE(226), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [228] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_assignment_pattern] = STATE(2393), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1837), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(228), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [sym_pattern] = STATE(2103), + [sym_rest_pattern] = STATE(1848), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(883), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(836), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(887), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(891), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(796), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(895), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), [sym_html_comment] = ACTIONS(5), }, - [227] = { - [sym_import] = STATE(1785), - [sym_expression_statement] = STATE(242), - [sym_empty_statement] = STATE(242), - [sym_parenthesized_expression] = STATE(1048), + [229] = { + [sym_import] = STATE(1819), + [sym_expression_statement] = STATE(238), + [sym_empty_statement] = STATE(238), + [sym_parenthesized_expression] = STATE(1058), [sym_expression] = STATE(1211), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2314), - [sym_string] = STATE(1312), - [sym_comment] = STATE(227), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2359), + [sym_string] = STATE(1285), + [sym_comment] = STATE(229), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(836), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -37956,164 +38671,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [228] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1370), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_spread_element] = STATE(2785), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2785), - [sym_string] = STATE(1174), - [sym_comment] = STATE(228), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [sym_html_comment] = ACTIONS(5), - }, - [229] = { - [sym_import] = STATE(1785), - [sym_expression_statement] = STATE(240), - [sym_empty_statement] = STATE(240), - [sym_parenthesized_expression] = STATE(1048), + [230] = { + [sym_import] = STATE(1819), + [sym_expression_statement] = STATE(241), + [sym_empty_statement] = STATE(241), + [sym_parenthesized_expression] = STATE(1058), [sym_expression] = STATE(1211), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2314), - [sym_string] = STATE(1312), - [sym_comment] = STATE(229), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2359), + [sym_string] = STATE(1285), + [sym_comment] = STATE(230), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(836), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -38130,48 +38758,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [230] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1330), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_spread_element] = STATE(2761), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2761), - [sym_string] = STATE(1174), - [sym_comment] = STATE(230), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [231] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1347), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_spread_element] = STATE(2819), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2819), + [sym_string] = STATE(1099), + [sym_comment] = STATE(231), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -38184,23 +38812,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -38217,77 +38845,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [231] = { - [sym_import] = STATE(1785), - [sym_expression_statement] = STATE(238), - [sym_empty_statement] = STATE(238), - [sym_parenthesized_expression] = STATE(1048), + [232] = { + [sym_import] = STATE(1819), + [sym_expression_statement] = STATE(242), + [sym_empty_statement] = STATE(242), + [sym_parenthesized_expression] = STATE(1058), [sym_expression] = STATE(1211), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2314), - [sym_string] = STATE(1312), - [sym_comment] = STATE(231), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2359), + [sym_string] = STATE(1285), + [sym_comment] = STATE(232), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(836), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -38304,162 +38932,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [232] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1374), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_assignment_pattern] = STATE(2251), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1051), - [sym_subscript_expression] = STATE(1051), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1827), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(232), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [sym_pattern] = STATE(2101), - [sym_rest_pattern] = STATE(1808), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(800), - [anon_sym_export] = ACTIONS(802), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [sym_html_comment] = ACTIONS(5), - }, [233] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1224), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2429), - [sym_string] = STATE(1312), + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1219), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2256), + [sym_string] = STATE(1285), [sym_comment] = STATE(233), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(1105), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -38478,74 +39019,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1187), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2215), - [sym_string] = STATE(1312), + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1227), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2378), + [sym_string] = STATE(1285), [sym_comment] = STATE(234), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(1109), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -38564,74 +39105,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1216), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2333), - [sym_string] = STATE(1312), + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1255), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2489), + [sym_string] = STATE(1285), [sym_comment] = STATE(235), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(1113), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -38650,74 +39191,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1226), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2444), - [sym_string] = STATE(1312), + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1202), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2335), + [sym_string] = STATE(1285), [sym_comment] = STATE(236), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(1117), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -38736,74 +39277,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1228), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2233), - [sym_string] = STATE(1312), + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1249), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2459), + [sym_string] = STATE(1285), [sym_comment] = STATE(237), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(1121), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -38822,46 +39363,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1279), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2737), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1293), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2734), + [sym_string] = STATE(1099), [sym_comment] = STATE(238), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -38874,22 +39415,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -38907,46 +39448,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1282), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2734), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1313), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2770), + [sym_string] = STATE(1099), [sym_comment] = STATE(239), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -38959,22 +39500,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -38992,46 +39533,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1311), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2765), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1362), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2826), + [sym_string] = STATE(1099), [sym_comment] = STATE(240), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -39044,22 +39585,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -39077,46 +39618,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1304), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2720), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1292), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2791), + [sym_string] = STATE(1099), [sym_comment] = STATE(241), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -39129,22 +39670,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -39162,46 +39703,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1355), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2715), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1361), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2831), + [sym_string] = STATE(1099), [sym_comment] = STATE(242), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -39214,22 +39755,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -39247,45 +39788,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1065), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1065), - [sym_subscript_expression] = STATE(1065), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2054), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1077), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1077), + [sym_subscript_expression] = STATE(1077), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2114), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(243), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(1135), [anon_sym_export] = ACTIONS(1137), [anon_sym_LBRACE] = ACTIONS(1139), @@ -39299,13 +39840,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1147), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(1149), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -39313,8 +39856,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -39332,130 +39873,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1147), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1411), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1174), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1431), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(244), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1321), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2793), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1294), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2843), + [sym_string] = STATE(1099), [sym_comment] = STATE(245), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -39467,22 +40008,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -39500,325 +40041,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1266), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2738), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1118), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1444), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(246), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, [247] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1274), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2732), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1085), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1086), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(247), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(780), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1262), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2736), - [sym_string] = STATE(1174), + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1375), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1233), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), [sym_comment] = STATE(248), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [sym_html_comment] = ACTIONS(5), - }, - [249] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1359), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1201), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(249), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -39835,131 +40292,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, + [249] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1169), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(249), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), + [sym_html_comment] = ACTIONS(5), + }, [250] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1210), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2421), - [sym_string] = STATE(1312), + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1172), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1432), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(250), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_let] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, [251] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1320), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2714), - [sym_string] = STATE(1174), + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1132), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1443), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), [sym_comment] = STATE(251), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), + [sym_html_comment] = ACTIONS(5), + }, + [252] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1352), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2743), + [sym_string] = STATE(1099), + [sym_comment] = STATE(252), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -39971,22 +40596,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -40003,142 +40628,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1227), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2446), - [sym_string] = STATE(1312), - [sym_comment] = STATE(252), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), + [253] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1026), + [sym_expression] = STATE(1467), + [sym_primary_expression] = STATE(1240), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1243), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1026), + [sym_subscript_expression] = STATE(1026), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1285), + [sym_comment] = STATE(253), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(1161), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_let] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), + [anon_sym_async] = ACTIONS(1165), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [sym_undefined] = ACTIONS(1167), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(1161), + [anon_sym_get] = ACTIONS(1161), + [anon_sym_set] = ACTIONS(1161), [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1267), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1240), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(253), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [254] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1297), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1264), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(254), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -40153,8 +40780,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -40171,58 +40796,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [254] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1346), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1178), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(254), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [255] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1296), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1262), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(255), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -40237,8 +40864,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -40255,58 +40880,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [255] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1344), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1238), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(255), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [256] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1085), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1086), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(256), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(1169), + [anon_sym_export] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(1173), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(796), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(1171), + [anon_sym_get] = ACTIONS(1171), + [anon_sym_set] = ACTIONS(1171), + [sym_html_comment] = ACTIONS(5), + }, + [257] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1288), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1260), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(257), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -40321,8 +41032,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -40339,65 +41048,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1450), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1208), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1312), - [sym_comment] = STATE(256), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(1157), - [anon_sym_export] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(718), + [258] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1085), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1086), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(258), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(1175), + [anon_sym_export] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_let] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_await] = ACTIONS(784), [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(1161), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(1163), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(1155), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(1179), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(770), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -40405,65 +41116,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), [sym_private_property_identifier] = ACTIONS(796), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(1165), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(1159), - [anon_sym_set] = ACTIONS(1159), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_get] = ACTIONS(1177), + [anon_sym_set] = ACTIONS(1177), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1315), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2716), - [sym_string] = STATE(1174), - [sym_comment] = STATE(257), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [259] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1302), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2787), + [sym_string] = STATE(1099), + [sym_comment] = STATE(259), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -40475,22 +41184,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -40507,74 +41216,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [258] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1217), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2335), - [sym_string] = STATE(1312), - [sym_comment] = STATE(258), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [260] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1297), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1241), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(260), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -40591,215 +41300,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1308), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1261), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(259), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(1155), + [261] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1296), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1242), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(261), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1295), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2728), - [sym_string] = STATE(1174), - [sym_comment] = STATE(260), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [262] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1288), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1244), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(262), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1149), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1408), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(261), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [263] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1174), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1394), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(263), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(1153), @@ -40811,13 +41520,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -40825,8 +41536,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -40843,131 +41552,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1188), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2217), - [sym_string] = STATE(1312), - [sym_comment] = STATE(262), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [264] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1375), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1208), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(264), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), + [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(746), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1144), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1410), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(263), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [265] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1172), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(265), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(1153), @@ -40979,13 +41688,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -40993,8 +41704,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -41011,131 +41720,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1284), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2746), - [sym_string] = STATE(1174), - [sym_comment] = STATE(264), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [sym_html_comment] = ACTIONS(5), - }, - [265] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1084), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1377), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(265), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [266] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1132), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1423), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(266), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(1153), @@ -41147,13 +41772,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -41161,8 +41788,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -41179,131 +41804,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1372), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2697), - [sym_string] = STATE(1174), - [sym_comment] = STATE(266), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [267] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1350), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1205), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(267), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1272), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2772), - [sym_string] = STATE(1174), - [sym_comment] = STATE(267), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [268] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1287), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1248), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(268), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), + [sym_html_comment] = ACTIONS(5), + }, + [269] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1301), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2783), + [sym_string] = STATE(1099), + [sym_comment] = STATE(269), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -41315,22 +42024,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -41347,299 +42056,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1149), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1438), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(268), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(1153), + [270] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1287), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1258), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(270), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [269] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1147), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1433), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), + [271] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1339), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(269), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(1153), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2845), + [sym_string] = STATE(1099), + [sym_comment] = STATE(271), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [270] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1144), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(270), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), + [272] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1118), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1398), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(272), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(780), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1329), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2791), - [sym_string] = STATE(1174), - [sym_comment] = STATE(271), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [273] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1349), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2788), + [sym_string] = STATE(1099), + [sym_comment] = STATE(273), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -41651,22 +42360,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -41683,131 +42392,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [272] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1230), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_sequence_expression] = STATE(2235), - [sym_string] = STATE(1312), - [sym_comment] = STATE(272), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [273] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1301), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2719), - [sym_string] = STATE(1174), - [sym_comment] = STATE(273), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [274] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1280), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2790), + [sym_string] = STATE(1099), + [sym_comment] = STATE(274), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -41819,22 +42444,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -41851,74 +42476,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [274] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1308), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1218), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(274), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [275] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1210), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2456), + [sym_string] = STATE(1285), + [sym_comment] = STATE(275), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -41935,299 +42560,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [275] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1084), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1429), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(275), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), + [276] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1156), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1419), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(276), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(780), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), - [sym_html_comment] = ACTIONS(5), - }, - [276] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1344), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1215), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(276), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1346), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1214), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1342), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2837), + [sym_string] = STATE(1099), [sym_comment] = STATE(277), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [278] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1287), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2790), - [sym_string] = STATE(1174), - [sym_comment] = STATE(278), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -42239,22 +42696,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -42271,386 +42728,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1267), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1213), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(279), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [280] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1328), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1256), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(280), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), - [sym_html_comment] = ACTIONS(5), - }, - [281] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1171), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1443), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), + [278] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(281), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(1153), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2818), + [sym_string] = STATE(1099), + [sym_comment] = STATE(278), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [282] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1171), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1399), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(282), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(1153), + [279] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1174), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1175), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(279), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1324), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2713), - [sym_string] = STATE(1174), - [sym_comment] = STATE(283), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [280] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1172), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1173), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(280), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), @@ -42659,22 +42948,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -42691,50 +42980,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1326), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2712), - [sym_string] = STATE(1174), - [sym_comment] = STATE(284), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [281] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1169), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1170), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(281), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), @@ -42743,22 +43032,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -42775,299 +43064,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [285] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1078), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1077), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(285), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(1167), - [anon_sym_export] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(756), + [282] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1336), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2847), + [sym_string] = STATE(1099), + [sym_comment] = STATE(282), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1169), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(1171), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(1173), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_get] = ACTIONS(1169), - [anon_sym_set] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1078), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1077), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(286), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(756), + [283] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1118), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1119), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(283), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(1171), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1122), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1376), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(287), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(1153), + [284] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1360), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2798), + [sym_string] = STATE(1099), + [sym_comment] = STATE(284), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1122), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1430), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(288), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), + [285] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1156), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1447), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(285), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(750), [anon_sym_export] = ACTIONS(752), [anon_sym_LBRACE] = ACTIONS(1153), @@ -43079,9 +43368,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -43093,8 +43384,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(768), [anon_sym_PLUS_PLUS] = ACTIONS(772), [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -43111,50 +43400,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [289] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1144), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1145), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(289), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [286] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1305), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2782), + [sym_string] = STATE(1099), + [sym_comment] = STATE(286), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), @@ -43163,22 +43452,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -43195,326 +43484,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [290] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1450), - [sym_primary_expression] = STATE(1209), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1208), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1312), - [sym_comment] = STATE(290), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(1177), - [anon_sym_export] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(718), + [287] = { + [sym_import] = STATE(1819), + [sym_statement_block] = STATE(1350), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1218), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(287), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(1157), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(1161), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(1181), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(1165), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_get] = ACTIONS(1179), - [anon_sym_set] = ACTIONS(1179), - [sym_html_comment] = ACTIONS(5), - }, - [291] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1147), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1148), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(291), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [sym_html_comment] = ACTIONS(5), - }, - [292] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1084), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1091), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(292), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [293] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1328), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1185), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(293), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [288] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1267), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2491), + [sym_string] = STATE(1285), + [sym_comment] = STATE(288), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -43531,215 +43652,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [294] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1078), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1077), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(294), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(1183), - [anon_sym_export] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(1171), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_get] = ACTIONS(1185), - [anon_sym_set] = ACTIONS(1185), - [sym_html_comment] = ACTIONS(5), - }, - [295] = { - [sym_import] = STATE(1785), - [sym_statement_block] = STATE(1359), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1242), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(295), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(1155), + [289] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1201), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2318), + [sym_string] = STATE(1285), + [sym_comment] = STATE(289), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [296] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1349), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_sequence_expression] = STATE(2787), - [sym_string] = STATE(1174), - [sym_comment] = STATE(296), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [290] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1314), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2768), + [sym_string] = STATE(1099), + [sym_comment] = STATE(290), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -43751,22 +43788,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -43783,50 +43820,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1149), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1150), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(297), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [291] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1228), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2380), + [sym_string] = STATE(1285), + [sym_comment] = STATE(291), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), + [sym_html_comment] = ACTIONS(5), + }, + [292] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1132), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1131), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(292), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), @@ -43835,22 +43956,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -43867,300 +43988,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [298] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1171), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1170), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(298), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [sym_html_comment] = ACTIONS(5), - }, - [299] = { - [sym_import] = STATE(1751), - [sym_statement_block] = STATE(1122), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1121), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(299), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [sym_html_comment] = ACTIONS(5), - }, - [300] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1432), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(300), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), - [sym_html_comment] = ACTIONS(5), - }, - [301] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1397), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(301), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [293] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1169), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1396), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(293), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(1153), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(780), [anon_sym_LPAREN] = ACTIONS(674), @@ -44169,13 +44040,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -44183,8 +44056,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -44201,46 +44072,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1089), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(302), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [294] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1326), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2806), + [sym_string] = STATE(1099), + [sym_comment] = STATE(294), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -44252,22 +44124,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -44284,405 +44156,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1069), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(303), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), - [sym_html_comment] = ACTIONS(5), - }, - [304] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1204), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(304), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [305] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1199), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(305), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [306] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1198), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(306), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [307] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1197), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(307), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [295] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1216), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_sequence_expression] = STATE(2258), + [sym_string] = STATE(1285), + [sym_comment] = STATE(295), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -44699,49 +44240,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [308] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1116), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(308), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [296] = { + [sym_import] = STATE(1762), + [sym_statement_block] = STATE(1156), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(296), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), @@ -44750,22 +44292,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -44782,129 +44324,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1206), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(309), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), + [297] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1026), + [sym_expression] = STATE(1467), + [sym_primary_expression] = STATE(1240), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1243), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1026), + [sym_subscript_expression] = STATE(1026), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1285), + [sym_comment] = STATE(297), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(1183), + [anon_sym_export] = ACTIONS(1185), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_let] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), + [anon_sym_async] = ACTIONS(1187), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [sym_undefined] = ACTIONS(1167), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(1185), + [anon_sym_get] = ACTIONS(1185), + [anon_sym_set] = ACTIONS(1185), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1117), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(310), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [298] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1300), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2844), + [sym_string] = STATE(1099), + [sym_comment] = STATE(298), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -44916,22 +44460,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -44948,378 +44492,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1196), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(311), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [312] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1195), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(312), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [313] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1194), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(313), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [314] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1193), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(314), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [315] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1118), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(315), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [299] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1320), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_sequence_expression] = STATE(2764), + [sym_string] = STATE(1099), + [sym_comment] = STATE(299), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -45331,22 +44544,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -45363,46 +44576,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1119), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(316), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [300] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1406), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(300), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(796), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), + [sym_html_comment] = ACTIONS(5), + }, + [301] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1451), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(301), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -45414,22 +44710,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -45446,627 +44742,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1192), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(317), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [302] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1449), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(302), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_let] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [318] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1191), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(318), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1190), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(319), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [303] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1450), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(303), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_let] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1387), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(320), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [304] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1425), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(304), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1200), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(321), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [305] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1453), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(305), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_let] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [322] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1120), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(322), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [306] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1454), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(306), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [323] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1126), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(323), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [307] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1455), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(307), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_let] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [324] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1436), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(324), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [308] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1459), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(308), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -46078,13 +45291,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -46092,8 +45307,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -46110,73 +45323,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [325] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1113), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(325), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [309] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1209), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(309), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -46193,405 +45406,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [326] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1428), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(326), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), + [310] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1456), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(310), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [327] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1124), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(327), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [311] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1458), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(311), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1125), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(328), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [312] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1461), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(312), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [329] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1127), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(329), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [313] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1460), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(313), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [330] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1111), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(330), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [314] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1270), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(314), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -46608,73 +45821,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [331] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1345), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(331), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [315] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1457), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(315), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_let] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), + [sym_html_comment] = ACTIONS(5), + }, + [316] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1263), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(316), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -46691,322 +45987,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [332] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1130), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(332), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [sym_html_comment] = ACTIONS(5), - }, - [333] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1066), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(333), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [317] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1261), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(317), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [334] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1406), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(334), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), + [318] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1448), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(318), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [335] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1189), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(335), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [319] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1259), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(319), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -47023,129 +46236,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [336] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1444), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(336), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), - [sym_html_comment] = ACTIONS(5), - }, - [337] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1442), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(337), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [320] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1435), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(320), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -47157,13 +46287,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -47171,8 +46303,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -47189,73 +46319,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [338] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1306), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(338), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [321] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1253), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(321), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -47272,737 +46402,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [339] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1386), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(339), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [sym_html_comment] = ACTIONS(5), - }, - [340] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1135), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(340), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [322] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1445), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(322), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [341] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1179), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(341), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), + [323] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1265), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(323), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [342] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1260), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(342), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), + [324] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1251), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(324), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), - [sym_html_comment] = ACTIONS(5), - }, - [343] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1143), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(343), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [344] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1111), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(344), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), + [325] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1250), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(325), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), - [sym_html_comment] = ACTIONS(5), - }, - [345] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1155), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(345), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [346] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1113), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(346), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), + [326] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(326), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [347] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1225), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(347), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), + [327] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1246), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(327), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -48019,212 +46900,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [348] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(348), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), + [328] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1225), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(328), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [349] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1383), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(349), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), + [329] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1437), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(329), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [350] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1415), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(350), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), + [330] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1245), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(330), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), + [sym_html_comment] = ACTIONS(5), + }, + [331] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1428), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(331), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(750), [anon_sym_export] = ACTIONS(752), [anon_sym_LBRACE] = ACTIONS(756), @@ -48236,9 +47200,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -48250,8 +47216,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(768), [anon_sym_PLUS_PLUS] = ACTIONS(772), [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -48268,129 +47232,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [351] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1162), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(351), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [sym_html_comment] = ACTIONS(5), - }, - [352] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1385), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(352), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [332] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1415), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(332), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -48402,13 +47283,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -48416,8 +47299,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -48434,46 +47315,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [353] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1167), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(353), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [333] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1327), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(333), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), + [sym_html_comment] = ACTIONS(5), + }, + [334] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1236), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(334), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), + [sym_html_comment] = ACTIONS(5), + }, + [335] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1079), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(335), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -48485,22 +47532,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -48517,46 +47564,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [354] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1426), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(354), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [336] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1080), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(336), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -48568,22 +47615,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -48600,73 +47647,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [355] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1203), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(355), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [337] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1123), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(337), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -48683,46 +47730,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [356] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1175), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(356), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [338] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1082), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(338), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(796), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), + [sym_html_comment] = ACTIONS(5), + }, + [339] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1434), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(339), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(796), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), + [sym_html_comment] = ACTIONS(5), + }, + [340] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1133), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(340), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -48734,22 +47947,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -48766,156 +47979,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [357] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1186), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(357), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [358] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1184), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(358), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), + [341] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1282), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(341), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(712), [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -48932,129 +48062,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [359] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1094), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(359), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [sym_html_comment] = ACTIONS(5), - }, - [360] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1421), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(360), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), + [342] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1430), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(342), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(750), [anon_sym_export] = ACTIONS(752), [anon_sym_LBRACE] = ACTIONS(756), @@ -49066,9 +48113,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -49080,8 +48129,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(768), [anon_sym_PLUS_PLUS] = ACTIONS(772), [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -49098,129 +48145,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [361] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1374), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(361), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [343] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1112), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(343), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [362] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(362), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [344] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1441), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(344), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -49232,13 +48279,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -49246,8 +48295,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -49264,46 +48311,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [363] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1393), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(363), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [345] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1442), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(345), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -49315,13 +48362,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -49329,8 +48378,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -49347,295 +48394,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [364] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1243), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(364), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), + [346] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1232), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(346), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [365] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1244), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(365), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(718), + [347] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1446), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(347), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_let] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [366] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1123), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(366), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(668), + [348] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1080), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(348), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(664), + [anon_sym_let] = ACTIONS(752), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(706), + [sym_private_property_identifier] = ACTIONS(774), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(708), + [sym_undefined] = ACTIONS(776), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [367] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1395), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(367), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [349] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1414), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(349), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -49647,13 +48694,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -49661,8 +48710,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -49679,46 +48726,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1237), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(368), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [350] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1079), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(350), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(758), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(770), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_typeof] = ACTIONS(768), + [anon_sym_void] = ACTIONS(768), + [anon_sym_delete] = ACTIONS(768), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(774), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), + [sym_html_comment] = ACTIONS(5), + }, + [351] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1393), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(351), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(796), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), + [sym_html_comment] = ACTIONS(5), + }, + [352] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1403), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(352), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -49730,22 +48943,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -49762,46 +48975,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1068), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(369), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [353] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1410), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(353), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -49813,22 +49026,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -49845,46 +49058,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1069), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(370), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [354] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1136), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(354), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -49896,22 +49109,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -49928,46 +49141,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [371] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1068), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(371), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [355] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1413), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(355), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -49979,13 +49192,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -49993,8 +49208,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -50011,57 +49224,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1126), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(372), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [356] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1160), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(356), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -50076,8 +49291,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -50094,46 +49307,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [373] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1434), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(373), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [357] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1159), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(357), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -50145,22 +49358,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -50177,46 +49390,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [374] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1388), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(374), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [358] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1412), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(358), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -50228,13 +49441,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -50242,8 +49457,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -50260,46 +49473,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [375] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1375), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(375), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [359] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1411), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(359), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -50311,13 +49524,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -50325,8 +49540,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -50343,295 +49556,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [376] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1245), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(376), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), - [sym_html_comment] = ACTIONS(5), - }, - [377] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1069), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), + [360] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1154), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(377), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(360), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), - [sym_html_comment] = ACTIONS(5), - }, - [378] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1246), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(378), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [379] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1392), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(379), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [361] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1405), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(361), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -50643,13 +49690,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -50657,8 +49706,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -50675,223 +49722,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [380] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1422), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(380), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(756), + [362] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1100), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(362), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [381] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1068), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), + [363] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1239), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(381), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(363), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [382] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1247), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(382), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [364] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1272), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(364), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -50906,8 +49955,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -50924,46 +49971,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [383] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1431), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(383), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), + [365] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1082), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(365), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(750), [anon_sym_export] = ACTIONS(752), [anon_sym_LBRACE] = ACTIONS(756), @@ -50975,9 +50022,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -50989,8 +50038,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(768), [anon_sym_PLUS_PLUS] = ACTIONS(772), [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -51007,295 +50054,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [384] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1182), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(384), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), + [366] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1101), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(366), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(706), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [385] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(385), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), - [sym_html_comment] = ACTIONS(5), - }, - [386] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1180), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1048), - [sym_subscript_expression] = STATE(1048), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1649), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2699), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(386), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2703), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(712), - [anon_sym_export] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(714), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(722), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(69), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_SLASH] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(87), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(714), - [anon_sym_get] = ACTIONS(714), - [anon_sym_set] = ACTIONS(714), - [sym_html_comment] = ACTIONS(5), - }, - [387] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1403), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(387), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [367] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1408), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(367), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -51307,13 +50188,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -51321,8 +50204,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -51339,46 +50220,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [388] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1212), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2796), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(388), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), + [368] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1096), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(368), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_LBRACE] = ACTIONS(668), @@ -51390,22 +50271,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(686), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -51422,239 +50303,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [389] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1066), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(389), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(756), + [369] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1103), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(369), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [390] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1066), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), + [370] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1104), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(390), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(370), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [391] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1237), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1056), - [sym_subscript_expression] = STATE(1056), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1640), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1963), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(391), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2800), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(1189), - [anon_sym_export] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(756), + [371] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1235), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(371), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1191), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), + [sym_html_comment] = ACTIONS(5), + }, + [372] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1105), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(372), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_await] = ACTIONS(676), [anon_sym_yield] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(1193), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(690), - [anon_sym_PLUS] = ACTIONS(692), - [anon_sym_DASH] = ACTIONS(692), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(692), - [anon_sym_TILDE] = ACTIONS(692), - [anon_sym_typeof] = ACTIONS(692), - [anon_sym_void] = ACTIONS(692), - [anon_sym_delete] = ACTIONS(692), - [anon_sym_PLUS_PLUS] = ACTIONS(696), - [anon_sym_DASH_DASH] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -51664,154 +50628,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(1195), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_get] = ACTIONS(1191), - [anon_sym_set] = ACTIONS(1191), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [392] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), + [373] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1106), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(392), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(373), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [393] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1400), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(393), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(756), + [374] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1107), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(374), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(780), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(706), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), + [sym_html_comment] = ACTIONS(5), + }, + [375] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1108), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(375), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(706), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), + [sym_html_comment] = ACTIONS(5), + }, + [376] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1109), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(376), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(706), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), + [sym_html_comment] = ACTIONS(5), + }, + [377] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1057), + [sym_subscript_expression] = STATE(1057), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1868), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(377), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(1189), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_LBRACE] = ACTIONS(883), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(1191), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_await] = ACTIONS(784), [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(887), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -51819,8 +51034,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -51830,53 +51043,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(798), + [sym_undefined] = ACTIONS(1195), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_get] = ACTIONS(1191), + [anon_sym_set] = ACTIONS(1191), [sym_html_comment] = ACTIONS(5), }, - [394] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1396), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(394), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [378] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1080), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(378), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -51888,13 +51101,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -51902,8 +51117,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -51920,129 +51133,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1257), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(395), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), + [379] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1082), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(379), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(706), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), + [sym_html_comment] = ACTIONS(5), + }, + [380] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1214), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(380), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1394), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(396), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [381] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1110), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(381), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(706), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), + [sym_html_comment] = ACTIONS(5), + }, + [382] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1079), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(382), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -52054,13 +51433,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -52068,8 +51449,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -52086,295 +51465,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [397] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1417), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), + [383] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1111), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(397), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(383), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), - [sym_html_comment] = ACTIONS(5), - }, - [398] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1249), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(398), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), - [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [399] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1250), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(399), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(728), + [384] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1257), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(384), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), - [anon_sym_await] = ACTIONS(732), - [anon_sym_yield] = ACTIONS(734), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), - [anon_sym_async] = ACTIONS(736), + [anon_sym_async] = ACTIONS(722), [anon_sym_function] = ACTIONS(724), - [anon_sym_new] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_typeof] = ACTIONS(740), - [anon_sym_void] = ACTIONS(740), - [anon_sym_delete] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(85), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(748), + [sym_undefined] = ACTIONS(87), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(728), - [anon_sym_get] = ACTIONS(728), - [anon_sym_set] = ACTIONS(728), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [400] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1373), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(400), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [385] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1404), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(385), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -52386,13 +51682,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -52400,8 +51698,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -52418,46 +51714,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [401] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1407), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(401), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [386] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1117), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(386), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(706), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), + [sym_html_comment] = ACTIONS(5), + }, + [387] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1416), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(387), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -52469,13 +51848,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -52483,8 +51864,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -52501,129 +51880,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [402] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1418), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(402), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), + [388] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1400), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(388), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(780), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [403] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1437), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(403), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), + [389] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1076), + [sym_expression] = STATE(1452), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1656), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2786), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(389), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2785), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(750), [anon_sym_export] = ACTIONS(752), [anon_sym_LBRACE] = ACTIONS(756), @@ -52635,9 +52014,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -52649,8 +52030,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(768), [anon_sym_PLUS_PLUS] = ACTIONS(772), [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -52667,46 +52046,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(752), [sym_html_comment] = ACTIONS(5), }, - [404] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1391), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(404), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [390] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1417), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(390), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -52718,13 +52097,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -52732,8 +52113,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -52750,140 +52129,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [405] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1423), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), + [391] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1220), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(405), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(391), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(706), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), + [sym_html_comment] = ACTIONS(5), + }, + [392] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1424), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(392), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(780), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [406] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1251), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(406), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [393] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1190), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(393), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -52898,8 +52362,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -52916,57 +52378,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [407] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1252), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(407), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [394] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1207), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(394), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -52981,8 +52445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -52999,140 +52461,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [408] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1451), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1049), - [sym_subscript_expression] = STATE(1049), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(1821), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(408), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(1197), - [anon_sym_export] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(949), + [395] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1215), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(395), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1199), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), + [sym_html_comment] = ACTIONS(5), + }, + [396] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1436), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(396), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(784), - [anon_sym_yield] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(790), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(792), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_typeof] = ACTIONS(792), - [anon_sym_void] = ACTIONS(792), - [anon_sym_delete] = ACTIONS(792), - [anon_sym_PLUS_PLUS] = ACTIONS(794), - [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(796), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(1203), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_get] = ACTIONS(1199), - [anon_sym_set] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [409] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1253), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(409), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [397] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1231), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(397), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -53147,8 +52694,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -53165,57 +52710,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [410] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1259), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(410), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [398] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1192), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(398), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -53230,8 +52777,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -53248,140 +52793,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [411] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1425), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(411), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), - [sym_html_comment] = ACTIONS(5), - }, - [412] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1254), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(412), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [399] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1193), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(399), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -53396,8 +52860,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -53414,627 +52876,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [413] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1427), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), + [400] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1397), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(413), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(400), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [414] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1440), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), + [401] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1179), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1033), + [sym_subscript_expression] = STATE(1033), + [sym_assignment_expression] = STATE(1122), [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(414), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2841), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(401), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(664), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(706), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(708), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1439), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(415), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), - [sym_html_comment] = ACTIONS(5), - }, - [416] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1414), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(416), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(664), + [anon_sym_get] = ACTIONS(664), + [anon_sym_set] = ACTIONS(664), [sym_html_comment] = ACTIONS(5), }, - [417] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1449), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(417), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), + [402] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1426), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(402), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(780), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [418] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1445), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(418), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), + [403] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1402), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(403), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), + [anon_sym_let] = ACTIONS(780), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), + [sym_private_property_identifier] = ACTIONS(796), [sym_this] = ACTIONS(704), [sym_super] = ACTIONS(704), [sym_true] = ACTIONS(704), [sym_false] = ACTIONS(704), [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [sym_undefined] = ACTIONS(798), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [419] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1448), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(419), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), + [404] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1194), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(404), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [420] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1378), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1643), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2802), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(420), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2794), - [aux_sym_export_statement_repeat1] = STATE(1949), + [405] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1421), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(405), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), [anon_sym_LBRACE] = ACTIONS(756), @@ -54046,13 +53342,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(762), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(688), + [anon_sym_function] = ACTIONS(692), [anon_sym_new] = ACTIONS(790), [anon_sym_PLUS] = ACTIONS(792), [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(698), [anon_sym_BANG] = ACTIONS(792), [anon_sym_TILDE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(792), @@ -54060,8 +53358,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(792), [anon_sym_PLUS_PLUS] = ACTIONS(794), [anon_sym_DASH_DASH] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(702), [sym_number] = ACTIONS(704), @@ -54078,57 +53374,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [421] = { - [sym_import] = STATE(1785), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1255), - [sym_primary_expression] = STATE(1361), - [sym_yield_expression] = STATE(1362), - [sym_object] = STATE(1312), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1312), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1362), - [sym_glimmer_opening_tag] = STATE(1976), - [sym_jsx_element] = STATE(1362), - [sym_jsx_opening_element] = STATE(1669), - [sym_jsx_self_closing_element] = STATE(1362), - [sym_class] = STATE(1312), - [sym_function_expression] = STATE(1312), - [sym_generator_function] = STATE(1312), - [sym_arrow_function] = STATE(1312), - [sym_call_expression] = STATE(1312), - [sym_new_expression] = STATE(1362), - [sym_await_expression] = STATE(1362), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1362), - [sym__augmented_assignment_lhs] = STATE(1637), - [sym_augmented_assignment_expression] = STATE(1362), - [sym__destructuring_pattern] = STATE(2711), - [sym_ternary_expression] = STATE(1362), - [sym_binary_expression] = STATE(1362), - [sym_unary_expression] = STATE(1362), - [sym_update_expression] = STATE(1362), - [sym_string] = STATE(1312), - [sym_comment] = STATE(421), - [sym_template_string] = STATE(1312), - [sym_regex] = STATE(1312), - [sym_meta_property] = STATE(1312), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2689), - [aux_sym_export_statement_repeat1] = STATE(1974), + [406] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1271), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(406), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), + [sym_html_comment] = ACTIONS(5), + }, + [407] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1123), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(407), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), [sym_identifier] = ACTIONS(726), [anon_sym_export] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(732), [anon_sym_yield] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(720), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(724), @@ -54143,8 +53524,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(740), [anon_sym_PLUS_PLUS] = ACTIONS(744), [anon_sym_DASH_DASH] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_SQUOTE] = ACTIONS(79), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), @@ -54161,675 +53540,1285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [422] = { - [sym_import] = STATE(1751), - [sym_parenthesized_expression] = STATE(1064), - [sym_expression] = STATE(1447), - [sym_primary_expression] = STATE(1173), - [sym_yield_expression] = STATE(1172), - [sym_object] = STATE(1174), - [sym_object_pattern] = STATE(1727), - [sym_array] = STATE(1174), - [sym_array_pattern] = STATE(1727), - [sym_glimmer_template] = STATE(1172), - [sym_glimmer_opening_tag] = STATE(1907), - [sym_jsx_element] = STATE(1172), - [sym_jsx_opening_element] = STATE(1670), - [sym_jsx_self_closing_element] = STATE(1172), - [sym_class] = STATE(1174), - [sym_function_expression] = STATE(1174), - [sym_generator_function] = STATE(1174), - [sym_arrow_function] = STATE(1174), - [sym_call_expression] = STATE(1174), - [sym_new_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym_member_expression] = STATE(1064), - [sym_subscript_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1172), - [sym__augmented_assignment_lhs] = STATE(1653), - [sym_augmented_assignment_expression] = STATE(1172), - [sym__destructuring_pattern] = STATE(2730), - [sym_ternary_expression] = STATE(1172), - [sym_binary_expression] = STATE(1172), - [sym_unary_expression] = STATE(1172), - [sym_update_expression] = STATE(1172), - [sym_string] = STATE(1174), - [sym_comment] = STATE(422), - [sym_template_string] = STATE(1174), - [sym_regex] = STATE(1174), - [sym_meta_property] = STATE(1174), - [sym_decorator] = STATE(2051), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1949), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(752), - [anon_sym_LBRACE] = ACTIONS(756), + [408] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1195), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(408), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_import] = ACTIONS(672), - [anon_sym_let] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_await] = ACTIONS(758), - [anon_sym_yield] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LTtemplate_GT] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_class] = ACTIONS(684), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(688), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(768), - [anon_sym_TILDE] = ACTIONS(768), - [anon_sym_typeof] = ACTIONS(768), - [anon_sym_void] = ACTIONS(768), - [anon_sym_delete] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(702), - [sym_number] = ACTIONS(704), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(704), - [sym_super] = ACTIONS(704), - [sym_true] = ACTIONS(704), - [sym_false] = ACTIONS(704), - [sym_null] = ACTIONS(704), - [sym_undefined] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), [anon_sym_AT] = ACTIONS(89), - [anon_sym_static] = ACTIONS(752), - [anon_sym_get] = ACTIONS(752), - [anon_sym_set] = ACTIONS(752), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [423] = { - [sym_namespace_export] = STATE(2566), - [sym_export_clause] = STATE(1971), - [sym_declaration] = STATE(928), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_class_declaration] = STATE(923), - [sym_function_declaration] = STATE(923), - [sym_generator_function_declaration] = STATE(923), - [sym_comment] = STATE(423), - [sym_decorator] = STATE(2051), - [aux_sym_export_statement_repeat1] = STATE(1873), - [aux_sym_object_repeat1] = STATE(2010), - [aux_sym_object_pattern_repeat1] = STATE(2113), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1213), - [anon_sym_var] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_COLON] = ACTIONS(1224), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_class] = ACTIONS(1229), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_function] = ACTIONS(1233), - [anon_sym_EQ_GT] = ACTIONS(1235), - [sym_optional_chain] = ACTIONS(1211), - [anon_sym_PLUS_EQ] = ACTIONS(1237), - [anon_sym_DASH_EQ] = ACTIONS(1237), - [anon_sym_STAR_EQ] = ACTIONS(1237), - [anon_sym_SLASH_EQ] = ACTIONS(1237), - [anon_sym_PERCENT_EQ] = ACTIONS(1237), - [anon_sym_CARET_EQ] = ACTIONS(1237), - [anon_sym_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_LT_EQ] = ACTIONS(1237), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), - [anon_sym_GT_EQ] = ACTIONS(1211), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [aux_sym_comment_token1] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1241), - [sym__automatic_semicolon] = ACTIONS(1211), - [sym__ternary_qmark] = ACTIONS(1211), + [409] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1196), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(409), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [424] = { - [sym_namespace_export] = STATE(2566), - [sym_export_clause] = STATE(1971), - [sym_declaration] = STATE(928), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_class_declaration] = STATE(923), - [sym_function_declaration] = STATE(923), - [sym_generator_function_declaration] = STATE(923), - [sym_comment] = STATE(424), - [sym_decorator] = STATE(2051), - [aux_sym_export_statement_repeat1] = STATE(1873), - [aux_sym_object_repeat1] = STATE(2010), - [aux_sym_object_pattern_repeat1] = STATE(2113), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_var] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_COLON] = ACTIONS(1224), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_class] = ACTIONS(1229), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_function] = ACTIONS(1233), - [anon_sym_EQ_GT] = ACTIONS(1235), - [sym_optional_chain] = ACTIONS(1211), - [anon_sym_PLUS_EQ] = ACTIONS(1237), - [anon_sym_DASH_EQ] = ACTIONS(1237), - [anon_sym_STAR_EQ] = ACTIONS(1237), - [anon_sym_SLASH_EQ] = ACTIONS(1237), - [anon_sym_PERCENT_EQ] = ACTIONS(1237), - [anon_sym_CARET_EQ] = ACTIONS(1237), - [anon_sym_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_LT_EQ] = ACTIONS(1237), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), - [anon_sym_GT_EQ] = ACTIONS(1211), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [aux_sym_comment_token1] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1241), - [sym__automatic_semicolon] = ACTIONS(1211), - [sym__ternary_qmark] = ACTIONS(1211), + [410] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1112), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(410), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [425] = { - [sym_namespace_export] = STATE(2566), - [sym_export_clause] = STATE(1971), - [sym_declaration] = STATE(928), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_class_declaration] = STATE(923), - [sym_function_declaration] = STATE(923), - [sym_generator_function_declaration] = STATE(923), - [sym_comment] = STATE(425), - [sym_decorator] = STATE(2051), - [aux_sym_export_statement_repeat1] = STATE(1873), - [aux_sym_object_repeat1] = STATE(2114), - [aux_sym_object_pattern_repeat1] = STATE(2113), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_var] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_COLON] = ACTIONS(1224), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_class] = ACTIONS(1229), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_function] = ACTIONS(1233), - [anon_sym_EQ_GT] = ACTIONS(1235), - [sym_optional_chain] = ACTIONS(1211), - [anon_sym_PLUS_EQ] = ACTIONS(1237), - [anon_sym_DASH_EQ] = ACTIONS(1237), - [anon_sym_STAR_EQ] = ACTIONS(1237), - [anon_sym_SLASH_EQ] = ACTIONS(1237), - [anon_sym_PERCENT_EQ] = ACTIONS(1237), - [anon_sym_CARET_EQ] = ACTIONS(1237), - [anon_sym_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_LT_EQ] = ACTIONS(1237), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), - [anon_sym_GT_EQ] = ACTIONS(1211), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [aux_sym_comment_token1] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1241), - [sym__automatic_semicolon] = ACTIONS(1211), - [sym__ternary_qmark] = ACTIONS(1211), + [411] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1160), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(411), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), [sym_html_comment] = ACTIONS(5), }, - [426] = { - [sym_namespace_export] = STATE(2663), - [sym_export_clause] = STATE(1918), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(858), - [sym_lexical_declaration] = STATE(858), - [sym_class_declaration] = STATE(858), - [sym_function_declaration] = STATE(858), - [sym_generator_function_declaration] = STATE(858), - [sym_comment] = STATE(426), - [sym_decorator] = STATE(2051), - [aux_sym_export_statement_repeat1] = STATE(2000), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_var] = ACTIONS(1251), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1211), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_COLON] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_class] = ACTIONS(1259), - [anon_sym_async] = ACTIONS(1261), - [anon_sym_function] = ACTIONS(1263), - [anon_sym_EQ_GT] = ACTIONS(1235), - [sym_optional_chain] = ACTIONS(1211), - [anon_sym_PLUS_EQ] = ACTIONS(1237), - [anon_sym_DASH_EQ] = ACTIONS(1237), - [anon_sym_STAR_EQ] = ACTIONS(1237), - [anon_sym_SLASH_EQ] = ACTIONS(1237), - [anon_sym_PERCENT_EQ] = ACTIONS(1237), - [anon_sym_CARET_EQ] = ACTIONS(1237), - [anon_sym_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_LT_EQ] = ACTIONS(1237), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), - [anon_sym_GT_EQ] = ACTIONS(1211), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [aux_sym_comment_token1] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1241), - [sym__automatic_semicolon] = ACTIONS(1211), - [sym__ternary_qmark] = ACTIONS(1211), + [412] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1197), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(412), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [427] = { - [sym_namespace_export] = STATE(2566), - [sym_export_clause] = STATE(1971), - [sym_declaration] = STATE(928), - [sym_variable_declaration] = STATE(923), - [sym_lexical_declaration] = STATE(923), - [sym_class_declaration] = STATE(923), - [sym_function_declaration] = STATE(923), - [sym_generator_function_declaration] = STATE(923), - [sym_comment] = STATE(427), - [sym_decorator] = STATE(2051), - [aux_sym_export_statement_repeat1] = STATE(1873), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_var] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1211), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_COLON] = ACTIONS(1265), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_class] = ACTIONS(1229), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_function] = ACTIONS(1233), - [anon_sym_EQ_GT] = ACTIONS(1235), - [sym_optional_chain] = ACTIONS(1211), - [anon_sym_PLUS_EQ] = ACTIONS(1237), - [anon_sym_DASH_EQ] = ACTIONS(1237), - [anon_sym_STAR_EQ] = ACTIONS(1237), - [anon_sym_SLASH_EQ] = ACTIONS(1237), - [anon_sym_PERCENT_EQ] = ACTIONS(1237), - [anon_sym_CARET_EQ] = ACTIONS(1237), - [anon_sym_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_LT_EQ] = ACTIONS(1237), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), - [anon_sym_GT_EQ] = ACTIONS(1211), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [aux_sym_comment_token1] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1241), - [sym__automatic_semicolon] = ACTIONS(1211), - [sym__ternary_qmark] = ACTIONS(1211), + [413] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1252), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(413), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_namespace_export] = STATE(2660), - [sym_export_clause] = STATE(1888), - [sym_declaration] = STATE(670), - [sym_variable_declaration] = STATE(685), - [sym_lexical_declaration] = STATE(685), - [sym_class_declaration] = STATE(685), - [sym_function_declaration] = STATE(685), - [sym_generator_function_declaration] = STATE(685), - [sym_comment] = STATE(428), - [sym_decorator] = STATE(2051), - [aux_sym_export_statement_repeat1] = STATE(1997), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_var] = ACTIONS(1271), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1211), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_COLON] = ACTIONS(1275), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_class] = ACTIONS(1277), - [anon_sym_async] = ACTIONS(1279), - [anon_sym_function] = ACTIONS(1281), - [anon_sym_EQ_GT] = ACTIONS(1235), - [sym_optional_chain] = ACTIONS(1211), - [anon_sym_PLUS_EQ] = ACTIONS(1237), - [anon_sym_DASH_EQ] = ACTIONS(1237), - [anon_sym_STAR_EQ] = ACTIONS(1237), - [anon_sym_SLASH_EQ] = ACTIONS(1237), - [anon_sym_PERCENT_EQ] = ACTIONS(1237), - [anon_sym_CARET_EQ] = ACTIONS(1237), - [anon_sym_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), - [anon_sym_LT_LT_EQ] = ACTIONS(1237), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), - [anon_sym_GT_EQ] = ACTIONS(1211), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [aux_sym_comment_token1] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1241), - [sym__automatic_semicolon] = ACTIONS(1211), - [sym__ternary_qmark] = ACTIONS(1211), + [414] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1008), + [sym_expression] = STATE(1422), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1008), + [sym_subscript_expression] = STATE(1008), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1666), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(2784), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(414), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2839), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(792), + [anon_sym_void] = ACTIONS(792), + [anon_sym_delete] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(794), + [anon_sym_DASH_DASH] = ACTIONS(794), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(796), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(780), + [anon_sym_get] = ACTIONS(780), + [anon_sym_set] = ACTIONS(780), [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_string] = STATE(2554), - [sym_comment] = STATE(429), - [sym_formal_parameters] = STATE(2756), - [sym__property_name] = STATE(2223), - [sym_computed_property_name] = STATE(2554), - [aux_sym_object_repeat1] = STATE(2010), - [aux_sym_object_pattern_repeat1] = STATE(2113), - [sym_identifier] = ACTIONS(1283), - [anon_sym_export] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_let] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1304), - [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1222), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1222), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1310), + [415] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1198), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(415), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_number] = ACTIONS(1312), - [sym_private_property_identifier] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_get] = ACTIONS(1314), - [anon_sym_set] = ACTIONS(1314), - [sym__automatic_semicolon] = ACTIONS(1211), - [sym__ternary_qmark] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_namespace_export] = STATE(2584), - [sym_export_clause] = STATE(1914), - [sym_declaration] = STATE(2543), - [sym_variable_declaration] = STATE(2540), - [sym_lexical_declaration] = STATE(2540), - [sym_class_declaration] = STATE(2540), - [sym_function_declaration] = STATE(2540), - [sym_generator_function_declaration] = STATE(2540), - [sym_comment] = STATE(430), - [sym_decorator] = STATE(2051), - [aux_sym_export_statement_repeat1] = STATE(1990), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1318), + [416] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1199), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(416), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), + [sym_html_comment] = ACTIONS(5), + }, + [417] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1200), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(417), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), + [sym_html_comment] = ACTIONS(5), + }, + [418] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1204), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(418), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), + [sym_html_comment] = ACTIONS(5), + }, + [419] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1058), + [sym_expression] = STATE(1223), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1058), + [sym_subscript_expression] = STATE(1058), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1674), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2750), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(419), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2752), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(714), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(722), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(85), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), + [sym_html_comment] = ACTIONS(5), + }, + [420] = { + [sym_import] = STATE(1762), + [sym_parenthesized_expression] = STATE(1033), + [sym_expression] = STATE(1239), + [sym_primary_expression] = STATE(1121), + [sym_yield_expression] = STATE(1122), + [sym_object] = STATE(1099), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1099), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1122), + [sym_glimmer_opening_tag] = STATE(1944), + [sym_jsx_element] = STATE(1122), + [sym_jsx_opening_element] = STATE(1679), + [sym_jsx_self_closing_element] = STATE(1122), + [sym_class] = STATE(1099), + [sym_function_expression] = STATE(1099), + [sym_generator_function] = STATE(1099), + [sym_arrow_function] = STATE(1099), + [sym_call_expression] = STATE(1099), + [sym_new_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_member_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1122), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(1122), + [sym__destructuring_pattern] = STATE(1901), + [sym_ternary_expression] = STATE(1122), + [sym_binary_expression] = STATE(1122), + [sym_unary_expression] = STATE(1122), + [sym_update_expression] = STATE(1122), + [sym_string] = STATE(1099), + [sym_comment] = STATE(420), + [sym_template_string] = STATE(1099), + [sym_regex] = STATE(1099), + [sym_meta_property] = STATE(1099), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2781), + [aux_sym_export_statement_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(1197), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_SQUOTE] = ACTIONS(686), + [anon_sym_class] = ACTIONS(688), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_function] = ACTIONS(692), + [anon_sym_new] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(698), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(702), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(706), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_null] = ACTIONS(704), + [sym_undefined] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [421] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1206), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(421), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), + [sym_html_comment] = ACTIONS(5), + }, + [422] = { + [sym_import] = STATE(1819), + [sym_parenthesized_expression] = STATE(1056), + [sym_expression] = STATE(1212), + [sym_primary_expression] = STATE(1365), + [sym_yield_expression] = STATE(1376), + [sym_object] = STATE(1285), + [sym_object_pattern] = STATE(1760), + [sym_array] = STATE(1285), + [sym_array_pattern] = STATE(1760), + [sym_glimmer_template] = STATE(1376), + [sym_glimmer_opening_tag] = STATE(2009), + [sym_jsx_element] = STATE(1376), + [sym_jsx_opening_element] = STATE(1678), + [sym_jsx_self_closing_element] = STATE(1376), + [sym_class] = STATE(1285), + [sym_function_expression] = STATE(1285), + [sym_generator_function] = STATE(1285), + [sym_arrow_function] = STATE(1285), + [sym_call_expression] = STATE(1285), + [sym_new_expression] = STATE(1376), + [sym_await_expression] = STATE(1376), + [sym_member_expression] = STATE(1056), + [sym_subscript_expression] = STATE(1056), + [sym_assignment_expression] = STATE(1376), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(1376), + [sym__destructuring_pattern] = STATE(2823), + [sym_ternary_expression] = STATE(1376), + [sym_binary_expression] = STATE(1376), + [sym_unary_expression] = STATE(1376), + [sym_update_expression] = STATE(1376), + [sym_string] = STATE(1285), + [sym_comment] = STATE(422), + [sym_template_string] = STATE(1285), + [sym_regex] = STATE(1285), + [sym_meta_property] = STATE(1285), + [sym_decorator] = STATE(2178), + [sym_formal_parameters] = STATE(2822), + [aux_sym_export_statement_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [anon_sym_new] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(740), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_typeof] = ACTIONS(740), + [anon_sym_void] = ACTIONS(740), + [anon_sym_delete] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_DASH_DASH] = ACTIONS(744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(746), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(728), + [anon_sym_get] = ACTIONS(728), + [anon_sym_set] = ACTIONS(728), + [sym_html_comment] = ACTIONS(5), + }, + [423] = { + [sym_namespace_export] = STATE(2600), + [sym_export_clause] = STATE(1974), + [sym_declaration] = STATE(994), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_class_declaration] = STATE(946), + [sym_function_declaration] = STATE(946), + [sym_generator_function_declaration] = STATE(946), + [sym_comment] = STATE(423), + [sym_decorator] = STATE(2178), + [aux_sym_export_statement_repeat1] = STATE(1963), + [aux_sym_object_repeat1] = STATE(2131), + [aux_sym_object_pattern_repeat1] = STATE(2132), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_default] = ACTIONS(1207), [anon_sym_LBRACE] = ACTIONS(1209), [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_var] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_var] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1219), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_COLON] = ACTIONS(1324), - [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_COLON] = ACTIONS(1224), + [anon_sym_EQ] = ACTIONS(1227), [anon_sym_LBRACK] = ACTIONS(1211), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_class] = ACTIONS(1326), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_function] = ACTIONS(1330), + [anon_sym_class] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_function] = ACTIONS(1233), [anon_sym_EQ_GT] = ACTIONS(1235), [sym_optional_chain] = ACTIONS(1211), [anon_sym_PLUS_EQ] = ACTIONS(1237), @@ -54877,48 +54866,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_string] = STATE(2554), - [sym_comment] = STATE(431), - [sym_formal_parameters] = STATE(2756), - [sym__property_name] = STATE(2223), - [sym_computed_property_name] = STATE(2554), - [aux_sym_object_repeat1] = STATE(2010), - [aux_sym_object_pattern_repeat1] = STATE(2113), - [sym_identifier] = ACTIONS(1283), - [anon_sym_export] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1292), + [424] = { + [sym_namespace_export] = STATE(2600), + [sym_export_clause] = STATE(1974), + [sym_declaration] = STATE(994), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_class_declaration] = STATE(946), + [sym_function_declaration] = STATE(946), + [sym_generator_function_declaration] = STATE(946), + [sym_comment] = STATE(424), + [sym_decorator] = STATE(2178), + [aux_sym_export_statement_repeat1] = STATE(1963), + [aux_sym_object_repeat1] = STATE(2039), + [aux_sym_object_pattern_repeat1] = STATE(2132), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_var] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1219), [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1224), [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1211), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1304), - [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_class] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_function] = ACTIONS(1233), + [anon_sym_EQ_GT] = ACTIONS(1235), + [sym_optional_chain] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -54932,60 +54930,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(1222), [anon_sym_PERCENT] = ACTIONS(1222), [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1211), [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_number] = ACTIONS(1312), - [sym_private_property_identifier] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_get] = ACTIONS(1314), - [anon_sym_set] = ACTIONS(1314), + [anon_sym_instanceof] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [aux_sym_comment_token1] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1241), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_namespace_export] = STATE(2503), - [sym_export_clause] = STATE(1938), - [sym_declaration] = STATE(653), - [sym_variable_declaration] = STATE(654), - [sym_lexical_declaration] = STATE(654), - [sym_class_declaration] = STATE(654), - [sym_function_declaration] = STATE(654), - [sym_generator_function_declaration] = STATE(654), - [sym_comment] = STATE(432), - [sym_decorator] = STATE(2051), - [aux_sym_export_statement_repeat1] = STATE(2004), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1336), + [425] = { + [sym_namespace_export] = STATE(2600), + [sym_export_clause] = STATE(1974), + [sym_declaration] = STATE(994), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_class_declaration] = STATE(946), + [sym_function_declaration] = STATE(946), + [sym_generator_function_declaration] = STATE(946), + [sym_comment] = STATE(425), + [sym_decorator] = STATE(2178), + [aux_sym_export_statement_repeat1] = STATE(1963), + [aux_sym_object_repeat1] = STATE(2039), + [aux_sym_object_pattern_repeat1] = STATE(2132), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_default] = ACTIONS(1207), [anon_sym_LBRACE] = ACTIONS(1209), [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_var] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_var] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1219), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_COLON] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_COLON] = ACTIONS(1224), + [anon_sym_EQ] = ACTIONS(1227), [anon_sym_LBRACK] = ACTIONS(1211), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_class] = ACTIONS(1344), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(1348), + [anon_sym_class] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_function] = ACTIONS(1233), [anon_sym_EQ_GT] = ACTIONS(1235), [sym_optional_chain] = ACTIONS(1211), [anon_sym_PLUS_EQ] = ACTIONS(1237), @@ -55033,48 +55028,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_string] = STATE(2554), - [sym_comment] = STATE(433), - [sym_formal_parameters] = STATE(2756), - [sym__property_name] = STATE(2223), - [sym_computed_property_name] = STATE(2554), - [aux_sym_object_repeat1] = STATE(2114), - [aux_sym_object_pattern_repeat1] = STATE(2113), - [sym_identifier] = ACTIONS(1283), - [anon_sym_export] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1292), + [426] = { + [sym_namespace_export] = STATE(2629), + [sym_export_clause] = STATE(1951), + [sym_declaration] = STATE(2244), + [sym_variable_declaration] = STATE(2242), + [sym_lexical_declaration] = STATE(2242), + [sym_class_declaration] = STATE(2242), + [sym_function_declaration] = STATE(2242), + [sym_generator_function_declaration] = STATE(2242), + [sym_comment] = STATE(426), + [sym_decorator] = STATE(2178), + [aux_sym_export_statement_repeat1] = STATE(2026), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_var] = ACTIONS(1251), + [anon_sym_let] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1211), [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1255), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1211), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1304), - [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_class] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(1261), + [anon_sym_function] = ACTIONS(1263), + [anon_sym_EQ_GT] = ACTIONS(1235), + [sym_optional_chain] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55088,69 +55089,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(1222), [anon_sym_PERCENT] = ACTIONS(1222), [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1211), [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_number] = ACTIONS(1312), - [sym_private_property_identifier] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_get] = ACTIONS(1314), - [anon_sym_set] = ACTIONS(1314), - [sym__automatic_semicolon] = ACTIONS(1211), - [sym__ternary_qmark] = ACTIONS(1211), + [anon_sym_instanceof] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [aux_sym_comment_token1] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1241), + [sym__automatic_semicolon] = ACTIONS(1211), + [sym__ternary_qmark] = ACTIONS(1211), + [sym_html_comment] = ACTIONS(5), + }, + [427] = { + [sym_namespace_export] = STATE(2704), + [sym_export_clause] = STATE(1964), + [sym_declaration] = STATE(732), + [sym_variable_declaration] = STATE(734), + [sym_lexical_declaration] = STATE(734), + [sym_class_declaration] = STATE(734), + [sym_function_declaration] = STATE(734), + [sym_generator_function_declaration] = STATE(734), + [sym_comment] = STATE(427), + [sym_decorator] = STATE(2178), + [aux_sym_export_statement_repeat1] = STATE(1918), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_var] = ACTIONS(1269), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_class] = ACTIONS(1275), + [anon_sym_async] = ACTIONS(1277), + [anon_sym_function] = ACTIONS(1279), + [anon_sym_EQ_GT] = ACTIONS(1235), + [sym_optional_chain] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_STAR_STAR] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_instanceof] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [aux_sym_comment_token1] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1241), + [sym__automatic_semicolon] = ACTIONS(1211), + [sym__ternary_qmark] = ACTIONS(1211), + [sym_html_comment] = ACTIONS(5), + }, + [428] = { + [sym_namespace_export] = STATE(2574), + [sym_export_clause] = STATE(1969), + [sym_declaration] = STATE(541), + [sym_variable_declaration] = STATE(538), + [sym_lexical_declaration] = STATE(538), + [sym_class_declaration] = STATE(538), + [sym_function_declaration] = STATE(538), + [sym_generator_function_declaration] = STATE(538), + [sym_comment] = STATE(428), + [sym_decorator] = STATE(2178), + [aux_sym_export_statement_repeat1] = STATE(1959), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_var] = ACTIONS(1285), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_class] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1293), + [anon_sym_function] = ACTIONS(1295), + [anon_sym_EQ_GT] = ACTIONS(1235), + [sym_optional_chain] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_STAR_STAR] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_instanceof] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [aux_sym_comment_token1] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1241), + [sym__automatic_semicolon] = ACTIONS(1211), + [sym__ternary_qmark] = ACTIONS(1211), + [sym_html_comment] = ACTIONS(5), + }, + [429] = { + [sym_string] = STATE(2582), + [sym_comment] = STATE(429), + [sym_formal_parameters] = STATE(2852), + [sym__property_name] = STATE(2546), + [sym_computed_property_name] = STATE(2582), + [aux_sym_object_repeat1] = STATE(2131), + [aux_sym_object_pattern_repeat1] = STATE(2132), + [sym_identifier] = ACTIONS(1297), + [anon_sym_export] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_let] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_function] = ACTIONS(1320), + [anon_sym_EQ_GT] = ACTIONS(1322), + [sym_optional_chain] = ACTIONS(1222), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_STAR_STAR] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1222), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_instanceof] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym_number] = ACTIONS(1326), + [sym_private_property_identifier] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_get] = ACTIONS(1328), + [anon_sym_set] = ACTIONS(1328), + [sym__automatic_semicolon] = ACTIONS(1211), + [sym__ternary_qmark] = ACTIONS(1211), + [sym_html_comment] = ACTIONS(5), + }, + [430] = { + [sym_string] = STATE(2582), + [sym_comment] = STATE(430), + [sym_formal_parameters] = STATE(2852), + [sym__property_name] = STATE(2546), + [sym_computed_property_name] = STATE(2582), + [aux_sym_object_repeat1] = STATE(2039), + [aux_sym_object_pattern_repeat1] = STATE(2132), + [sym_identifier] = ACTIONS(1297), + [anon_sym_export] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_function] = ACTIONS(1320), + [anon_sym_EQ_GT] = ACTIONS(1322), + [sym_optional_chain] = ACTIONS(1222), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_STAR_STAR] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1222), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_instanceof] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym_number] = ACTIONS(1326), + [sym_private_property_identifier] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_get] = ACTIONS(1328), + [anon_sym_set] = ACTIONS(1328), + [sym__automatic_semicolon] = ACTIONS(1211), + [sym__ternary_qmark] = ACTIONS(1211), + [sym_html_comment] = ACTIONS(5), + }, + [431] = { + [sym_string] = STATE(2582), + [sym_comment] = STATE(431), + [sym_formal_parameters] = STATE(2852), + [sym__property_name] = STATE(2546), + [sym_computed_property_name] = STATE(2582), + [aux_sym_object_repeat1] = STATE(2039), + [aux_sym_object_pattern_repeat1] = STATE(2132), + [sym_identifier] = ACTIONS(1297), + [anon_sym_export] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_let] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1299), + [anon_sym_function] = ACTIONS(1320), + [anon_sym_EQ_GT] = ACTIONS(1322), + [sym_optional_chain] = ACTIONS(1222), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_STAR_STAR] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), + [anon_sym_GT_EQ] = ACTIONS(1222), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_instanceof] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym_number] = ACTIONS(1326), + [sym_private_property_identifier] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1299), + [anon_sym_get] = ACTIONS(1328), + [anon_sym_set] = ACTIONS(1328), + [sym__automatic_semicolon] = ACTIONS(1211), + [sym__ternary_qmark] = ACTIONS(1211), + [sym_html_comment] = ACTIONS(5), + }, + [432] = { + [sym_namespace_export] = STATE(2705), + [sym_export_clause] = STATE(1954), + [sym_declaration] = STATE(857), + [sym_variable_declaration] = STATE(849), + [sym_lexical_declaration] = STATE(849), + [sym_class_declaration] = STATE(849), + [sym_function_declaration] = STATE(849), + [sym_generator_function_declaration] = STATE(849), + [sym_comment] = STATE(432), + [sym_decorator] = STATE(2178), + [aux_sym_export_statement_repeat1] = STATE(1940), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_var] = ACTIONS(1338), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_class] = ACTIONS(1344), + [anon_sym_async] = ACTIONS(1346), + [anon_sym_function] = ACTIONS(1348), + [anon_sym_EQ_GT] = ACTIONS(1235), + [sym_optional_chain] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_STAR_STAR] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_instanceof] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [aux_sym_comment_token1] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1241), + [sym__automatic_semicolon] = ACTIONS(1211), + [sym__ternary_qmark] = ACTIONS(1211), + [sym_html_comment] = ACTIONS(5), + }, + [433] = { + [sym_namespace_export] = STATE(2600), + [sym_export_clause] = STATE(1974), + [sym_declaration] = STATE(994), + [sym_variable_declaration] = STATE(946), + [sym_lexical_declaration] = STATE(946), + [sym_class_declaration] = STATE(946), + [sym_function_declaration] = STATE(946), + [sym_generator_function_declaration] = STATE(946), + [sym_comment] = STATE(433), + [sym_decorator] = STATE(2178), + [aux_sym_export_statement_repeat1] = STATE(1963), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_var] = ACTIONS(1215), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_class] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_function] = ACTIONS(1233), + [anon_sym_EQ_GT] = ACTIONS(1235), + [sym_optional_chain] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1237), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1222), + [anon_sym_PIPE_PIPE] = ACTIONS(1222), + [anon_sym_GT_GT] = ACTIONS(1222), + [anon_sym_GT_GT_GT] = ACTIONS(1222), + [anon_sym_LT_LT] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_CARET] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_PLUS] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_SLASH] = ACTIONS(1222), + [anon_sym_PERCENT] = ACTIONS(1222), + [anon_sym_STAR_STAR] = ACTIONS(1222), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_QMARK_QMARK] = ACTIONS(1222), + [anon_sym_instanceof] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [aux_sym_comment_token1] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1241), + [sym__automatic_semicolon] = ACTIONS(1211), + [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, [434] = { - [sym_string] = STATE(2554), + [sym_string] = STATE(2582), [sym_comment] = STATE(434), - [sym__property_name] = STATE(2223), - [sym_computed_property_name] = STATE(2554), - [aux_sym_object_repeat1] = STATE(2114), - [aux_sym_object_pattern_repeat1] = STATE(2113), + [sym__property_name] = STATE(2546), + [sym_computed_property_name] = STATE(2582), + [aux_sym_object_repeat1] = STATE(2039), + [aux_sym_object_pattern_repeat1] = STATE(2132), [sym_identifier] = ACTIONS(1352), [anon_sym_export] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1301), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1330), [anon_sym_let] = ACTIONS(1352), [anon_sym_LPAREN] = ACTIONS(1354), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1310), [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), [anon_sym_async] = ACTIONS(1357), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55174,12 +55717,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1222), [anon_sym_PLUS_PLUS] = ACTIONS(1222), [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1310), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_number] = ACTIONS(1312), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_number] = ACTIONS(1326), + [sym_private_property_identifier] = ACTIONS(1326), [anon_sym_static] = ACTIONS(1352), [anon_sym_get] = ACTIONS(1359), [anon_sym_set] = ACTIONS(1359), @@ -55188,45 +55729,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [435] = { - [sym_string] = STATE(2554), + [sym_string] = STATE(2582), [sym_comment] = STATE(435), - [sym__property_name] = STATE(2223), - [sym_computed_property_name] = STATE(2554), - [aux_sym_object_repeat1] = STATE(2010), - [aux_sym_object_pattern_repeat1] = STATE(2113), + [sym__property_name] = STATE(2546), + [sym_computed_property_name] = STATE(2582), + [aux_sym_object_repeat1] = STATE(2039), + [aux_sym_object_pattern_repeat1] = STATE(2132), [sym_identifier] = ACTIONS(1352), [anon_sym_export] = ACTIONS(1352), [anon_sym_STAR] = ACTIONS(1222), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1332), [anon_sym_let] = ACTIONS(1352), [anon_sym_LPAREN] = ACTIONS(1354), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1310), [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), [anon_sym_async] = ACTIONS(1352), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55250,12 +55793,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1222), [anon_sym_PLUS_PLUS] = ACTIONS(1222), [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1310), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_number] = ACTIONS(1312), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_number] = ACTIONS(1326), + [sym_private_property_identifier] = ACTIONS(1326), [anon_sym_static] = ACTIONS(1352), [anon_sym_get] = ACTIONS(1352), [anon_sym_set] = ACTIONS(1352), @@ -55264,45 +55805,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [436] = { - [sym_string] = STATE(2554), + [sym_string] = STATE(2582), [sym_comment] = STATE(436), - [sym__property_name] = STATE(2223), - [sym_computed_property_name] = STATE(2554), - [aux_sym_object_repeat1] = STATE(2010), - [aux_sym_object_pattern_repeat1] = STATE(2113), + [sym__property_name] = STATE(2546), + [sym_computed_property_name] = STATE(2582), + [aux_sym_object_repeat1] = STATE(2039), + [aux_sym_object_pattern_repeat1] = STATE(2132), [sym_identifier] = ACTIONS(1352), [anon_sym_export] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1301), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1332), [anon_sym_let] = ACTIONS(1352), [anon_sym_LPAREN] = ACTIONS(1354), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1310), [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), [anon_sym_async] = ACTIONS(1357), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55326,12 +55869,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1222), [anon_sym_PLUS_PLUS] = ACTIONS(1222), [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1310), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_number] = ACTIONS(1312), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_number] = ACTIONS(1326), + [sym_private_property_identifier] = ACTIONS(1326), [anon_sym_static] = ACTIONS(1352), [anon_sym_get] = ACTIONS(1359), [anon_sym_set] = ACTIONS(1359), @@ -55340,45 +55881,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [437] = { - [sym_string] = STATE(2554), + [sym_string] = STATE(2582), [sym_comment] = STATE(437), - [sym__property_name] = STATE(2223), - [sym_computed_property_name] = STATE(2554), - [aux_sym_object_repeat1] = STATE(2114), - [aux_sym_object_pattern_repeat1] = STATE(2113), + [sym__property_name] = STATE(2546), + [sym_computed_property_name] = STATE(2582), + [aux_sym_object_repeat1] = STATE(2131), + [aux_sym_object_pattern_repeat1] = STATE(2132), [sym_identifier] = ACTIONS(1352), [anon_sym_export] = ACTIONS(1352), [anon_sym_STAR] = ACTIONS(1222), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1304), [anon_sym_let] = ACTIONS(1352), [anon_sym_LPAREN] = ACTIONS(1354), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1310), [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), [anon_sym_async] = ACTIONS(1352), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55402,12 +55945,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1222), [anon_sym_PLUS_PLUS] = ACTIONS(1222), [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1310), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_number] = ACTIONS(1312), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_number] = ACTIONS(1326), + [sym_private_property_identifier] = ACTIONS(1326), [anon_sym_static] = ACTIONS(1352), [anon_sym_get] = ACTIONS(1352), [anon_sym_set] = ACTIONS(1352), @@ -55416,45 +55957,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [438] = { - [sym_string] = STATE(2554), + [sym_string] = STATE(2582), [sym_comment] = STATE(438), - [sym__property_name] = STATE(2223), - [sym_computed_property_name] = STATE(2554), - [aux_sym_object_repeat1] = STATE(2010), - [aux_sym_object_pattern_repeat1] = STATE(2113), + [sym__property_name] = STATE(2546), + [sym_computed_property_name] = STATE(2582), + [aux_sym_object_repeat1] = STATE(2039), + [aux_sym_object_pattern_repeat1] = STATE(2132), [sym_identifier] = ACTIONS(1352), [anon_sym_export] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1222), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1330), [anon_sym_let] = ACTIONS(1352), [anon_sym_LPAREN] = ACTIONS(1354), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1310), [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1357), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1352), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55478,59 +56021,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1222), [anon_sym_PLUS_PLUS] = ACTIONS(1222), [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1310), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_number] = ACTIONS(1312), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_number] = ACTIONS(1326), + [sym_private_property_identifier] = ACTIONS(1326), [anon_sym_static] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1359), - [anon_sym_set] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, [439] = { - [sym_string] = STATE(2554), + [sym_string] = STATE(2582), [sym_comment] = STATE(439), - [sym__property_name] = STATE(2223), - [sym_computed_property_name] = STATE(2554), - [aux_sym_object_repeat1] = STATE(2010), - [aux_sym_object_pattern_repeat1] = STATE(2113), + [sym__property_name] = STATE(2546), + [sym_computed_property_name] = STATE(2582), + [aux_sym_object_repeat1] = STATE(2131), + [aux_sym_object_pattern_repeat1] = STATE(2132), [sym_identifier] = ACTIONS(1352), [anon_sym_export] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1301), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1304), [anon_sym_let] = ACTIONS(1352), [anon_sym_LPAREN] = ACTIONS(1354), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1310), [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1357), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55554,22 +56097,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1222), [anon_sym_PLUS_PLUS] = ACTIONS(1222), [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1310), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [sym_number] = ACTIONS(1312), - [sym_private_property_identifier] = ACTIONS(1312), + [sym_number] = ACTIONS(1326), + [sym_private_property_identifier] = ACTIONS(1326), [anon_sym_static] = ACTIONS(1352), - [anon_sym_get] = ACTIONS(1352), - [anon_sym_set] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1359), + [anon_sym_set] = ACTIONS(1359), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, [440] = { [sym_comment] = STATE(440), - [sym_formal_parameters] = STATE(2768), + [sym_formal_parameters] = STATE(2797), [sym_identifier] = ACTIONS(1361), [anon_sym_export] = ACTIONS(1363), [anon_sym_STAR] = ACTIONS(1222), @@ -55590,21 +56131,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(1370), [anon_sym_EQ_GT] = ACTIONS(1372), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55638,7 +56179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [441] = { [sym_comment] = STATE(441), - [sym_formal_parameters] = STATE(2768), + [sym_formal_parameters] = STATE(2797), [sym_identifier] = ACTIONS(1361), [anon_sym_export] = ACTIONS(1363), [anon_sym_STAR] = ACTIONS(1222), @@ -55659,21 +56200,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(1370), [anon_sym_EQ_GT] = ACTIONS(1372), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55707,40 +56248,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [442] = { [sym_comment] = STATE(442), - [sym_formal_parameters] = STATE(2742), + [sym_formal_parameters] = STATE(2852), [sym_identifier] = ACTIONS(1376), [anon_sym_export] = ACTIONS(1378), [anon_sym_STAR] = ACTIONS(1222), [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), [anon_sym_let] = ACTIONS(1378), [anon_sym_LPAREN] = ACTIONS(1365), [anon_sym_in] = ACTIONS(1222), - [anon_sym_of] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1374), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_LBRACK] = ACTIONS(1222), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(1380), - [anon_sym_EQ_GT] = ACTIONS(1382), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55774,41 +56315,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [443] = { + [sym_variable_declarator] = STATE(1914), + [sym_object_pattern] = STATE(1773), + [sym_array_pattern] = STATE(1773), + [sym__destructuring_pattern] = STATE(1890), [sym_comment] = STATE(443), - [sym_formal_parameters] = STATE(2756), - [sym_identifier] = ACTIONS(1384), - [anon_sym_export] = ACTIONS(1386), + [aux_sym_object_repeat1] = STATE(2131), + [aux_sym_object_pattern_repeat1] = STATE(2132), + [sym_identifier] = ACTIONS(1382), [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1384), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1354), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1386), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1390), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55834,49 +56378,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, [444] = { [sym_comment] = STATE(444), - [sym_formal_parameters] = STATE(2756), - [sym_identifier] = ACTIONS(1384), - [anon_sym_export] = ACTIONS(1386), + [sym_formal_parameters] = STATE(2852), + [sym_identifier] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1378), [anon_sym_STAR] = ACTIONS(1222), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1378), [anon_sym_LPAREN] = ACTIONS(1365), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1392), - [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1368), [anon_sym_LBRACK] = ACTIONS(1222), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(1380), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55902,49 +56443,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_get] = ACTIONS(1378), + [anon_sym_set] = ACTIONS(1378), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, [445] = { [sym_comment] = STATE(445), - [sym_formal_parameters] = STATE(2756), - [sym_identifier] = ACTIONS(1384), - [anon_sym_export] = ACTIONS(1386), + [sym_formal_parameters] = STATE(2810), + [sym_identifier] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1390), [anon_sym_STAR] = ACTIONS(1222), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1390), [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_of] = ACTIONS(1397), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_of] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1368), [anon_sym_LBRACK] = ACTIONS(1222), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1390), [anon_sym_function] = ACTIONS(1380), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_EQ_GT] = ACTIONS(1392), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -55970,50 +56511,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_get] = ACTIONS(1390), + [anon_sym_set] = ACTIONS(1390), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, [446] = { + [sym_catch_clause] = STATE(469), + [sym_finally_clause] = STATE(584), [sym_comment] = STATE(446), - [sym_formal_parameters] = STATE(2768), - [sym_identifier] = ACTIONS(1361), - [anon_sym_export] = ACTIONS(1363), + [sym_identifier] = ACTIONS(1394), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_import] = ACTIONS(1394), + [anon_sym_with] = ACTIONS(1394), + [anon_sym_var] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_debugger] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_throw] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_catch] = ACTIONS(1396), + [anon_sym_finally] = ACTIONS(1398), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LTtemplate_GT] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_class] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_typeof] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1394), + [anon_sym_delete] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1394), + [sym_number] = ACTIONS(1394), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(1394), + [sym_super] = ACTIONS(1394), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [sym_null] = ACTIONS(1394), + [sym_undefined] = ACTIONS(1394), + [anon_sym_AT] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [447] = { + [sym_comment] = STATE(447), + [sym_formal_parameters] = STATE(2852), + [sym_identifier] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1378), [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1363), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1378), [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1402), + [anon_sym_in] = ACTIONS(1400), + [anon_sym_of] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_RBRACK] = ACTIONS(1399), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1372), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(1380), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56039,51 +56647,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(1363), - [anon_sym_set] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_get] = ACTIONS(1378), + [anon_sym_set] = ACTIONS(1378), + [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_variable_declarator] = STATE(1959), - [sym_object_pattern] = STATE(1776), - [sym_array_pattern] = STATE(1776), - [sym__destructuring_pattern] = STATE(1818), - [sym_comment] = STATE(447), - [aux_sym_object_repeat1] = STATE(2010), - [aux_sym_object_pattern_repeat1] = STATE(2113), - [sym_identifier] = ACTIONS(1405), + [448] = { + [sym_variable_declarator] = STATE(1914), + [sym_object_pattern] = STATE(1773), + [sym_array_pattern] = STATE(1773), + [sym__destructuring_pattern] = STATE(1890), + [sym_comment] = STATE(448), + [aux_sym_object_repeat1] = STATE(2039), + [aux_sym_object_pattern_repeat1] = STATE(2132), + [sym_identifier] = ACTIONS(1382), [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1384), [anon_sym_COMMA] = ACTIONS(1222), [anon_sym_RBRACE] = ACTIONS(1332), [anon_sym_LPAREN] = ACTIONS(1354), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1310), [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1386), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56113,42 +56722,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_comment] = STATE(448), - [sym_formal_parameters] = STATE(2756), - [sym_identifier] = ACTIONS(1384), - [anon_sym_export] = ACTIONS(1386), + [449] = { + [sym_comment] = STATE(449), + [sym_formal_parameters] = STATE(2833), + [sym_identifier] = ACTIONS(1405), + [anon_sym_export] = ACTIONS(1407), [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1407), [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1409), [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1374), + [anon_sym_EQ] = ACTIONS(1368), [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_RBRACK] = ACTIONS(1409), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1380), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(1370), + [anon_sym_EQ_GT] = ACTIONS(1411), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56174,50 +56784,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), - [sym__automatic_semicolon] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(1407), + [anon_sym_set] = ACTIONS(1407), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_comment] = STATE(449), - [sym_formal_parameters] = STATE(2780), - [sym_identifier] = ACTIONS(1411), - [anon_sym_export] = ACTIONS(1413), + [450] = { + [sym_comment] = STATE(450), + [sym_formal_parameters] = STATE(2833), + [sym_identifier] = ACTIONS(1405), + [anon_sym_export] = ACTIONS(1407), [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_let] = ACTIONS(1413), + [anon_sym_COMMA] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1407), [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1413), [anon_sym_in] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1415), [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_RBRACK] = ACTIONS(1415), + [anon_sym_RBRACK] = ACTIONS(1413), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1413), + [anon_sym_async] = ACTIONS(1407), [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1420), + [anon_sym_EQ_GT] = ACTIONS(1411), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56243,48 +56852,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_get] = ACTIONS(1413), - [anon_sym_set] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(1407), + [anon_sym_set] = ACTIONS(1407), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_comment] = STATE(450), - [sym_formal_parameters] = STATE(2756), - [sym_identifier] = ACTIONS(1384), - [anon_sym_export] = ACTIONS(1386), + [451] = { + [sym_comment] = STATE(451), + [sym_formal_parameters] = STATE(2852), + [sym_identifier] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1378), [anon_sym_STAR] = ACTIONS(1222), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1378), [anon_sym_LPAREN] = ACTIONS(1365), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_COLON] = ACTIONS(1418), [anon_sym_EQ] = ACTIONS(1257), [anon_sym_LBRACK] = ACTIONS(1222), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1424), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(1420), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56310,50 +56919,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_get] = ACTIONS(1378), + [anon_sym_set] = ACTIONS(1378), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_comment] = STATE(451), - [sym_formal_parameters] = STATE(2780), - [sym_identifier] = ACTIONS(1411), - [anon_sym_export] = ACTIONS(1413), + [452] = { + [sym_comment] = STATE(452), + [sym_formal_parameters] = STATE(2852), + [sym_identifier] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1378), [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1413), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1378), [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1426), [anon_sym_in] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1422), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_RBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1413), - [anon_sym_function] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1420), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(1424), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56379,48 +56987,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_get] = ACTIONS(1413), - [anon_sym_set] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_get] = ACTIONS(1378), + [anon_sym_set] = ACTIONS(1378), + [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_comment] = STATE(452), - [sym_formal_parameters] = STATE(2756), - [sym_identifier] = ACTIONS(1384), - [anon_sym_export] = ACTIONS(1386), + [453] = { + [sym_variable_declarator] = STATE(1914), + [sym_object_pattern] = STATE(1773), + [sym_array_pattern] = STATE(1773), + [sym__destructuring_pattern] = STATE(1890), + [sym_comment] = STATE(453), + [aux_sym_object_repeat1] = STATE(2039), + [aux_sym_object_pattern_repeat1] = STATE(2132), + [sym_identifier] = ACTIONS(1382), [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1384), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1354), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1386), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1430), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56446,16 +57058,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_comment] = STATE(453), - [sym_formal_parameters] = STATE(2742), + [454] = { + [sym_comment] = STATE(454), + [sym_formal_parameters] = STATE(2852), [sym_identifier] = ACTIONS(1376), [anon_sym_export] = ACTIONS(1378), [anon_sym_STAR] = ACTIONS(1222), @@ -56463,32 +57072,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(1378), [anon_sym_LPAREN] = ACTIONS(1365), [anon_sym_in] = ACTIONS(1222), - [anon_sym_of] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1257), [anon_sym_LBRACK] = ACTIONS(1222), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), [anon_sym_async] = ACTIONS(1378), - [anon_sym_function] = ACTIONS(1380), - [anon_sym_EQ_GT] = ACTIONS(1382), + [anon_sym_function] = ACTIONS(1320), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56521,42 +57130,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_comment] = STATE(454), - [sym_formal_parameters] = STATE(2756), - [sym_identifier] = ACTIONS(1384), - [anon_sym_export] = ACTIONS(1386), + [455] = { + [sym_comment] = STATE(455), + [sym_formal_parameters] = STATE(2810), + [sym_identifier] = ACTIONS(1388), + [anon_sym_export] = ACTIONS(1390), [anon_sym_STAR] = ACTIONS(1222), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1390), [anon_sym_LPAREN] = ACTIONS(1365), [anon_sym_in] = ACTIONS(1222), + [anon_sym_of] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1428), [anon_sym_LBRACK] = ACTIONS(1222), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1436), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_function] = ACTIONS(1380), + [anon_sym_EQ_GT] = ACTIONS(1392), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56582,49 +57191,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_get] = ACTIONS(1390), + [anon_sym_set] = ACTIONS(1390), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_comment] = STATE(455), - [sym_formal_parameters] = STATE(2756), - [sym_identifier] = ACTIONS(1384), - [anon_sym_export] = ACTIONS(1386), + [456] = { + [sym_comment] = STATE(456), + [sym_formal_parameters] = STATE(2852), + [sym_identifier] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1378), [anon_sym_STAR] = ACTIONS(1222), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1378), [anon_sym_LPAREN] = ACTIONS(1365), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1430), [anon_sym_EQ] = ACTIONS(1257), [anon_sym_LBRACK] = ACTIONS(1222), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(1380), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(1432), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56650,120 +57259,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1386), - [anon_sym_set] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_get] = ACTIONS(1378), + [anon_sym_set] = ACTIONS(1378), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_catch_clause] = STATE(477), - [sym_finally_clause] = STATE(571), - [sym_comment] = STATE(456), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [anon_sym_let] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_await] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_with] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_debugger] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_catch] = ACTIONS(1440), - [anon_sym_finally] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_LTtemplate_GT] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_typeof] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1438), - [anon_sym_delete] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_number] = ACTIONS(1438), - [sym_private_property_identifier] = ACTIONS(1438), - [sym_this] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_null] = ACTIONS(1438), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [sym_html_comment] = ACTIONS(5), - }, [457] = { - [sym_variable_declarator] = STATE(1959), - [sym_object_pattern] = STATE(1776), - [sym_array_pattern] = STATE(1776), - [sym__destructuring_pattern] = STATE(1818), [sym_comment] = STATE(457), - [aux_sym_object_repeat1] = STATE(2010), - [aux_sym_object_pattern_repeat1] = STATE(2113), - [sym_identifier] = ACTIONS(1405), + [sym_formal_parameters] = STATE(2852), + [sym_identifier] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1378), [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1407), [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1365), [anon_sym_in] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_COLON] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1222), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(1436), + [anon_sym_EQ_GT] = ACTIONS(1322), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56789,49 +57327,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_get] = ACTIONS(1378), + [anon_sym_set] = ACTIONS(1378), [sym__automatic_semicolon] = ACTIONS(1211), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, [458] = { - [sym_variable_declarator] = STATE(1959), - [sym_object_pattern] = STATE(1776), - [sym_array_pattern] = STATE(1776), - [sym__destructuring_pattern] = STATE(1818), [sym_comment] = STATE(458), - [aux_sym_object_repeat1] = STATE(2114), - [aux_sym_object_pattern_repeat1] = STATE(2113), - [sym_identifier] = ACTIONS(1405), + [sym_formal_parameters] = STATE(2797), + [sym_identifier] = ACTIONS(1361), + [anon_sym_export] = ACTIONS(1363), [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1438), [anon_sym_in] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_RBRACK] = ACTIONS(1438), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_EQ_GT] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1363), + [anon_sym_function] = ACTIONS(1370), + [anon_sym_EQ_GT] = ACTIONS(1372), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56857,91 +57396,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1222), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1222), - [sym__automatic_semicolon] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_get] = ACTIONS(1363), + [anon_sym_set] = ACTIONS(1363), [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, [459] = { - [sym_catch_clause] = STATE(481), - [sym_finally_clause] = STATE(757), [sym_comment] = STATE(459), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [anon_sym_let] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_await] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_with] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_debugger] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_finally] = ACTIONS(1446), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_LTtemplate_GT] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_typeof] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1438), - [anon_sym_delete] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_import] = ACTIONS(848), + [anon_sym_with] = ACTIONS(848), + [anon_sym_var] = ACTIONS(848), + [anon_sym_let] = ACTIONS(848), + [anon_sym_const] = ACTIONS(848), + [anon_sym_else] = ACTIONS(848), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_await] = ACTIONS(848), + [anon_sym_while] = ACTIONS(848), + [anon_sym_do] = ACTIONS(848), + [anon_sym_try] = ACTIONS(848), + [anon_sym_break] = ACTIONS(848), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_debugger] = ACTIONS(848), + [anon_sym_return] = ACTIONS(848), + [anon_sym_throw] = ACTIONS(848), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_case] = ACTIONS(848), + [anon_sym_catch] = ACTIONS(848), + [anon_sym_finally] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LTtemplate_GT] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_class] = ACTIONS(848), + [anon_sym_async] = ACTIONS(848), + [anon_sym_function] = ACTIONS(848), + [anon_sym_new] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_SLASH] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_typeof] = ACTIONS(848), + [anon_sym_void] = ACTIONS(848), + [anon_sym_delete] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_number] = ACTIONS(1438), - [sym_private_property_identifier] = ACTIONS(1438), - [sym_this] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_null] = ACTIONS(1438), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_number] = ACTIONS(848), + [sym_private_property_identifier] = ACTIONS(848), + [sym_this] = ACTIONS(848), + [sym_super] = ACTIONS(848), + [sym_true] = ACTIONS(848), + [sym_false] = ACTIONS(848), + [sym_null] = ACTIONS(848), + [sym_undefined] = ACTIONS(848), + [anon_sym_AT] = ACTIONS(848), + [anon_sym_static] = ACTIONS(848), + [anon_sym_get] = ACTIONS(848), + [anon_sym_set] = ACTIONS(848), + [sym__automatic_semicolon] = ACTIONS(1444), [sym_html_comment] = ACTIONS(5), }, [460] = { + [sym_catch_clause] = STATE(506), + [sym_finally_clause] = STATE(680), [sym_comment] = STATE(460), - [sym_formal_parameters] = STATE(2768), + [sym_identifier] = ACTIONS(1394), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_import] = ACTIONS(1394), + [anon_sym_with] = ACTIONS(1394), + [anon_sym_var] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_debugger] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_throw] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_catch] = ACTIONS(1446), + [anon_sym_finally] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LTtemplate_GT] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_class] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_typeof] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1394), + [anon_sym_delete] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1394), + [sym_number] = ACTIONS(1394), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(1394), + [sym_super] = ACTIONS(1394), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [sym_null] = ACTIONS(1394), + [sym_undefined] = ACTIONS(1394), + [anon_sym_AT] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [461] = { + [sym_catch_clause] = STATE(503), + [sym_finally_clause] = STATE(831), + [sym_comment] = STATE(461), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1394), + [anon_sym_export] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_import] = ACTIONS(1394), + [anon_sym_with] = ACTIONS(1394), + [anon_sym_var] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_debugger] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_throw] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_catch] = ACTIONS(1452), + [anon_sym_finally] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LTtemplate_GT] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_class] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_function] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_typeof] = ACTIONS(1394), + [anon_sym_void] = ACTIONS(1394), + [anon_sym_delete] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1394), + [sym_number] = ACTIONS(1394), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(1394), + [sym_super] = ACTIONS(1394), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [sym_null] = ACTIONS(1394), + [sym_undefined] = ACTIONS(1394), + [anon_sym_AT] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_get] = ACTIONS(1394), + [anon_sym_set] = ACTIONS(1394), + [sym_html_comment] = ACTIONS(5), + }, + [462] = { + [sym_comment] = STATE(462), + [sym_identifier] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [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(901), + [anon_sym_await] = ACTIONS(901), + [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_SEMI] = ACTIONS(901), + [anon_sym_case] = ACTIONS(901), + [anon_sym_catch] = ACTIONS(901), + [anon_sym_finally] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LTtemplate_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_class] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(901), + [anon_sym_new] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(901), + [sym_number] = ACTIONS(901), + [sym_private_property_identifier] = ACTIONS(901), + [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(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_get] = ACTIONS(901), + [anon_sym_set] = ACTIONS(901), + [sym__automatic_semicolon] = ACTIONS(1456), + [sym_html_comment] = ACTIONS(5), + }, + [463] = { + [sym_comment] = STATE(463), + [sym_formal_parameters] = STATE(2797), [sym_identifier] = ACTIONS(1361), [anon_sym_export] = ACTIONS(1363), [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), [anon_sym_let] = ACTIONS(1363), [anon_sym_LPAREN] = ACTIONS(1365), [anon_sym_in] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_RBRACK] = ACTIONS(1448), + [anon_sym_RBRACK] = ACTIONS(1458), [anon_sym_LT] = ACTIONS(1222), [anon_sym_GT] = ACTIONS(1222), [anon_sym_DOT] = ACTIONS(1222), @@ -56949,21 +57691,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(1370), [anon_sym_EQ_GT] = ACTIONS(1372), [sym_optional_chain] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1306), - [anon_sym_DASH_EQ] = ACTIONS(1306), - [anon_sym_STAR_EQ] = ACTIONS(1306), - [anon_sym_SLASH_EQ] = ACTIONS(1306), - [anon_sym_PERCENT_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1306), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1324), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1324), [anon_sym_AMP_AMP] = ACTIONS(1222), [anon_sym_PIPE_PIPE] = ACTIONS(1222), [anon_sym_GT_GT] = ACTIONS(1222), @@ -56995,226 +57737,1276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1211), [sym_html_comment] = ACTIONS(5), }, - [461] = { - [sym_catch_clause] = STATE(510), - [sym_finally_clause] = STATE(802), - [sym_comment] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(1451), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [anon_sym_let] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_await] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_with] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_debugger] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_catch] = ACTIONS(1453), - [anon_sym_finally] = ACTIONS(1455), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_LTtemplate_GT] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_typeof] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1438), - [anon_sym_delete] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_number] = ACTIONS(1438), - [sym_private_property_identifier] = ACTIONS(1438), - [sym_this] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_null] = ACTIONS(1438), - [sym_undefined] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_get] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [sym_html_comment] = ACTIONS(5), - }, - [462] = { - [sym_comment] = STATE(462), - [sym_identifier] = ACTIONS(874), - [anon_sym_export] = ACTIONS(874), - [anon_sym_default] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_import] = ACTIONS(874), - [anon_sym_var] = ACTIONS(874), - [anon_sym_let] = ACTIONS(874), - [anon_sym_const] = ACTIONS(874), - [anon_sym_else] = ACTIONS(874), - [anon_sym_if] = ACTIONS(874), - [anon_sym_switch] = ACTIONS(874), - [anon_sym_for] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(874), - [anon_sym_while] = ACTIONS(874), - [anon_sym_do] = ACTIONS(874), - [anon_sym_try] = ACTIONS(874), - [anon_sym_with] = ACTIONS(874), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(874), - [anon_sym_return] = ACTIONS(874), - [anon_sym_throw] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_case] = ACTIONS(874), - [anon_sym_catch] = ACTIONS(874), - [anon_sym_finally] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_LTtemplate_GT] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_class] = ACTIONS(874), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_TILDE] = ACTIONS(874), - [anon_sym_typeof] = ACTIONS(874), - [anon_sym_void] = ACTIONS(874), - [anon_sym_delete] = ACTIONS(874), - [anon_sym_PLUS_PLUS] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(874), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(874), - [sym_number] = ACTIONS(874), - [sym_private_property_identifier] = ACTIONS(874), - [sym_this] = ACTIONS(874), - [sym_super] = ACTIONS(874), - [sym_true] = ACTIONS(874), - [sym_false] = ACTIONS(874), - [sym_null] = ACTIONS(874), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_static] = ACTIONS(874), - [anon_sym_get] = ACTIONS(874), - [anon_sym_set] = ACTIONS(874), - [sym__automatic_semicolon] = ACTIONS(1457), - [sym_html_comment] = ACTIONS(5), - }, - [463] = { - [sym_comment] = STATE(463), - [sym_identifier] = ACTIONS(864), - [anon_sym_export] = ACTIONS(864), - [anon_sym_default] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_import] = ACTIONS(864), - [anon_sym_var] = ACTIONS(864), - [anon_sym_let] = ACTIONS(864), - [anon_sym_const] = ACTIONS(864), - [anon_sym_else] = ACTIONS(864), - [anon_sym_if] = ACTIONS(864), - [anon_sym_switch] = ACTIONS(864), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(864), - [anon_sym_await] = ACTIONS(864), - [anon_sym_while] = ACTIONS(864), - [anon_sym_do] = ACTIONS(864), - [anon_sym_try] = ACTIONS(864), - [anon_sym_with] = ACTIONS(864), - [anon_sym_break] = ACTIONS(864), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_case] = ACTIONS(864), - [anon_sym_catch] = ACTIONS(864), - [anon_sym_finally] = ACTIONS(864), - [anon_sym_yield] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_LTtemplate_GT] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_class] = ACTIONS(864), - [anon_sym_async] = ACTIONS(864), - [anon_sym_function] = ACTIONS(864), - [anon_sym_new] = ACTIONS(864), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(864), - [anon_sym_DASH_DASH] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(864), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(864), - [sym_number] = ACTIONS(864), - [sym_private_property_identifier] = ACTIONS(864), - [sym_this] = ACTIONS(864), - [sym_super] = ACTIONS(864), - [sym_true] = ACTIONS(864), - [sym_false] = ACTIONS(864), - [sym_null] = ACTIONS(864), - [sym_undefined] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_static] = ACTIONS(864), - [anon_sym_get] = ACTIONS(864), - [anon_sym_set] = ACTIONS(864), - [sym__automatic_semicolon] = ACTIONS(1459), - [sym_html_comment] = ACTIONS(5), - }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 6, + [0] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1320), 1, + anon_sym_function, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1365), 1, + anon_sym_LPAREN, + ACTIONS(1376), 1, + sym_identifier, + STATE(464), 1, + sym_comment, + STATE(2852), 1, + sym_formal_parameters, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(1378), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [91] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1461), 1, + sym__automatic_semicolon, + STATE(465), 1, + sym_comment, + ACTIONS(848), 60, + anon_sym_export, + anon_sym_default, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [166] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1365), 1, + anon_sym_LPAREN, + ACTIONS(1376), 1, + sym_identifier, + ACTIONS(1436), 1, + anon_sym_function, + STATE(466), 1, + sym_comment, + STATE(2852), 1, + sym_formal_parameters, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(1378), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [257] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(467), 1, + sym_comment, + ACTIONS(901), 61, + anon_sym_export, + anon_sym_default, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [330] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1450), 1, + ts_builtin_sym_end, + ACTIONS(1463), 1, + anon_sym_catch, + ACTIONS(1465), 1, + anon_sym_finally, + STATE(468), 1, + sym_comment, + STATE(617), 1, + sym_catch_clause, + STATE(954), 1, + sym_finally_clause, + ACTIONS(1394), 56, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [413] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1398), 1, + anon_sym_finally, + STATE(469), 1, + sym_comment, + STATE(625), 1, + sym_finally_clause, + ACTIONS(1467), 59, + anon_sym_export, + anon_sym_default, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_case, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [490] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1469), 1, + sym__automatic_semicolon, + STATE(470), 1, + sym_comment, + ACTIONS(848), 60, + anon_sym_export, + anon_sym_default, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_case, + anon_sym_finally, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [565] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1365), 1, + anon_sym_LPAREN, + ACTIONS(1376), 1, + sym_identifier, + ACTIONS(1420), 1, + anon_sym_function, + STATE(471), 1, + sym_comment, + STATE(2852), 1, + sym_formal_parameters, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(1378), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [656] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1471), 1, + sym__automatic_semicolon, + STATE(472), 1, + sym_comment, + ACTIONS(901), 60, + anon_sym_export, + anon_sym_default, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_case, + anon_sym_finally, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [731] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(905), 1, + ts_builtin_sym_end, + ACTIONS(1473), 1, + sym__automatic_semicolon, + STATE(473), 1, + sym_comment, + ACTIONS(848), 59, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_catch, + anon_sym_finally, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [808] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1475), 1, + sym__automatic_semicolon, + STATE(474), 1, + sym_comment, + ACTIONS(901), 60, + anon_sym_export, + anon_sym_default, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [883] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(475), 1, + sym_comment, + ACTIONS(897), 61, + anon_sym_export, + anon_sym_default, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [956] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1365), 1, + anon_sym_LPAREN, + ACTIONS(1376), 1, + sym_identifier, + ACTIONS(1424), 1, + anon_sym_function, + STATE(476), 1, + sym_comment, + STATE(2852), 1, + sym_formal_parameters, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(1378), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [1047] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1211), 1, + sym__ternary_qmark, + ACTIONS(1361), 1, + sym_identifier, + ACTIONS(1365), 1, + anon_sym_LPAREN, + ACTIONS(1370), 1, + anon_sym_function, + ACTIONS(1372), 1, + anon_sym_EQ_GT, + ACTIONS(1413), 1, + anon_sym_COMMA, + ACTIONS(1438), 1, + anon_sym_RBRACK, + ACTIONS(1441), 1, + anon_sym_EQ, + STATE(477), 1, + sym_comment, + STATE(2797), 1, + sym_formal_parameters, + ACTIONS(1363), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 31, + anon_sym_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [1142] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(903), 1, + ts_builtin_sym_end, + ACTIONS(1477), 1, + sym__automatic_semicolon, + STATE(478), 1, + sym_comment, + ACTIONS(901), 59, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_catch, + anon_sym_finally, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [1219] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1211), 1, + sym__ternary_qmark, + ACTIONS(1365), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_EQ, + ACTIONS(1370), 1, + anon_sym_function, + ACTIONS(1405), 1, + sym_identifier, + ACTIONS(1411), 1, + anon_sym_EQ_GT, + STATE(479), 1, + sym_comment, + STATE(2833), 1, + sym_formal_parameters, + ACTIONS(1407), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 33, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [1310] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - ACTIONS(1461), 1, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1365), 1, + anon_sym_LPAREN, + ACTIONS(1376), 1, + sym_identifier, + ACTIONS(1432), 1, + anon_sym_function, + STATE(480), 1, + sym_comment, + STATE(2852), 1, + sym_formal_parameters, + ACTIONS(1211), 2, sym__automatic_semicolon, - STATE(464), 1, + sym__ternary_qmark, + ACTIONS(1378), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [1401] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(481), 1, sym_comment, - ACTIONS(874), 59, + ACTIONS(1479), 60, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -57227,19 +59019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_catch, + anon_sym_case, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -57254,8 +59047,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [1473] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1211), 1, + sym__ternary_qmark, + ACTIONS(1365), 1, + anon_sym_LPAREN, + ACTIONS(1370), 1, + anon_sym_function, + ACTIONS(1481), 1, + sym_identifier, + ACTIONS(1485), 1, + anon_sym_EQ, + ACTIONS(1487), 1, + anon_sym_EQ_GT, + STATE(482), 1, + sym_comment, + STATE(2777), 1, + sym_formal_parameters, + ACTIONS(1483), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [1563] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + ACTIONS(1400), 1, + anon_sym_in, + ACTIONS(1403), 1, + anon_sym_of, + ACTIONS(1489), 1, + sym_identifier, + STATE(483), 1, + sym_comment, + STATE(1756), 1, + sym__destructuring_pattern, + STATE(1980), 1, + sym_variable_declarator, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [1659] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1493), 1, + anon_sym_else, + STATE(484), 1, + sym_comment, + STATE(600), 1, + sym_else_clause, + ACTIONS(1491), 58, + anon_sym_export, + anon_sym_default, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_case, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -57270,22 +59288,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [77] = 6, + [1735] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(932), 1, - ts_builtin_sym_end, - ACTIONS(1463), 1, + ACTIONS(993), 1, sym__automatic_semicolon, - STATE(465), 1, + STATE(485), 1, sym_comment, - ACTIONS(864), 59, + ACTIONS(989), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -57298,19 +59316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_catch, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -57325,8 +59343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -57341,102 +59357,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [154] = 13, + [1809] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1302), 1, - anon_sym_function, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1384), 1, - sym_identifier, - STATE(466), 1, + STATE(486), 1, sym_comment, - STATE(2756), 1, - sym_formal_parameters, - ACTIONS(1211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1386), 6, + ACTIONS(1495), 60, anon_sym_export, + anon_sym_default, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_case, + anon_sym_finally, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 32, - anon_sym_STAR, - anon_sym_in, + [1881] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(903), 1, + ts_builtin_sym_end, + STATE(487), 1, + sym_comment, + ACTIONS(901), 59, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_catch, + anon_sym_finally, + anon_sym_yield, anon_sym_LBRACK, + anon_sym_LTtemplate_GT, anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, 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_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [245] = 5, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [1955] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1465), 1, + ACTIONS(937), 1, sym__automatic_semicolon, - STATE(467), 1, + STATE(488), 1, sym_comment, - ACTIONS(874), 60, + ACTIONS(933), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -57445,7 +59522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -57453,12 +59529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_catch, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -57473,8 +59549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -57489,21 +59563,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [320] = 5, + [2029] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1467), 1, + ACTIONS(945), 1, sym__automatic_semicolon, - STATE(468), 1, + STATE(489), 1, sym_comment, - ACTIONS(864), 60, + ACTIONS(941), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -57516,7 +59591,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -57524,11 +59598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -57543,8 +59618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -57559,97 +59632,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [395] = 13, + [2103] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1384), 1, - sym_identifier, - ACTIONS(1390), 1, - anon_sym_function, - STATE(469), 1, - sym_comment, - STATE(2756), 1, - sym_formal_parameters, - ACTIONS(1211), 2, + ACTIONS(953), 1, sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1386), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 32, - anon_sym_STAR, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [486] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(470), 1, + STATE(490), 1, sym_comment, - ACTIONS(939), 61, + ACTIONS(949), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -57662,7 +59660,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -57670,12 +59667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_catch, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -57690,8 +59687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -57706,99 +59701,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [559] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1211), 1, - sym__ternary_qmark, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1370), 1, - anon_sym_function, - ACTIONS(1374), 1, - anon_sym_EQ, - ACTIONS(1411), 1, - sym_identifier, - ACTIONS(1420), 1, - anon_sym_EQ_GT, - STATE(471), 1, - sym_comment, - STATE(2780), 1, - sym_formal_parameters, - ACTIONS(1413), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 33, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [650] = 5, + [2177] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1469), 1, + ACTIONS(1497), 1, sym__automatic_semicolon, - STATE(472), 1, + STATE(491), 1, sym_comment, - ACTIONS(874), 60, + ACTIONS(901), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -57811,7 +59729,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -57819,11 +59736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -57838,8 +59756,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -57854,36 +59770,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [725] = 13, + [2251] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1304), 1, + ACTIONS(1322), 1, anon_sym_EQ_GT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1384), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1424), 1, - anon_sym_function, - STATE(473), 1, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + ACTIONS(1434), 1, + anon_sym_COLON, + STATE(492), 1, sym_comment, - STATE(2756), 1, - sym_formal_parameters, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1911), 1, + sym_variable_declarator, ACTIONS(1211), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(1386), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1306), 15, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -57899,11 +59815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1222), 32, + ACTIONS(1222), 33, anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_in, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -57932,24 +59849,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [816] = 5, + [2345] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1471), 1, + ACTIONS(961), 1, sym__automatic_semicolon, - STATE(474), 1, + STATE(493), 1, sym_comment, - ACTIONS(864), 60, + ACTIONS(957), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -57958,7 +59877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -57966,12 +59884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_catch, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -57986,8 +59904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -58002,181 +59918,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [891] = 13, + [2419] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1384), 1, - sym_identifier, - ACTIONS(1430), 1, - anon_sym_function, - STATE(475), 1, - sym_comment, - STATE(2756), 1, - sym_formal_parameters, - ACTIONS(1211), 2, + ACTIONS(969), 1, sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1386), 6, + STATE(494), 1, + sym_comment, + ACTIONS(965), 59, anon_sym_export, + anon_sym_default, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_import, + anon_sym_with, + anon_sym_var, anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 32, - anon_sym_STAR, - anon_sym_in, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_LPAREN, + 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_SEMI, + anon_sym_case, + anon_sym_yield, anon_sym_LBRACK, + anon_sym_LTtemplate_GT, anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, 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_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [982] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1211), 1, - sym__ternary_qmark, - ACTIONS(1361), 1, + sym_number, sym_identifier, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1370), 1, - anon_sym_function, - ACTIONS(1372), 1, - anon_sym_EQ_GT, - ACTIONS(1399), 1, - anon_sym_RBRACK, - ACTIONS(1402), 1, - anon_sym_EQ, - ACTIONS(1415), 1, - anon_sym_COMMA, - STATE(476), 1, - sym_comment, - STATE(2768), 1, - sym_formal_parameters, - ACTIONS(1363), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 31, - anon_sym_STAR, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [1077] = 6, + [2493] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1442), 1, - anon_sym_finally, - STATE(477), 1, + ACTIONS(977), 1, + sym__automatic_semicolon, + STATE(495), 1, sym_comment, - STATE(604), 1, - sym_finally_clause, - ACTIONS(1473), 59, + ACTIONS(973), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -58189,7 +60015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -58201,6 +60026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -58215,8 +60042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -58231,19 +60056,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1154] = 4, + [2567] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(478), 1, + ACTIONS(899), 1, + ts_builtin_sym_end, + STATE(496), 1, sym_comment, - ACTIONS(874), 61, + ACTIONS(897), 59, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -58256,20 +60083,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_catch, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -58284,8 +60111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -58300,36 +60125,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1227] = 13, + [2641] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1304), 1, + ACTIONS(1322), 1, anon_sym_EQ_GT, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + ACTIONS(1422), 1, + anon_sym_COLON, + STATE(497), 1, + sym_comment, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1916), 1, + sym_variable_declarator, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 33, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [2735] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1211), 1, + sym__ternary_qmark, ACTIONS(1365), 1, anon_sym_LPAREN, - ACTIONS(1384), 1, - sym_identifier, - ACTIONS(1436), 1, + ACTIONS(1368), 1, + anon_sym_EQ, + ACTIONS(1370), 1, anon_sym_function, - STATE(479), 1, + ACTIONS(1481), 1, + sym_identifier, + ACTIONS(1487), 1, + anon_sym_EQ_GT, + STATE(498), 1, sym_comment, - STATE(2756), 1, + STATE(2777), 1, sym_formal_parameters, - ACTIONS(1211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1386), 6, + ACTIONS(1483), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1306), 15, + ACTIONS(1324), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -58348,7 +60251,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1222), 32, anon_sym_STAR, anon_sym_in, - anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, @@ -58378,31 +60281,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [1318] = 9, + [2825] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1451), 1, - ts_builtin_sym_end, - ACTIONS(1475), 1, - anon_sym_catch, - ACTIONS(1477), 1, - anon_sym_finally, - STATE(480), 1, + ACTIONS(985), 1, + sym__automatic_semicolon, + STATE(499), 1, sym_comment, - STATE(610), 1, - sym_catch_clause, - STATE(977), 1, - sym_finally_clause, - ACTIONS(1438), 56, + ACTIONS(981), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -58411,17 +60309,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -58436,8 +60336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -58452,91 +60350,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1401] = 6, + [2899] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1446), 1, - anon_sym_finally, - STATE(481), 1, - sym_comment, - STATE(697), 1, - sym_finally_clause, - ACTIONS(1473), 58, - anon_sym_export, - anon_sym_default, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1384), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, + ACTIONS(1386), 1, + anon_sym_LBRACK, + ACTIONS(1430), 1, + anon_sym_COLON, + STATE(500), 1, + sym_comment, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1967), 1, + sym_variable_declarator, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 33, + anon_sym_STAR, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, + anon_sym_in, anon_sym_SEMI, - anon_sym_case, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + 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_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, + 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1477] = 5, + [2993] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(916), 1, + ACTIONS(903), 1, + ts_builtin_sym_end, + ACTIONS(1499), 1, sym__automatic_semicolon, - STATE(482), 1, + STATE(501), 1, sym_comment, - ACTIONS(912), 59, + ACTIONS(901), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -58549,18 +60458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -58575,8 +60485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -58591,19 +60499,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1551] = 4, + [3069] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(483), 1, + ACTIONS(905), 1, + ts_builtin_sym_end, + ACTIONS(1501), 1, + sym__automatic_semicolon, + STATE(502), 1, sym_comment, - ACTIONS(1479), 60, + ACTIONS(848), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -58616,19 +60528,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -58643,8 +60555,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -58659,22 +60569,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1623] = 6, + [3145] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(932), 1, + ACTIONS(1454), 1, + anon_sym_finally, + ACTIONS(1503), 1, ts_builtin_sym_end, - ACTIONS(1481), 1, - sym__automatic_semicolon, - STATE(484), 1, + STATE(503), 1, sym_comment, - ACTIONS(864), 58, + STATE(671), 1, + sym_finally_clause, + ACTIONS(1467), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -58687,18 +60600,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -58713,8 +60626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -58729,21 +60640,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1699] = 5, + [3223] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1483), 1, + ACTIONS(899), 1, sym__automatic_semicolon, - STATE(485), 1, + STATE(504), 1, sym_comment, - ACTIONS(864), 59, + ACTIONS(897), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -58756,7 +60668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -58768,6 +60679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -58782,8 +60695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -58798,25 +60709,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1773] = 5, + [3297] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(941), 1, - sym__automatic_semicolon, - STATE(486), 1, + ACTIONS(1505), 1, + anon_sym_else, + STATE(505), 1, sym_comment, - ACTIONS(939), 59, + STATE(814), 1, + sym_else_clause, + ACTIONS(1491), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -58825,7 +60738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -58837,6 +60749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -58851,8 +60765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -58867,25 +60779,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1847] = 5, + [3373] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - sym__automatic_semicolon, - STATE(487), 1, + ACTIONS(1448), 1, + anon_sym_finally, + STATE(506), 1, sym_comment, - ACTIONS(874), 59, + STATE(886), 1, + sym_finally_clause, + ACTIONS(1467), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -58894,7 +60808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -58906,6 +60819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -58920,8 +60835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -58936,101 +60849,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1921] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1394), 1, - anon_sym_in, - ACTIONS(1397), 1, - anon_sym_of, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - ACTIONS(1485), 1, - sym_identifier, - STATE(488), 1, - sym_comment, - STATE(1742), 1, - sym__destructuring_pattern, - STATE(1921), 1, - sym_variable_declarator, - ACTIONS(1211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 32, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [2017] = 5, + [3449] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(971), 1, + ACTIONS(903), 1, sym__automatic_semicolon, - STATE(489), 1, + STATE(507), 1, sym_comment, - ACTIONS(967), 59, + ACTIONS(901), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -59043,7 +60877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -59055,6 +60888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -59069,8 +60904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -59085,25 +60918,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2091] = 5, + [3523] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(979), 1, + ACTIONS(903), 1, + ts_builtin_sym_end, + ACTIONS(1507), 1, sym__automatic_semicolon, - STATE(490), 1, + STATE(508), 1, sym_comment, - ACTIONS(975), 59, + ACTIONS(901), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -59112,18 +60946,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_catch, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -59138,8 +60974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -59154,21 +60988,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2165] = 5, + [3599] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(995), 1, + ACTIONS(931), 1, sym__automatic_semicolon, - STATE(491), 1, + STATE(509), 1, sym_comment, - ACTIONS(991), 59, + ACTIONS(929), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -59181,7 +61016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -59193,6 +61027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -59207,8 +61043,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -59223,19 +61057,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2239] = 4, + [3673] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(492), 1, + ACTIONS(927), 1, + sym__automatic_semicolon, + STATE(510), 1, sym_comment, - ACTIONS(874), 60, + ACTIONS(925), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -59248,7 +61085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -59256,11 +61092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -59275,8 +61112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -59291,183 +61126,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2311] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1388), 1, - anon_sym_COLON, - ACTIONS(1405), 1, - sym_identifier, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - STATE(493), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1930), 1, - sym_variable_declarator, - ACTIONS(1211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 33, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [2405] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1211), 1, - sym__ternary_qmark, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1370), 1, - anon_sym_function, - ACTIONS(1374), 1, - anon_sym_EQ, - ACTIONS(1394), 1, - anon_sym_in, - ACTIONS(1397), 1, - anon_sym_of, - ACTIONS(1411), 1, - sym_identifier, - ACTIONS(1420), 1, - anon_sym_EQ_GT, - STATE(494), 1, - sym_comment, - STATE(2780), 1, - sym_formal_parameters, - ACTIONS(1413), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 30, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [2499] = 6, + [3747] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - ACTIONS(1487), 1, + ACTIONS(1509), 1, sym__automatic_semicolon, - STATE(495), 1, + STATE(511), 1, sym_comment, - ACTIONS(874), 58, + ACTIONS(848), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -59476,19 +61154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_catch, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -59503,8 +61181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -59519,7 +61195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2575] = 13, + [3821] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -59528,26 +61204,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1365), 1, anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_EQ, ACTIONS(1370), 1, anon_sym_function, - ACTIONS(1489), 1, + ACTIONS(1400), 1, + anon_sym_in, + ACTIONS(1403), 1, + anon_sym_of, + ACTIONS(1405), 1, sym_identifier, - ACTIONS(1493), 1, - anon_sym_EQ, - ACTIONS(1495), 1, + ACTIONS(1411), 1, anon_sym_EQ_GT, - STATE(496), 1, + STATE(512), 1, sym_comment, - STATE(2724), 1, + STATE(2833), 1, sym_formal_parameters, - ACTIONS(1491), 6, + ACTIONS(1407), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1306), 15, + ACTIONS(1324), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -59563,10 +61243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1222), 32, + ACTIONS(1222), 30, anon_sym_STAR, - anon_sym_in, - anon_sym_of, anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, @@ -59596,21 +61274,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [2665] = 5, + [3915] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(930), 1, + ACTIONS(1511), 1, sym__automatic_semicolon, - STATE(497), 1, + STATE(513), 1, sym_comment, - ACTIONS(928), 59, + ACTIONS(901), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -59623,7 +61302,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -59635,75 +61313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2739] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - STATE(498), 1, - sym_comment, - ACTIONS(874), 59, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_SEMI, - anon_sym_catch, - anon_sym_finally, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -59718,8 +61329,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -59734,21 +61343,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2813] = 5, + [3989] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1497), 1, + ACTIONS(905), 1, + ts_builtin_sym_end, + ACTIONS(1513), 1, sym__automatic_semicolon, - STATE(499), 1, + STATE(514), 1, sym_comment, - ACTIONS(874), 59, + ACTIONS(848), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -59760,88 +61371,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_catch, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2887] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(963), 1, - sym__automatic_semicolon, - STATE(500), 1, - sym_comment, - ACTIONS(959), 59, - anon_sym_export, - anon_sym_default, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_SEMI, - anon_sym_case, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -59856,8 +61399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -59872,36 +61413,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2961] = 15, + [4065] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1304), 1, + ACTIONS(1322), 1, anon_sym_EQ_GT, - ACTIONS(1405), 1, + ACTIONS(1382), 1, sym_identifier, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(1428), 1, + ACTIONS(1426), 1, anon_sym_COLON, - STATE(501), 1, + STATE(515), 1, sym_comment, - STATE(1818), 1, + STATE(1890), 1, sym__destructuring_pattern, - STATE(1940), 1, + STATE(1914), 1, sym_variable_declarator, ACTIONS(1211), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - ACTIONS(1306), 15, + ACTIONS(1324), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -59951,23 +61492,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [3055] = 4, + [4159] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(502), 1, + ACTIONS(1515), 1, + sym__automatic_semicolon, + STATE(516), 1, sym_comment, - ACTIONS(939), 60, + ACTIONS(901), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -59976,7 +61519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -59989,6 +61531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60003,8 +61547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60019,21 +61561,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3127] = 5, + [4233] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(908), 1, + ACTIONS(854), 1, sym__automatic_semicolon, - STATE(503), 1, + STATE(517), 1, sym_comment, - ACTIONS(904), 59, + ACTIONS(848), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -60046,7 +61589,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -60058,6 +61600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60072,8 +61616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60088,25 +61630,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3201] = 5, + [4307] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(900), 1, - sym__automatic_semicolon, - STATE(504), 1, + STATE(518), 1, sym_comment, - ACTIONS(896), 59, + ACTIONS(901), 60, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -60115,7 +61655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -60123,10 +61662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, + anon_sym_catch, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60141,8 +61684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60157,23 +61698,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3275] = 6, + [4379] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1501), 1, - anon_sym_else, - STATE(505), 1, + ACTIONS(1517), 1, + sym__automatic_semicolon, + STATE(519), 1, sym_comment, - STATE(548), 1, - sym_else_clause, - ACTIONS(1499), 58, + ACTIONS(848), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -60185,7 +61725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -60193,10 +61732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60211,8 +61753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60227,25 +61767,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3351] = 5, + [4453] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(870), 1, - sym__automatic_semicolon, - STATE(506), 1, + STATE(520), 1, sym_comment, - ACTIONS(864), 59, + ACTIONS(897), 60, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -60254,7 +61792,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -60262,10 +61799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, + anon_sym_catch, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60280,8 +61821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60296,20 +61835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3425] = 5, + [4525] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(941), 1, - ts_builtin_sym_end, - STATE(507), 1, + STATE(521), 1, sym_comment, - ACTIONS(939), 59, + ACTIONS(901), 60, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -60322,19 +61861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_catch, + anon_sym_case, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60349,8 +61889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60365,22 +61903,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3499] = 4, + [4597] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(508), 1, + STATE(522), 1, sym_comment, - ACTIONS(874), 60, + ACTIONS(897), 60, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -60389,7 +61929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -60397,12 +61936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_catch, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60417,8 +61957,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60433,35 +61971,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3571] = 13, + [4669] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1211), 1, - sym__ternary_qmark, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1370), 1, - anon_sym_function, - ACTIONS(1374), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1489), 1, - sym_identifier, - ACTIONS(1495), 1, + ACTIONS(1322), 1, anon_sym_EQ_GT, - STATE(509), 1, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_COLON, + STATE(523), 1, sym_comment, - STATE(2724), 1, - sym_formal_parameters, - ACTIONS(1491), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1306), 15, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1949), 1, + sym_variable_declarator, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -60477,11 +62016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1222), 32, + ACTIONS(1222), 33, anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_in, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_DOT, @@ -60510,24 +62050,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [3661] = 7, + [4763] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1455), 1, - anon_sym_finally, - ACTIONS(1503), 1, - ts_builtin_sym_end, - STATE(510), 1, + STATE(524), 1, sym_comment, - STATE(867), 1, - sym_finally_clause, - ACTIONS(1473), 57, + ACTIONS(1519), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -60540,17 +62076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60565,8 +62103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60581,26 +62117,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3739] = 6, + [4834] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1505), 1, - anon_sym_else, - STATE(511), 1, + STATE(525), 1, sym_comment, - STATE(727), 1, - sym_else_clause, - ACTIONS(1499), 58, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -60609,7 +62143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -60621,6 +62154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60635,8 +62170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60651,25 +62184,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3815] = 5, + [4905] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(989), 1, + ACTIONS(1051), 1, sym__automatic_semicolon, - STATE(512), 1, + STATE(526), 1, sym_comment, - ACTIONS(987), 59, + ACTIONS(989), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -60678,7 +62211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -60690,6 +62222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60704,8 +62238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60720,25 +62252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3889] = 5, + [4978] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1507), 1, - sym__automatic_semicolon, - STATE(513), 1, + STATE(527), 1, sym_comment, - ACTIONS(874), 59, + ACTIONS(1479), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -60747,7 +62277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -60755,10 +62284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60773,8 +62305,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60789,102 +62319,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3963] = 15, + [5049] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1405), 1, - sym_identifier, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - ACTIONS(1434), 1, - anon_sym_COLON, - STATE(514), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1953), 1, - sym_variable_declarator, - ACTIONS(1211), 2, + ACTIONS(1011), 1, sym__automatic_semicolon, - sym__ternary_qmark, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 33, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [4057] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(515), 1, + STATE(528), 1, sym_comment, - ACTIONS(1509), 60, + ACTIONS(981), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -60893,7 +62346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -60901,11 +62353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60920,8 +62373,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -60936,22 +62387,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4129] = 6, + [5122] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(932), 1, - ts_builtin_sym_end, - ACTIONS(1511), 1, + ACTIONS(1007), 1, sym__automatic_semicolon, - STATE(516), 1, + STATE(529), 1, sym_comment, - ACTIONS(864), 58, + ACTIONS(973), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -60963,19 +62414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_catch, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -60990,8 +62441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61006,98 +62455,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4205] = 15, + [5195] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1405), 1, - sym_identifier, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_COLON, - STATE(517), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1890), 1, - sym_variable_declarator, - ACTIONS(1211), 2, + ACTIONS(1009), 1, sym__automatic_semicolon, - sym__ternary_qmark, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 33, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [4299] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(518), 1, + STATE(530), 1, sym_comment, - ACTIONS(939), 60, + ACTIONS(965), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -61109,7 +62482,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -61117,12 +62489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_catch, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61137,8 +62509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61153,21 +62523,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4371] = 5, + [5268] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1513), 1, + ACTIONS(1523), 1, sym__automatic_semicolon, - STATE(519), 1, + STATE(531), 1, sym_comment, - ACTIONS(864), 59, + ACTIONS(901), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -61179,7 +62550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -61187,11 +62557,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61206,8 +62577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61222,104 +62591,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4445] = 15, + [5341] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1392), 1, - anon_sym_COLON, - ACTIONS(1405), 1, - sym_identifier, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - STATE(520), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1959), 1, - sym_variable_declarator, - ACTIONS(1211), 2, + ACTIONS(903), 1, + ts_builtin_sym_end, + ACTIONS(1525), 1, sym__automatic_semicolon, - sym__ternary_qmark, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 33, - anon_sym_STAR, - anon_sym_COMMA, + STATE(532), 1, + sym_comment, + ACTIONS(901), 57, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, - anon_sym_in, + 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_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, 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_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [4539] = 5, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [5416] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1515), 1, + ACTIONS(1013), 1, sym__automatic_semicolon, - STATE(521), 1, + STATE(533), 1, sym_comment, - ACTIONS(874), 59, + ACTIONS(957), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -61328,7 +62687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -61340,6 +62698,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61354,8 +62714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61370,25 +62728,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4613] = 5, + [5489] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(924), 1, + ACTIONS(1015), 1, sym__automatic_semicolon, - STATE(522), 1, + STATE(534), 1, sym_comment, - ACTIONS(920), 59, + ACTIONS(949), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -61397,7 +62755,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -61409,6 +62766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61423,8 +62782,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61439,26 +62796,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4687] = 6, + [5562] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - ACTIONS(1517), 1, + ACTIONS(1017), 1, sym__automatic_semicolon, - STATE(523), 1, + STATE(535), 1, sym_comment, - ACTIONS(874), 58, + ACTIONS(941), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -61467,18 +62823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61493,8 +62850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61509,23 +62864,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4763] = 4, + [5635] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(524), 1, + ACTIONS(1035), 1, + sym__automatic_semicolon, + STATE(536), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(933), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -61534,7 +62891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -61546,6 +62902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61560,8 +62918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61576,21 +62932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4834] = 5, + [5708] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(985), 1, - sym__automatic_semicolon, - STATE(525), 1, + STATE(537), 1, sym_comment, - ACTIONS(864), 58, + ACTIONS(1495), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -61602,7 +62957,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -61610,10 +62964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61628,8 +62985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61644,19 +62999,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4907] = 4, + [5779] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(526), 1, + STATE(538), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1527), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -61669,7 +63025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -61681,6 +63036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61695,8 +63052,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61711,19 +63066,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4978] = 4, + [5850] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(527), 1, + ACTIONS(1529), 1, + ts_builtin_sym_end, + STATE(539), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1495), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -61736,18 +63093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61762,8 +63120,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61778,19 +63134,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5049] = 4, + [5923] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(528), 1, + ACTIONS(1003), 1, + ts_builtin_sym_end, + ACTIONS(1005), 1, + sym__automatic_semicolon, + STATE(540), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(933), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -61803,18 +63163,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61829,8 +63189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61845,23 +63203,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5120] = 5, + [5998] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - STATE(529), 1, + STATE(541), 1, sym_comment, - ACTIONS(874), 58, + ACTIONS(1531), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -61870,19 +63229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_catch, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61897,8 +63256,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61913,24 +63270,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5193] = 5, + [6069] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1523), 1, - sym__automatic_semicolon, - STATE(530), 1, + STATE(542), 1, sym_comment, - ACTIONS(874), 58, + ACTIONS(1533), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -61939,7 +63296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -61951,6 +63307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -61965,8 +63323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -61981,22 +63337,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5266] = 6, + [6140] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - ACTIONS(1525), 1, - sym__automatic_semicolon, - STATE(531), 1, + STATE(543), 1, sym_comment, - ACTIONS(874), 57, + ACTIONS(1535), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62009,17 +63363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62034,8 +63390,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62050,22 +63404,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5341] = 6, + [6211] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1025), 1, - ts_builtin_sym_end, - ACTIONS(1027), 1, - sym__automatic_semicolon, - STATE(532), 1, + STATE(544), 1, sym_comment, - ACTIONS(920), 57, + ACTIONS(1537), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62078,17 +63430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62103,8 +63457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62119,19 +63471,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5416] = 4, + [6282] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(533), 1, + ACTIONS(1041), 1, + ts_builtin_sym_end, + ACTIONS(1043), 1, + sym__automatic_semicolon, + STATE(545), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(941), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62144,18 +63500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62170,8 +63526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62186,19 +63540,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5487] = 4, + [6357] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(534), 1, + ACTIONS(1037), 1, + ts_builtin_sym_end, + ACTIONS(1039), 1, + sym__automatic_semicolon, + STATE(546), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(949), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62211,18 +63569,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62237,8 +63595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62253,19 +63609,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5558] = 4, + [6432] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(535), 1, + ACTIONS(1057), 1, + ts_builtin_sym_end, + ACTIONS(1059), 1, + sym__automatic_semicolon, + STATE(547), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(957), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62278,18 +63638,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62304,8 +63664,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62320,19 +63678,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5629] = 4, + [6507] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(536), 1, + STATE(548), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1539), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62345,7 +63704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -62357,6 +63715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62371,8 +63731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62387,19 +63745,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5700] = 4, + [6578] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(537), 1, + STATE(549), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1541), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62412,7 +63771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -62424,6 +63782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62438,8 +63798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62454,19 +63812,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5771] = 4, + [6649] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(538), 1, + STATE(550), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1543), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62479,7 +63838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -62491,6 +63849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62505,8 +63865,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62521,19 +63879,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5842] = 4, + [6720] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(539), 1, + STATE(551), 1, sym_comment, - ACTIONS(1527), 59, + ACTIONS(1545), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62546,7 +63905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -62558,6 +63916,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62572,8 +63932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62588,23 +63946,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5913] = 5, + [6791] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(941), 1, + ACTIONS(1053), 1, ts_builtin_sym_end, - STATE(540), 1, + ACTIONS(1055), 1, + sym__automatic_semicolon, + STATE(552), 1, sym_comment, - ACTIONS(939), 58, + ACTIONS(965), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -62613,19 +63975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_catch, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62640,8 +64001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62656,19 +64015,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5986] = 4, + [6866] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(541), 1, + ACTIONS(1047), 1, + ts_builtin_sym_end, + ACTIONS(1049), 1, + sym__automatic_semicolon, + STATE(553), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(973), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62681,18 +64044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62707,8 +64070,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62723,19 +64084,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6057] = 4, + [6941] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(542), 1, + ACTIONS(999), 1, + ts_builtin_sym_end, + ACTIONS(1001), 1, + sym__automatic_semicolon, + STATE(554), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(981), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62748,18 +64113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62774,8 +64139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62790,19 +64153,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6128] = 4, + [7016] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(543), 1, + ACTIONS(903), 1, + ts_builtin_sym_end, + ACTIONS(1547), 1, + sym__automatic_semicolon, + STATE(555), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(901), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62815,18 +64182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62841,8 +64208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62857,19 +64222,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6199] = 4, + [7091] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(544), 1, + STATE(556), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1549), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62882,7 +64248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -62894,6 +64259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62908,8 +64275,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62924,19 +64289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6270] = 4, + [7162] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(545), 1, + STATE(557), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1551), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -62949,7 +64315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -62961,6 +64326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -62975,8 +64342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -62991,19 +64356,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6341] = 4, + [7233] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(546), 1, + STATE(558), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1553), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63016,7 +64382,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63028,6 +64393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63042,8 +64409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63058,19 +64423,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6412] = 4, + [7304] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(547), 1, + STATE(559), 1, sym_comment, - ACTIONS(1529), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63083,7 +64449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63095,6 +64460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63109,8 +64476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63125,19 +64490,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6483] = 4, + [7375] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(548), 1, + STATE(560), 1, sym_comment, - ACTIONS(1531), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63150,7 +64516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63162,6 +64527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63176,8 +64543,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63192,20 +64557,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6554] = 5, + [7446] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1533), 1, + ACTIONS(1555), 1, ts_builtin_sym_end, - STATE(549), 1, + STATE(561), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1479), 58, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63218,7 +64584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63230,6 +64595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63244,8 +64611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63260,27 +64625,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6627] = 7, + [7519] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1535), 1, - ts_builtin_sym_end, - ACTIONS(1537), 1, - anon_sym_else, - STATE(550), 1, + STATE(562), 1, sym_comment, - STATE(834), 1, - sym_else_clause, - ACTIONS(1499), 56, + ACTIONS(1519), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -63289,17 +64651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63314,8 +64678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63330,23 +64692,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6704] = 4, + [7590] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(551), 1, + ACTIONS(899), 1, + ts_builtin_sym_end, + STATE(563), 1, sym_comment, - ACTIONS(1539), 59, + ACTIONS(897), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -63355,18 +64718,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_catch, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63381,8 +64746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63397,19 +64760,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6775] = 4, + [7663] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(552), 1, + ACTIONS(1023), 1, + ts_builtin_sym_end, + ACTIONS(1025), 1, + sym__automatic_semicolon, + STATE(564), 1, sym_comment, - ACTIONS(1539), 59, + ACTIONS(989), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63422,18 +64789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63448,8 +64815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63464,27 +64829,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6846] = 7, + [7738] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1535), 1, - ts_builtin_sym_end, - ACTIONS(1541), 1, - anon_sym_else, - STATE(553), 1, + STATE(565), 1, sym_comment, - STATE(968), 1, - sym_else_clause, - ACTIONS(1499), 56, + ACTIONS(1519), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -63493,17 +64855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63518,8 +64882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63534,19 +64896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6923] = 4, + [7809] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(554), 1, + STATE(566), 1, sym_comment, - ACTIONS(1543), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63559,7 +64922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63571,6 +64933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63585,8 +64949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63601,19 +64963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6994] = 4, + [7880] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(555), 1, + STATE(567), 1, sym_comment, - ACTIONS(1543), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63626,7 +64989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63638,6 +65000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63652,8 +65016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63668,19 +65030,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7065] = 4, + [7951] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(556), 1, + STATE(568), 1, sym_comment, - ACTIONS(1543), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63693,7 +65056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63705,6 +65067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63719,8 +65083,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63735,19 +65097,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7136] = 4, + [8022] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(557), 1, + STATE(569), 1, sym_comment, - ACTIONS(1543), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63760,7 +65123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63772,6 +65134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63786,8 +65150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63802,19 +65164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7207] = 4, + [8093] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(558), 1, + STATE(570), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63827,7 +65190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63839,6 +65201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63853,8 +65217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63869,24 +65231,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7278] = 5, + [8164] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(941), 1, - sym__automatic_semicolon, - STATE(559), 1, + STATE(571), 1, sym_comment, - ACTIONS(939), 58, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -63895,7 +65257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63907,6 +65268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63921,8 +65284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -63937,19 +65298,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7351] = 4, + [8235] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(560), 1, + STATE(572), 1, sym_comment, - ACTIONS(1545), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -63962,7 +65324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -63974,6 +65335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -63988,8 +65351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64004,19 +65365,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7422] = 4, + [8306] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(561), 1, + STATE(573), 1, sym_comment, - ACTIONS(1543), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64029,7 +65391,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64041,6 +65402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64055,8 +65418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64071,19 +65432,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7493] = 4, + [8377] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(562), 1, + STATE(574), 1, sym_comment, - ACTIONS(1543), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64096,7 +65458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64108,6 +65469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64122,8 +65485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64138,23 +65499,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7564] = 4, + [8448] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(563), 1, + ACTIONS(903), 1, + ts_builtin_sym_end, + STATE(575), 1, sym_comment, - ACTIONS(1547), 59, + ACTIONS(901), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -64163,18 +65525,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_catch, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64189,8 +65553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64205,19 +65567,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7635] = 4, + [8521] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(564), 1, + STATE(576), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64230,7 +65593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64242,6 +65604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64256,8 +65620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64272,19 +65634,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7706] = 4, + [8592] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(565), 1, + STATE(577), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64297,7 +65660,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64309,6 +65671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64323,8 +65687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64339,19 +65701,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7777] = 4, + [8663] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(566), 1, + STATE(578), 1, sym_comment, - ACTIONS(1549), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64364,7 +65727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64376,6 +65738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64390,8 +65754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64406,19 +65768,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7848] = 4, + [8734] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(567), 1, + STATE(579), 1, sym_comment, - ACTIONS(1551), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64431,7 +65794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64443,6 +65805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64457,8 +65821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64473,19 +65835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7919] = 4, + [8805] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(568), 1, + STATE(580), 1, sym_comment, - ACTIONS(1553), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64498,7 +65861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64510,6 +65872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64524,8 +65888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64540,19 +65902,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7990] = 4, + [8876] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(569), 1, + STATE(581), 1, sym_comment, - ACTIONS(1555), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64565,7 +65928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64577,6 +65939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64591,8 +65955,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64607,12 +65969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8061] = 4, + [8947] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(570), 1, + STATE(582), 1, sym_comment, ACTIONS(1557), 59, anon_sym_export, @@ -64620,6 +65982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64632,7 +65995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64644,6 +66006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64658,8 +66022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64674,23 +66036,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8132] = 4, + [9018] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(571), 1, + ACTIONS(905), 1, + ts_builtin_sym_end, + ACTIONS(1559), 1, + sym__automatic_semicolon, + STATE(583), 1, sym_comment, - ACTIONS(1559), 59, + ACTIONS(848), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -64699,18 +66064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64725,8 +66091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64741,19 +66105,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8203] = 4, + [9093] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(572), 1, + STATE(584), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1561), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64766,7 +66131,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64778,6 +66142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64792,8 +66158,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64808,25 +66172,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8274] = 6, + [9164] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(932), 1, - ts_builtin_sym_end, - ACTIONS(1561), 1, - sym__automatic_semicolon, - STATE(573), 1, + STATE(585), 1, sym_comment, - ACTIONS(864), 57, + ACTIONS(1563), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -64835,18 +66198,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64861,8 +66225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64877,19 +66239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8349] = 4, + [9235] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(574), 1, + STATE(586), 1, sym_comment, - ACTIONS(1563), 59, + ACTIONS(1565), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64902,7 +66265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -64914,6 +66276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64928,8 +66292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -64944,22 +66306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8420] = 6, + [9306] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1041), 1, - ts_builtin_sym_end, - ACTIONS(1043), 1, - sym__automatic_semicolon, - STATE(575), 1, + STATE(587), 1, sym_comment, - ACTIONS(896), 57, + ACTIONS(1567), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -64972,17 +66332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -64997,8 +66359,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65013,19 +66373,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8495] = 4, + [9377] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(576), 1, + STATE(588), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1569), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65038,7 +66399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65050,6 +66410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65064,8 +66426,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65080,19 +66440,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8566] = 4, + [9448] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(577), 1, + STATE(589), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1571), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65105,7 +66466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65117,6 +66477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65131,8 +66493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65147,19 +66507,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8637] = 4, + [9519] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(578), 1, + STATE(590), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1573), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65172,7 +66533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65184,6 +66544,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65198,8 +66560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65214,19 +66574,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8708] = 4, + [9590] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(579), 1, + STATE(591), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1573), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65239,7 +66600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65251,6 +66611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65265,8 +66627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65281,19 +66641,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8779] = 4, + [9661] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(580), 1, + STATE(592), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1575), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65306,7 +66667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65318,6 +66678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65332,8 +66694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65348,19 +66708,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8850] = 4, + [9732] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(581), 1, + STATE(593), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1573), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65373,7 +66734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65385,6 +66745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65399,8 +66761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65415,19 +66775,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8921] = 4, + [9803] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(582), 1, + STATE(594), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1573), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65440,7 +66801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65452,6 +66812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65466,8 +66828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65482,19 +66842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8992] = 4, + [9874] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(583), 1, + STATE(595), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1573), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65507,7 +66868,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65519,6 +66879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65533,8 +66895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65549,22 +66909,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9063] = 6, + [9945] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(999), 1, - ts_builtin_sym_end, - ACTIONS(1001), 1, - sym__automatic_semicolon, - STATE(584), 1, + STATE(596), 1, sym_comment, - ACTIONS(904), 57, + ACTIONS(1573), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65577,17 +66935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65602,8 +66962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65618,22 +66976,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9138] = 6, + [10016] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1053), 1, - ts_builtin_sym_end, - ACTIONS(1055), 1, - sym__automatic_semicolon, - STATE(585), 1, + STATE(597), 1, sym_comment, - ACTIONS(912), 57, + ACTIONS(1577), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65646,17 +67002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65671,8 +67029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65687,19 +67043,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9213] = 4, + [10087] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(586), 1, + STATE(598), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1577), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65712,7 +67069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65724,6 +67080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65738,8 +67096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65754,19 +67110,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9284] = 4, + [10158] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(587), 1, + STATE(599), 1, sym_comment, - ACTIONS(1565), 59, + ACTIONS(1579), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65779,7 +67136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65791,6 +67147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65805,8 +67163,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65821,22 +67177,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9355] = 6, + [10229] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, - ts_builtin_sym_end, - ACTIONS(1037), 1, - sym__automatic_semicolon, - STATE(588), 1, + STATE(600), 1, sym_comment, - ACTIONS(991), 57, + ACTIONS(1581), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65849,17 +67203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65874,8 +67230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65890,19 +67244,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9430] = 4, + [10300] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(589), 1, + STATE(601), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1583), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65915,7 +67270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -65927,6 +67281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -65941,8 +67297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -65957,22 +67311,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9501] = 6, + [10371] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1031), 1, - ts_builtin_sym_end, - ACTIONS(1033), 1, - sym__automatic_semicolon, - STATE(590), 1, + STATE(602), 1, sym_comment, - ACTIONS(975), 57, + ACTIONS(1585), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -65985,17 +67337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66010,8 +67364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66026,19 +67378,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9576] = 4, + [10442] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(591), 1, + STATE(603), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66051,7 +67404,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66063,6 +67415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66077,8 +67431,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66093,22 +67445,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9647] = 6, + [10513] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1021), 1, - ts_builtin_sym_end, - ACTIONS(1023), 1, - sym__automatic_semicolon, - STATE(592), 1, + STATE(604), 1, sym_comment, - ACTIONS(967), 57, + ACTIONS(1585), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66121,17 +67471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66146,8 +67498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66162,22 +67512,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9722] = 6, + [10584] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1011), 1, - ts_builtin_sym_end, - ACTIONS(1013), 1, - sym__automatic_semicolon, - STATE(593), 1, + STATE(605), 1, sym_comment, - ACTIONS(959), 57, + ACTIONS(1585), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66190,17 +67538,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66215,8 +67565,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66231,20 +67579,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9797] = 5, + [10655] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1567), 1, - ts_builtin_sym_end, - STATE(594), 1, + STATE(606), 1, sym_comment, - ACTIONS(1479), 58, + ACTIONS(1585), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66257,18 +67605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66283,8 +67632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66299,19 +67646,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9870] = 4, + [10726] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(595), 1, + STATE(607), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66324,7 +67672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66336,6 +67683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66350,8 +67699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66366,24 +67713,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9941] = 5, + [10797] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - sym__automatic_semicolon, - STATE(596), 1, + STATE(608), 1, sym_comment, - ACTIONS(874), 58, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -66392,7 +67739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66404,6 +67750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66418,8 +67766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66434,22 +67780,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10014] = 4, + [10868] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(597), 1, + STATE(609), 1, sym_comment, - ACTIONS(939), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -66458,7 +67806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66466,11 +67813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66485,8 +67833,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66501,19 +67847,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10085] = 4, + [10939] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(598), 1, + STATE(610), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66526,7 +67873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66538,6 +67884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66552,8 +67900,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66568,19 +67914,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10156] = 4, + [11010] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(599), 1, + STATE(611), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66593,7 +67940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66605,6 +67951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66619,8 +67967,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66635,24 +67981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10227] = 5, + [11081] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1569), 1, - sym__automatic_semicolon, - STATE(600), 1, + STATE(612), 1, sym_comment, - ACTIONS(864), 58, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -66661,7 +68007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66673,6 +68018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66687,8 +68034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66703,19 +68048,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10300] = 4, + [11152] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(601), 1, + STATE(613), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66728,7 +68074,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66740,6 +68085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66754,8 +68101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66770,19 +68115,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10371] = 4, + [11223] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(602), 1, + STATE(614), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66795,7 +68141,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66807,6 +68152,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66821,8 +68168,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66837,19 +68182,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10442] = 4, + [11294] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(603), 1, + STATE(615), 1, sym_comment, - ACTIONS(1571), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66862,7 +68208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66874,6 +68219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66888,8 +68235,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66904,19 +68249,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10513] = 4, + [11365] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(604), 1, + STATE(616), 1, sym_comment, - ACTIONS(1573), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -66929,7 +68275,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -66941,6 +68286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -66955,8 +68302,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -66971,23 +68316,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10584] = 4, + [11436] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(605), 1, + ACTIONS(1465), 1, + anon_sym_finally, + ACTIONS(1503), 1, + ts_builtin_sym_end, + STATE(617), 1, sym_comment, - ACTIONS(1519), 59, + STATE(913), 1, + sym_finally_clause, + ACTIONS(1467), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -66996,18 +68346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67022,8 +68372,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67038,22 +68386,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10655] = 4, + [11513] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(606), 1, + STATE(618), 1, sym_comment, - ACTIONS(874), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -67062,7 +68412,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -67070,11 +68419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67089,8 +68439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67105,19 +68453,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10726] = 4, + [11584] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(607), 1, + STATE(619), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -67130,7 +68479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -67142,6 +68490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67156,8 +68506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67172,19 +68520,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10797] = 4, + [11655] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(608), 1, + STATE(620), 1, sym_comment, - ACTIONS(939), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -67197,7 +68546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -67209,6 +68557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67223,8 +68573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67239,19 +68587,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10868] = 4, + [11726] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(609), 1, + STATE(621), 1, sym_comment, - ACTIONS(1521), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -67264,7 +68613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -67276,6 +68624,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67290,8 +68640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67306,27 +68654,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10939] = 7, + [11797] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1477), 1, - anon_sym_finally, - ACTIONS(1503), 1, - ts_builtin_sym_end, - STATE(610), 1, + STATE(622), 1, sym_comment, - STATE(902), 1, - sym_finally_clause, - ACTIONS(1473), 56, + ACTIONS(1585), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -67335,17 +68680,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67360,8 +68707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67376,19 +68721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11016] = 4, + [11868] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(611), 1, + STATE(623), 1, sym_comment, - ACTIONS(874), 59, + ACTIONS(1587), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -67401,7 +68747,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -67413,6 +68758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67427,8 +68774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67443,21 +68788,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11087] = 5, + [11939] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(612), 1, + STATE(624), 1, sym_comment, - ACTIONS(876), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(874), 57, + ACTIONS(1589), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -67470,17 +68814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67495,8 +68841,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67511,22 +68855,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11160] = 6, + [12010] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(932), 1, - ts_builtin_sym_end, - ACTIONS(1575), 1, - sym__automatic_semicolon, - STATE(613), 1, + STATE(625), 1, sym_comment, - ACTIONS(864), 57, + ACTIONS(1591), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -67539,17 +68881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67564,8 +68908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67580,20 +68922,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11235] = 5, + [12081] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(941), 1, - ts_builtin_sym_end, - STATE(614), 1, + STATE(626), 1, sym_comment, - ACTIONS(939), 58, + ACTIONS(1593), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -67606,18 +68948,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67632,8 +68975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67648,21 +68989,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11308] = 5, + [12152] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1577), 1, - sym__automatic_semicolon, - STATE(615), 1, + ACTIONS(1595), 1, + ts_builtin_sym_end, + ACTIONS(1597), 1, + anon_sym_else, + STATE(627), 1, sym_comment, - ACTIONS(874), 58, + STATE(789), 1, + sym_else_clause, + ACTIONS(1491), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -67674,18 +69019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67700,8 +69045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67716,20 +69059,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11381] = 5, + [12229] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - STATE(616), 1, + STATE(628), 1, sym_comment, - ACTIONS(874), 58, + ACTIONS(1599), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -67742,18 +69085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67768,8 +69112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67784,22 +69126,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11454] = 6, + [12300] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(932), 1, - ts_builtin_sym_end, - ACTIONS(934), 1, - sym__automatic_semicolon, - STATE(617), 1, + STATE(629), 1, sym_comment, - ACTIONS(864), 57, + ACTIONS(1599), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -67812,17 +69152,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67837,8 +69179,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67853,24 +69193,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11529] = 5, + [12371] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(989), 1, - sym__automatic_semicolon, - STATE(618), 1, + STATE(630), 1, sym_comment, - ACTIONS(987), 58, + ACTIONS(1601), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -67879,7 +69219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -67891,6 +69230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67905,8 +69246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67921,24 +69260,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11602] = 5, + [12442] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(930), 1, - sym__automatic_semicolon, - STATE(619), 1, + STATE(631), 1, sym_comment, - ACTIONS(928), 58, + ACTIONS(1603), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -67947,7 +69286,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -67959,6 +69297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -67973,8 +69313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -67989,21 +69327,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11675] = 5, + [12513] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(620), 1, + STATE(632), 1, sym_comment, - ACTIONS(989), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(987), 57, + ACTIONS(1605), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68016,17 +69353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68041,8 +69380,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68057,21 +69394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11748] = 5, + [12584] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(621), 1, + STATE(633), 1, sym_comment, - ACTIONS(941), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(939), 57, + ACTIONS(1607), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68084,17 +69420,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68109,8 +69447,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68125,19 +69461,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11821] = 4, + [12655] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(622), 1, + STATE(634), 1, sym_comment, - ACTIONS(1579), 59, + ACTIONS(1609), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68150,7 +69487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -68162,6 +69498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68176,8 +69514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68192,25 +69528,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11892] = 6, + [12726] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - ACTIONS(1581), 1, - sym__automatic_semicolon, - STATE(623), 1, + STATE(635), 1, sym_comment, - ACTIONS(874), 57, + ACTIONS(1609), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -68219,18 +69554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68245,8 +69581,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68261,19 +69595,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11967] = 4, + [12797] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(624), 1, + STATE(636), 1, sym_comment, - ACTIONS(1583), 59, + ACTIONS(1611), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68286,7 +69621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -68298,6 +69632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68312,8 +69648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68328,19 +69662,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12038] = 4, + [12868] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(625), 1, + STATE(637), 1, sym_comment, - ACTIONS(1585), 59, + ACTIONS(1613), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68353,7 +69688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -68365,6 +69699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68379,8 +69715,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68395,19 +69729,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12109] = 4, + [12939] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(626), 1, + STATE(638), 1, sym_comment, - ACTIONS(1587), 59, + ACTIONS(1615), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68420,7 +69755,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -68432,6 +69766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68446,8 +69782,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68462,19 +69796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12180] = 4, + [13010] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(627), 1, + STATE(639), 1, sym_comment, - ACTIONS(1589), 59, + ACTIONS(1617), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68487,7 +69822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -68499,6 +69833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68513,8 +69849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68529,19 +69863,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12251] = 4, + [13081] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(628), 1, + STATE(640), 1, sym_comment, - ACTIONS(1519), 59, + ACTIONS(1619), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68554,7 +69889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -68566,6 +69900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68580,8 +69916,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68596,19 +69930,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12322] = 4, + [13152] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(629), 1, + STATE(641), 1, sym_comment, - ACTIONS(1591), 59, + ACTIONS(1621), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68621,7 +69956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -68633,6 +69967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68647,8 +69983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68663,19 +69997,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12393] = 4, + [13223] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(630), 1, + STATE(642), 1, sym_comment, - ACTIONS(1593), 59, + ACTIONS(1623), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68688,7 +70023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -68700,6 +70034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68714,8 +70050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68730,24 +70064,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12464] = 5, + [13294] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1039), 1, - sym__automatic_semicolon, - STATE(631), 1, + STATE(643), 1, sym_comment, - ACTIONS(920), 58, + ACTIONS(1625), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -68756,7 +70090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -68768,6 +70101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68782,8 +70117,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68798,22 +70131,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12537] = 4, + [13365] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(632), 1, + STATE(644), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1627), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -68822,7 +70157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -68830,11 +70164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68849,8 +70184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68865,23 +70198,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12608] = 4, + [13436] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(633), 1, + ACTIONS(1595), 1, + ts_builtin_sym_end, + ACTIONS(1629), 1, + anon_sym_else, + STATE(645), 1, sym_comment, - ACTIONS(1595), 59, + STATE(914), 1, + sym_else_clause, + ACTIONS(1491), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -68890,18 +70228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68916,8 +70254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -68932,22 +70268,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12679] = 6, + [13513] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - ACTIONS(1597), 1, - sym__automatic_semicolon, - STATE(634), 1, + STATE(646), 1, sym_comment, - ACTIONS(874), 57, + ACTIONS(1631), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -68960,17 +70294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -68985,8 +70321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69001,19 +70335,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12754] = 4, + [13584] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(635), 1, + STATE(647), 1, sym_comment, - ACTIONS(1599), 59, + ACTIONS(1633), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -69026,7 +70361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -69038,6 +70372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69052,8 +70388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69068,19 +70402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12825] = 4, + [13655] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(636), 1, + STATE(648), 1, sym_comment, - ACTIONS(1601), 59, + ACTIONS(1635), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -69093,7 +70428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -69105,6 +70439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69119,8 +70455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69135,19 +70469,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12896] = 4, + [13726] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(637), 1, + STATE(649), 1, sym_comment, - ACTIONS(1603), 59, + ACTIONS(1637), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -69160,7 +70495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -69172,6 +70506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69186,8 +70522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69202,23 +70536,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12967] = 4, + [13797] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(638), 1, + ACTIONS(903), 1, + ts_builtin_sym_end, + ACTIONS(1639), 1, + sym__automatic_semicolon, + STATE(650), 1, sym_comment, - ACTIONS(1605), 59, + ACTIONS(901), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -69227,18 +70564,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69253,8 +70591,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69269,19 +70605,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13038] = 4, + [13872] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(639), 1, + STATE(651), 1, sym_comment, - ACTIONS(1607), 59, + ACTIONS(1641), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -69294,7 +70631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -69306,6 +70642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69320,8 +70658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69336,19 +70672,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13109] = 4, + [13943] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(640), 1, + STATE(652), 1, sym_comment, - ACTIONS(1609), 59, + ACTIONS(931), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(929), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -69361,18 +70700,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69387,8 +70726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69403,19 +70740,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13180] = 4, + [14016] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(641), 1, + STATE(653), 1, sym_comment, - ACTIONS(1611), 59, + ACTIONS(927), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(925), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -69428,18 +70768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69454,8 +70794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69470,23 +70808,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13251] = 4, + [14089] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(642), 1, + ACTIONS(931), 1, + sym__automatic_semicolon, + STATE(654), 1, sym_comment, - ACTIONS(1613), 59, + ACTIONS(929), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -69495,7 +70835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -69507,6 +70846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69521,8 +70862,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69537,23 +70876,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13322] = 4, + [14162] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(643), 1, + ACTIONS(927), 1, + sym__automatic_semicolon, + STATE(655), 1, sym_comment, - ACTIONS(1615), 59, + ACTIONS(925), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -69562,7 +70903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -69574,6 +70914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69588,8 +70930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69604,24 +70944,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13393] = 5, + [14235] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1019), 1, + ACTIONS(905), 1, + ts_builtin_sym_end, + ACTIONS(907), 1, sym__automatic_semicolon, - STATE(644), 1, + STATE(656), 1, sym_comment, - ACTIONS(896), 58, + ACTIONS(848), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -69630,18 +70973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69656,8 +70999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69672,24 +71013,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13466] = 5, + [14310] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1017), 1, - sym__automatic_semicolon, - STATE(645), 1, + ACTIONS(903), 1, + ts_builtin_sym_end, + STATE(657), 1, sym_comment, - ACTIONS(904), 58, + ACTIONS(901), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -69698,18 +71040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69724,8 +71067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69740,23 +71081,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13539] = 4, + [14383] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(646), 1, + ACTIONS(1643), 1, + sym__automatic_semicolon, + STATE(658), 1, sym_comment, - ACTIONS(1617), 59, + ACTIONS(901), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -69765,7 +71108,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -69777,6 +71119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69791,8 +71135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69807,19 +71149,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13610] = 4, + [14456] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(647), 1, + ACTIONS(899), 1, + ts_builtin_sym_end, + STATE(659), 1, sym_comment, - ACTIONS(1619), 59, + ACTIONS(897), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -69832,18 +71176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69858,8 +71203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69874,19 +71217,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13681] = 4, + [14529] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(648), 1, + ACTIONS(905), 1, + ts_builtin_sym_end, + ACTIONS(1645), 1, + sym__automatic_semicolon, + STATE(660), 1, sym_comment, - ACTIONS(1621), 59, + ACTIONS(848), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -69899,18 +71246,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69925,8 +71272,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -69941,19 +71286,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13752] = 4, + [14604] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(649), 1, + STATE(661), 1, sym_comment, - ACTIONS(1623), 59, + ACTIONS(903), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(901), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -69966,18 +71314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -69992,8 +71340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70008,19 +71354,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13823] = 4, + [14677] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(650), 1, + STATE(662), 1, sym_comment, - ACTIONS(1625), 59, + ACTIONS(899), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(897), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -70033,18 +71382,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70059,8 +71408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70075,24 +71422,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13894] = 5, + [14750] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1015), 1, - sym__automatic_semicolon, - STATE(651), 1, + STATE(663), 1, sym_comment, - ACTIONS(912), 58, + ACTIONS(901), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -70101,7 +71448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70113,6 +71459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70127,8 +71475,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70143,23 +71489,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13967] = 4, + [14821] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(652), 1, + ACTIONS(877), 1, + sym__automatic_semicolon, + STATE(664), 1, sym_comment, - ACTIONS(1627), 59, + ACTIONS(848), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -70168,7 +71516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70180,6 +71527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70194,8 +71543,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70210,19 +71557,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14038] = 4, + [14894] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(653), 1, + STATE(665), 1, sym_comment, - ACTIONS(1629), 59, + ACTIONS(897), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -70235,7 +71583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70247,6 +71594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70261,8 +71610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70277,23 +71624,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14109] = 4, + [14965] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(654), 1, + STATE(666), 1, sym_comment, - ACTIONS(1631), 59, + ACTIONS(901), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -70302,7 +71649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70310,10 +71656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70328,8 +71677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70344,23 +71691,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14180] = 4, + [15036] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(655), 1, + ACTIONS(1647), 1, + sym__automatic_semicolon, + STATE(667), 1, sym_comment, - ACTIONS(1633), 59, + ACTIONS(848), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -70369,7 +71718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70381,6 +71729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70395,8 +71745,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70411,23 +71759,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14251] = 4, + [15109] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(656), 1, + STATE(668), 1, sym_comment, - ACTIONS(1635), 59, + ACTIONS(897), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -70436,7 +71784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70444,10 +71791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70462,8 +71812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70478,19 +71826,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14322] = 4, + [15180] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(657), 1, + ACTIONS(903), 1, + sym__automatic_semicolon, + STATE(669), 1, sym_comment, - ACTIONS(1479), 59, + ACTIONS(901), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -70502,7 +71853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70510,11 +71860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_SEMI, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70529,8 +71880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70545,23 +71894,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14393] = 4, + [15253] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(658), 1, + ACTIONS(899), 1, + sym__automatic_semicolon, + STATE(670), 1, sym_comment, - ACTIONS(1637), 59, + ACTIONS(897), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -70570,7 +71921,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70582,6 +71932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70596,8 +71948,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70612,24 +71962,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14464] = 5, + [15326] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1049), 1, - sym__automatic_semicolon, - STATE(659), 1, + ACTIONS(1649), 1, + ts_builtin_sym_end, + STATE(671), 1, sym_comment, - ACTIONS(959), 58, + ACTIONS(1591), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -70638,18 +71989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70664,8 +72015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70680,19 +72029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14537] = 4, + [15398] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(660), 1, + ACTIONS(1651), 1, + ts_builtin_sym_end, + STATE(672), 1, sym_comment, - ACTIONS(1639), 59, + ACTIONS(1519), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -70705,18 +72056,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70731,8 +72082,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70747,23 +72096,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14608] = 4, + [15470] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(661), 1, + STATE(673), 1, sym_comment, - ACTIONS(1639), 59, + ACTIONS(1569), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -70772,7 +72121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70784,6 +72132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70798,8 +72148,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70814,21 +72162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14679] = 5, + [15540] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1009), 1, - sym__automatic_semicolon, - STATE(662), 1, + STATE(674), 1, sym_comment, - ACTIONS(991), 58, + ACTIONS(1567), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -70840,7 +72187,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70852,6 +72198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70866,8 +72214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70882,23 +72228,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14752] = 4, + [15610] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(663), 1, + STATE(675), 1, sym_comment, - ACTIONS(1641), 59, + ACTIONS(1565), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -70907,7 +72253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70919,6 +72264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -70933,8 +72280,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -70949,23 +72294,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14823] = 4, + [15680] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(664), 1, + STATE(676), 1, sym_comment, - ACTIONS(1643), 59, + ACTIONS(1563), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -70974,7 +72319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -70986,6 +72330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71000,8 +72346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71016,25 +72360,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14894] = 5, + [15750] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(665), 1, - sym_comment, - ACTIONS(930), 2, - sym__automatic_semicolon, + ACTIONS(899), 1, ts_builtin_sym_end, - ACTIONS(928), 57, + STATE(677), 1, + sym_comment, + ACTIONS(897), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -71043,17 +72386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71068,8 +72413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71084,21 +72427,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14967] = 5, + [15822] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1003), 1, - sym__automatic_semicolon, - STATE(666), 1, + STATE(678), 1, sym_comment, - ACTIONS(967), 58, + ACTIONS(899), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(897), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71110,18 +72454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71136,8 +72480,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71152,21 +72494,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15040] = 5, + [15894] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1005), 1, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + STATE(679), 1, + sym_comment, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1911), 1, + sym_variable_declarator, + ACTIONS(1211), 2, sym__automatic_semicolon, - STATE(667), 1, + sym__ternary_qmark, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [15984] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(680), 1, sym_comment, - ACTIONS(975), 58, + ACTIONS(1561), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71178,7 +72595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -71190,6 +72606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71204,8 +72622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71220,24 +72636,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15113] = 5, + [16054] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1645), 1, - ts_builtin_sym_end, - STATE(668), 1, + STATE(681), 1, sym_comment, - ACTIONS(1627), 57, + ACTIONS(1557), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -71246,17 +72661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71271,8 +72688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71287,19 +72702,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15185] = 4, + [16124] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(669), 1, + ACTIONS(903), 1, + ts_builtin_sym_end, + ACTIONS(1653), 1, + sym__automatic_semicolon, + STATE(682), 1, sym_comment, - ACTIONS(1635), 58, + ACTIONS(901), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71311,18 +72730,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71337,8 +72756,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71353,24 +72770,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15255] = 5, + [16198] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1647), 1, - ts_builtin_sym_end, - STATE(670), 1, + STATE(683), 1, sym_comment, - ACTIONS(1629), 57, + ACTIONS(901), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -71379,17 +72795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71404,8 +72822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71420,19 +72836,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15327] = 4, + [16268] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(671), 1, + STATE(684), 1, sym_comment, - ACTIONS(1633), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71444,7 +72861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -71456,6 +72872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71470,8 +72888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71486,19 +72902,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15397] = 4, + [16338] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(672), 1, + STATE(685), 1, sym_comment, - ACTIONS(1637), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71510,7 +72927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -71522,6 +72938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71536,8 +72954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71552,19 +72968,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15467] = 4, + [16408] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(673), 1, + ACTIONS(905), 1, + ts_builtin_sym_end, + ACTIONS(1655), 1, + sym__automatic_semicolon, + STATE(686), 1, sym_comment, - ACTIONS(1615), 58, + ACTIONS(848), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71576,18 +72996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71602,8 +73022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71618,19 +73036,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15537] = 4, + [16482] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(674), 1, + STATE(687), 1, sym_comment, - ACTIONS(1639), 58, + ACTIONS(897), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71642,7 +73061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -71654,6 +73072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71668,8 +73088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71684,19 +73102,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15607] = 4, + [16552] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(675), 1, + STATE(688), 1, sym_comment, - ACTIONS(1639), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71708,7 +73127,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -71720,6 +73138,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71734,8 +73154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71750,19 +73168,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15677] = 4, + [16622] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(676), 1, + STATE(689), 1, sym_comment, - ACTIONS(1527), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71774,7 +73193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -71786,6 +73204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71800,8 +73220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71816,19 +73234,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15747] = 4, + [16692] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(677), 1, + STATE(690), 1, sym_comment, - ACTIONS(1611), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71840,7 +73259,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -71852,6 +73270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71866,8 +73286,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71882,19 +73300,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15817] = 4, + [16762] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(678), 1, + STATE(691), 1, sym_comment, - ACTIONS(1609), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71906,7 +73325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -71918,6 +73336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71932,8 +73352,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -71948,19 +73366,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15887] = 4, + [16832] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(679), 1, + STATE(692), 1, sym_comment, - ACTIONS(1643), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -71972,7 +73391,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -71984,6 +73402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -71998,8 +73418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72014,19 +73432,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15957] = 4, + [16902] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(680), 1, + STATE(693), 1, sym_comment, - ACTIONS(1603), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -72038,7 +73457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -72050,6 +73468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72064,8 +73484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72080,19 +73498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16027] = 4, + [16972] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(681), 1, + STATE(694), 1, sym_comment, - ACTIONS(1641), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -72104,7 +73523,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -72116,6 +73534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72130,8 +73550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72146,19 +73564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16097] = 4, + [17042] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(682), 1, + STATE(695), 1, sym_comment, - ACTIONS(1627), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -72170,7 +73589,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -72182,6 +73600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72196,8 +73616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72212,19 +73630,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16167] = 4, + [17112] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(683), 1, + STATE(696), 1, sym_comment, - ACTIONS(1599), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -72236,7 +73655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -72248,6 +73666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72262,8 +73682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72278,100 +73696,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16237] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1405), 1, - sym_identifier, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - STATE(684), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1953), 1, - sym_variable_declarator, - ACTIONS(1211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 32, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [16327] = 5, + [17182] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1649), 1, - ts_builtin_sym_end, - STATE(685), 1, + STATE(697), 1, sym_comment, - ACTIONS(1631), 57, + ACTIONS(1519), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -72380,17 +73721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72405,8 +73748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72421,24 +73762,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16399] = 5, + [17252] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1651), 1, - ts_builtin_sym_end, - STATE(686), 1, + STATE(698), 1, sym_comment, - ACTIONS(1599), 57, + ACTIONS(1519), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -72447,17 +73787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72472,8 +73814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72488,20 +73828,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16471] = 5, + [17322] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1533), 1, - ts_builtin_sym_end, - STATE(687), 1, + STATE(699), 1, sym_comment, - ACTIONS(1509), 57, + ACTIONS(903), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(901), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -72513,18 +73855,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72539,8 +73881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72555,19 +73895,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16543] = 4, + [17394] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(688), 1, + STATE(700), 1, sym_comment, - ACTIONS(1625), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -72579,7 +73920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -72591,6 +73931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72605,8 +73947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72621,24 +73961,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16613] = 5, + [17464] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1653), 1, - ts_builtin_sym_end, - STATE(689), 1, + STATE(701), 1, sym_comment, - ACTIONS(1621), 57, + ACTIONS(1519), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -72647,17 +73986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72672,8 +74013,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72688,24 +74027,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16685] = 5, + [17534] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1655), 1, + ACTIONS(903), 1, ts_builtin_sym_end, - STATE(690), 1, + STATE(702), 1, sym_comment, - ACTIONS(1619), 57, + ACTIONS(901), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -72714,17 +74053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72739,8 +74080,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72755,19 +74094,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16757] = 4, + [17606] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(691), 1, + STATE(703), 1, sym_comment, - ACTIONS(1591), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -72779,7 +74119,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -72791,6 +74130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72805,8 +74146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72821,24 +74160,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16827] = 5, + [17676] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1657), 1, - ts_builtin_sym_end, - STATE(692), 1, + STATE(704), 1, sym_comment, - ACTIONS(1617), 57, + ACTIONS(1519), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -72847,17 +74185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72872,8 +74212,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72888,19 +74226,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16899] = 4, + [17746] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(693), 1, + ACTIONS(905), 1, + ts_builtin_sym_end, + ACTIONS(1031), 1, + sym__automatic_semicolon, + STATE(705), 1, sym_comment, - ACTIONS(1623), 58, + ACTIONS(848), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -72912,18 +74254,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -72938,8 +74280,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -72954,24 +74294,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16969] = 5, + [17820] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - STATE(694), 1, + STATE(706), 1, sym_comment, - ACTIONS(874), 57, + ACTIONS(1519), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -72980,17 +74319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73005,8 +74346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73021,24 +74360,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17041] = 5, + [17890] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1659), 1, - ts_builtin_sym_end, - STATE(695), 1, + STATE(707), 1, sym_comment, - ACTIONS(1613), 57, + ACTIONS(1519), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -73047,17 +74385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73072,8 +74412,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73088,21 +74426,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17113] = 5, + [17960] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(696), 1, + STATE(708), 1, sym_comment, - ACTIONS(989), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(987), 56, + ACTIONS(1519), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73114,17 +74451,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73139,8 +74478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73155,19 +74492,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17185] = 4, + [18030] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(697), 1, + STATE(709), 1, sym_comment, - ACTIONS(1573), 58, + ACTIONS(1553), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73179,7 +74517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -73191,6 +74528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73205,8 +74544,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73221,24 +74558,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17255] = 5, + [18100] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1661), 1, - ts_builtin_sym_end, - STATE(698), 1, + STATE(710), 1, sym_comment, - ACTIONS(1591), 57, + ACTIONS(1551), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -73247,17 +74583,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73272,8 +74610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73288,19 +74624,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17327] = 4, + [18170] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(699), 1, + STATE(711), 1, sym_comment, - ACTIONS(1571), 58, + ACTIONS(1641), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73312,7 +74649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -73324,6 +74660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73338,8 +74676,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73354,19 +74690,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17397] = 4, + [18240] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(700), 1, + STATE(712), 1, sym_comment, - ACTIONS(1589), 58, + ACTIONS(1549), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73378,7 +74715,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -73390,6 +74726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73404,8 +74742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73420,19 +74756,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17467] = 4, + [18310] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(701), 1, + STATE(713), 1, sym_comment, - ACTIONS(1565), 58, + ACTIONS(1545), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73444,7 +74781,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -73456,6 +74792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73470,8 +74808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73486,19 +74822,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17537] = 4, + [18380] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(702), 1, + ACTIONS(999), 1, + ts_builtin_sym_end, + ACTIONS(1083), 1, + sym__automatic_semicolon, + STATE(714), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(981), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73510,18 +74850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73536,8 +74876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73552,19 +74890,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17607] = 4, + [18454] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(703), 1, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + STATE(715), 1, sym_comment, - ACTIONS(1521), 58, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1914), 1, + sym_variable_declarator, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [18544] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(716), 1, + sym_comment, + ACTIONS(1543), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73576,7 +74991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -73588,6 +75002,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73602,8 +75018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73618,19 +75032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17677] = 4, + [18614] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(704), 1, + STATE(717), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1541), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73642,7 +75057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -73654,6 +75068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73668,8 +75084,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73684,22 +75098,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17747] = 6, + [18684] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1041), 1, + ACTIONS(1047), 1, ts_builtin_sym_end, - ACTIONS(1071), 1, + ACTIONS(1097), 1, sym__automatic_semicolon, - STATE(705), 1, + STATE(718), 1, sym_comment, - ACTIONS(896), 56, + ACTIONS(973), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73711,7 +75126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -73722,6 +75136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73736,8 +75152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73752,19 +75166,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17821] = 4, + [18758] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(706), 1, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + STATE(719), 1, sym_comment, - ACTIONS(1521), 58, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1967), 1, + sym_variable_declarator, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [18848] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1053), 1, + ts_builtin_sym_end, + ACTIONS(1089), 1, + sym__automatic_semicolon, + STATE(720), 1, + sym_comment, + ACTIONS(965), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73776,18 +75270,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73802,8 +75296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73818,19 +75310,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17891] = 4, + [18922] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(707), 1, + ACTIONS(903), 1, + ts_builtin_sym_end, + ACTIONS(1657), 1, + sym__automatic_semicolon, + STATE(721), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(901), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73842,18 +75338,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73868,8 +75364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73884,19 +75378,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17961] = 4, + [18996] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(708), 1, + STATE(722), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1637), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73908,7 +75403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -73920,6 +75414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -73934,8 +75430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -73950,22 +75444,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18031] = 6, + [19066] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(999), 1, - ts_builtin_sym_end, - ACTIONS(1063), 1, - sym__automatic_semicolon, - STATE(709), 1, + STATE(723), 1, sym_comment, - ACTIONS(904), 56, + ACTIONS(1635), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -73977,17 +75469,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74002,8 +75496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74018,19 +75510,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18105] = 4, + [19136] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(710), 1, + ACTIONS(1023), 1, + ts_builtin_sym_end, + ACTIONS(1091), 1, + sym__automatic_semicolon, + STATE(724), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(989), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -74042,18 +75538,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74068,8 +75564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74084,22 +75578,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18175] = 6, + [19210] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1053), 1, - ts_builtin_sym_end, - ACTIONS(1095), 1, - sym__automatic_semicolon, - STATE(711), 1, + STATE(725), 1, sym_comment, - ACTIONS(912), 56, + ACTIONS(1539), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -74111,17 +75603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74136,8 +75630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74152,19 +75644,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18249] = 4, + [19280] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(712), 1, + STATE(726), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1537), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -74176,7 +75669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -74188,6 +75680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74202,8 +75696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74218,12 +75710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18319] = 4, + [19350] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(713), 1, + STATE(727), 1, sym_comment, ACTIONS(1521), 58, anon_sym_export, @@ -74231,6 +75723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -74242,7 +75735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -74254,6 +75746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74268,8 +75762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74284,19 +75776,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18389] = 4, + [19420] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(714), 1, + STATE(728), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1533), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -74308,7 +75801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -74320,6 +75812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74334,8 +75828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74350,22 +75842,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18459] = 4, + [19490] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(715), 1, + ACTIONS(899), 1, + ts_builtin_sym_end, + STATE(729), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(897), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -74374,18 +75869,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74400,8 +75895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74416,22 +75909,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18529] = 4, + [19562] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(716), 1, + ACTIONS(1659), 1, + ts_builtin_sym_end, + STATE(730), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1641), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -74440,18 +75936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74466,8 +75962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74482,19 +75976,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18599] = 4, + [19634] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(717), 1, + STATE(731), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1633), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -74506,7 +76001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -74518,6 +76012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74532,8 +76028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74548,95 +76042,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18669] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1405), 1, - sym_identifier, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - STATE(718), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1940), 1, - sym_variable_declarator, - ACTIONS(1211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 32, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [18759] = 4, + [19704] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(719), 1, + STATE(732), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1531), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -74648,7 +76067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -74660,6 +76078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74674,8 +76094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74690,19 +76108,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18829] = 4, + [19774] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(720), 1, + STATE(733), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1631), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -74714,7 +76133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -74726,6 +76144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74740,8 +76160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74756,19 +76174,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18899] = 4, + [19844] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(721), 1, + STATE(734), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1527), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -74780,7 +76199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -74792,6 +76210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74806,8 +76226,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74822,22 +76240,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18969] = 4, + [19914] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(722), 1, + ACTIONS(1661), 1, + ts_builtin_sym_end, + STATE(735), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1623), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -74846,18 +76267,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74872,8 +76293,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74888,22 +76307,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19039] = 4, + [19986] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(723), 1, + ACTIONS(1663), 1, + ts_builtin_sym_end, + STATE(736), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1621), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -74912,18 +76334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -74938,8 +76360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -74954,22 +76374,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19109] = 4, + [20058] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(724), 1, + ACTIONS(1665), 1, + ts_builtin_sym_end, + STATE(737), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1619), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -74978,18 +76401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75004,8 +76427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75020,22 +76441,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19179] = 4, + [20130] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(725), 1, + ACTIONS(1667), 1, + ts_builtin_sym_end, + STATE(738), 1, sym_comment, - ACTIONS(1521), 58, + ACTIONS(1617), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -75044,18 +76468,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75070,8 +76494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75086,22 +76508,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19249] = 4, + [20202] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(726), 1, + ACTIONS(1669), 1, + ts_builtin_sym_end, + STATE(739), 1, sym_comment, - ACTIONS(1529), 58, + ACTIONS(1615), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -75110,18 +76535,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75136,8 +76561,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75152,22 +76575,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19319] = 4, + [20274] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(727), 1, + ACTIONS(1671), 1, + ts_builtin_sym_end, + STATE(740), 1, sym_comment, - ACTIONS(1531), 58, + ACTIONS(1613), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -75176,18 +76602,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75202,8 +76628,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75218,20 +76642,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19389] = 5, + [20346] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1663), 1, + ACTIONS(1673), 1, ts_builtin_sym_end, - STATE(728), 1, + STATE(741), 1, sym_comment, - ACTIONS(1607), 57, + ACTIONS(1611), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -75244,7 +76669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -75255,6 +76679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75269,8 +76695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75285,20 +76709,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19461] = 5, + [20418] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1665), 1, + ACTIONS(1675), 1, ts_builtin_sym_end, - STATE(729), 1, + STATE(742), 1, sym_comment, - ACTIONS(1605), 57, + ACTIONS(1609), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -75311,7 +76736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -75322,6 +76746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75336,8 +76762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75352,20 +76776,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19533] = 5, + [20490] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1667), 1, + ACTIONS(1675), 1, ts_builtin_sym_end, - STATE(730), 1, + STATE(743), 1, sym_comment, - ACTIONS(1601), 57, + ACTIONS(1609), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -75378,7 +76803,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -75389,6 +76813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75403,8 +76829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75419,22 +76843,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19605] = 4, + [20562] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(731), 1, + ACTIONS(1677), 1, + ts_builtin_sym_end, + STATE(744), 1, sym_comment, - ACTIONS(1539), 58, + ACTIONS(1607), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -75443,18 +76870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75469,8 +76896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75485,22 +76910,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19675] = 4, + [20634] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(732), 1, + ACTIONS(1679), 1, + ts_builtin_sym_end, + STATE(745), 1, sym_comment, - ACTIONS(1539), 58, + ACTIONS(1605), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -75509,18 +76937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75535,8 +76963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75551,98 +76977,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19745] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1405), 1, - sym_identifier, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - STATE(733), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1890), 1, - sym_variable_declarator, - ACTIONS(1211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 32, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [19835] = 4, + [20706] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(734), 1, + ACTIONS(1681), 1, + ts_builtin_sym_end, + STATE(746), 1, sym_comment, - ACTIONS(1543), 58, + ACTIONS(1603), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -75651,18 +77004,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75677,8 +77030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75693,22 +77044,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19905] = 4, + [20778] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(735), 1, + ACTIONS(1683), 1, + ts_builtin_sym_end, + STATE(747), 1, sym_comment, - ACTIONS(1543), 58, + ACTIONS(1601), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -75717,18 +77071,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75743,8 +77097,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75759,22 +77111,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19975] = 4, + [20850] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(736), 1, + ACTIONS(1685), 1, + ts_builtin_sym_end, + STATE(748), 1, sym_comment, - ACTIONS(1543), 58, + ACTIONS(1599), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -75783,18 +77138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75809,8 +77164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75825,22 +77178,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20045] = 4, + [20922] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(737), 1, + ACTIONS(1685), 1, + ts_builtin_sym_end, + STATE(749), 1, sym_comment, - ACTIONS(1543), 58, + ACTIONS(1599), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -75849,18 +77205,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75875,8 +77231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75891,22 +77245,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20115] = 4, + [20994] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(738), 1, + ACTIONS(1687), 1, + ts_builtin_sym_end, + STATE(750), 1, sym_comment, - ACTIONS(1587), 58, + ACTIONS(1535), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -75915,18 +77272,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -75941,8 +77298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -75957,19 +77312,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20185] = 4, + [21066] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(739), 1, + STATE(751), 1, sym_comment, - ACTIONS(1545), 58, + ACTIONS(1571), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -75981,7 +77337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -75993,6 +77348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76007,8 +77364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76023,19 +77378,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20255] = 4, + [21136] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(740), 1, + STATE(752), 1, sym_comment, - ACTIONS(1543), 58, + ACTIONS(1573), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -76047,7 +77403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -76059,6 +77414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76073,8 +77430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76089,19 +77444,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20325] = 4, + [21206] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(741), 1, + STATE(753), 1, sym_comment, - ACTIONS(1543), 58, + ACTIONS(1573), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -76113,7 +77469,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -76125,6 +77480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76139,8 +77496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76155,22 +77510,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20395] = 4, + [21276] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(742), 1, + ACTIONS(1689), 1, + ts_builtin_sym_end, + STATE(754), 1, sym_comment, - ACTIONS(1547), 58, + ACTIONS(1593), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -76179,18 +77537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76205,8 +77563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76221,24 +77577,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20465] = 5, + [21348] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1669), 1, - ts_builtin_sym_end, - STATE(743), 1, + STATE(755), 1, sym_comment, - ACTIONS(1595), 57, + ACTIONS(1575), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -76247,17 +77602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76272,8 +77629,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76288,20 +77643,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20537] = 5, + [21418] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1671), 1, + ACTIONS(903), 1, ts_builtin_sym_end, - STATE(744), 1, + STATE(756), 1, sym_comment, - ACTIONS(1589), 57, + ACTIONS(901), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -76314,7 +77670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -76325,6 +77680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76339,8 +77696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76355,24 +77710,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20609] = 5, + [21490] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1673), 1, - ts_builtin_sym_end, - STATE(745), 1, + STATE(757), 1, sym_comment, - ACTIONS(1587), 57, + ACTIONS(1627), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -76381,17 +77735,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76406,8 +77762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76422,24 +77776,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20681] = 5, + [21560] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1675), 1, - ts_builtin_sym_end, - STATE(746), 1, + STATE(758), 1, sym_comment, - ACTIONS(1593), 57, + ACTIONS(1573), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -76448,17 +77801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76473,8 +77828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76489,21 +77842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20753] = 5, + [21630] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(747), 1, + STATE(759), 1, sym_comment, - ACTIONS(930), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(928), 56, + ACTIONS(1573), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -76515,17 +77867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76540,8 +77894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76556,24 +77908,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20825] = 5, + [21700] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, - ts_builtin_sym_end, - STATE(748), 1, + STATE(760), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1573), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -76582,17 +77933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76607,8 +77960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76623,24 +77974,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20897] = 5, + [21770] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, - ts_builtin_sym_end, - STATE(749), 1, + STATE(761), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1573), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -76649,17 +77999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76674,8 +78026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76690,19 +78040,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20969] = 4, + [21840] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(750), 1, + STATE(762), 1, sym_comment, - ACTIONS(1549), 58, + ACTIONS(1625), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -76714,7 +78065,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -76726,6 +78076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76740,8 +78092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76756,19 +78106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21039] = 4, + [21910] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(751), 1, + STATE(763), 1, sym_comment, - ACTIONS(1551), 58, + ACTIONS(1623), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -76780,7 +78131,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -76792,6 +78142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76806,8 +78158,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76822,20 +78172,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21109] = 5, + [21980] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1691), 1, ts_builtin_sym_end, - STATE(752), 1, + STATE(764), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1589), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -76848,7 +78199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -76859,6 +78209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76873,8 +78225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76889,22 +78239,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21181] = 4, + [22052] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(753), 1, + ACTIONS(1693), 1, + ts_builtin_sym_end, + STATE(765), 1, sym_comment, - ACTIONS(1553), 58, + ACTIONS(1587), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -76913,18 +78266,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -76939,8 +78292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -76955,19 +78306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21251] = 4, + [22124] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(754), 1, + STATE(766), 1, sym_comment, - ACTIONS(1555), 58, + ACTIONS(1621), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -76979,7 +78331,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -76991,6 +78342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77005,8 +78358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77021,22 +78372,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21321] = 4, + [22194] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(755), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(767), 1, sym_comment, - ACTIONS(1557), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -77045,18 +78399,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77071,8 +78425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77087,22 +78439,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21391] = 4, + [22266] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(756), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(768), 1, sym_comment, - ACTIONS(1579), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -77111,18 +78466,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77137,8 +78492,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77153,22 +78506,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21461] = 4, + [22338] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(757), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(769), 1, sym_comment, - ACTIONS(1559), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -77177,18 +78533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77203,8 +78559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77219,25 +78573,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21531] = 6, + [22410] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(932), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - ACTIONS(1047), 1, - sym__automatic_semicolon, - STATE(758), 1, + STATE(770), 1, sym_comment, - ACTIONS(864), 56, + ACTIONS(1585), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -77246,7 +78600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -77257,6 +78610,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77271,8 +78626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77287,20 +78640,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21605] = 5, + [22482] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(759), 1, + STATE(771), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1585), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -77313,7 +78667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -77324,6 +78677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77338,8 +78693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77354,20 +78707,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21677] = 5, + [22554] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(760), 1, + STATE(772), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1585), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -77380,7 +78734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -77391,6 +78744,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77405,8 +78760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77421,22 +78774,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21749] = 4, + [22626] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(761), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(773), 1, sym_comment, - ACTIONS(1563), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -77445,18 +78801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77471,8 +78827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77487,20 +78841,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21819] = 5, + [22698] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(762), 1, + STATE(774), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1585), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -77513,7 +78868,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -77524,6 +78878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77538,8 +78894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77554,22 +78908,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21891] = 4, + [22770] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(763), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(775), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -77578,18 +78935,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77604,8 +78961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77620,22 +78975,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21961] = 4, + [22842] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(764), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(776), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -77644,18 +79002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77670,8 +79028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77686,20 +79042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22031] = 5, + [22914] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(765), 1, + STATE(777), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1585), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -77712,7 +79069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -77723,6 +79079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77737,8 +79095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77753,22 +79109,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22103] = 4, + [22986] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(766), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(778), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -77777,18 +79136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77803,8 +79162,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77819,22 +79176,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22173] = 4, + [23058] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(767), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(779), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -77843,18 +79203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77869,8 +79229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77885,22 +79243,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22243] = 4, + [23130] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(768), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(780), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -77909,18 +79270,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -77935,8 +79296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -77951,20 +79310,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22313] = 5, + [23202] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(769), 1, + STATE(781), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1585), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -77977,7 +79337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -77988,6 +79347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78002,8 +79363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78018,22 +79377,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22385] = 4, + [23274] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(770), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(782), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -78042,18 +79404,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78068,8 +79430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78084,20 +79444,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22455] = 5, + [23346] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(771), 1, + STATE(783), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1585), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -78110,7 +79471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -78121,6 +79481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78135,8 +79497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78151,22 +79511,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22527] = 4, + [23418] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(772), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(784), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -78175,18 +79538,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78201,8 +79564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78217,20 +79578,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22597] = 5, + [23490] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(773), 1, + STATE(785), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1585), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -78243,7 +79605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -78254,6 +79615,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78268,8 +79631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78284,22 +79645,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22669] = 4, + [23562] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(774), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(786), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1585), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -78308,18 +79672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78334,8 +79698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78350,22 +79712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22739] = 4, + [23634] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(775), 1, + ACTIONS(1697), 1, + ts_builtin_sym_end, + STATE(787), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1583), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -78374,18 +79739,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78400,8 +79765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78416,22 +79779,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22809] = 4, + [23706] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(776), 1, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + STATE(788), 1, sym_comment, - ACTIONS(1519), 58, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1949), 1, + sym_variable_declarator, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [23796] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1699), 1, + ts_builtin_sym_end, + STATE(789), 1, + sym_comment, + ACTIONS(1581), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -78440,18 +79882,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78466,8 +79908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78482,19 +79922,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22879] = 4, + [23868] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(777), 1, + STATE(790), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1577), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -78506,7 +79947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -78518,6 +79958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78532,8 +79974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78548,22 +79988,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22949] = 4, + [23938] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(778), 1, + ACTIONS(1701), 1, + ts_builtin_sym_end, + STATE(791), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1637), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -78572,18 +80015,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78598,8 +80041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78614,22 +80055,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23019] = 4, + [24010] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(779), 1, + ACTIONS(1703), 1, + ts_builtin_sym_end, + STATE(792), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1635), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -78638,18 +80082,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78664,8 +80108,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78680,20 +80122,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23089] = 5, + [24082] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1705), 1, ts_builtin_sym_end, - STATE(780), 1, + STATE(793), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1579), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -78706,7 +80149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -78717,6 +80159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78731,8 +80175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78747,22 +80189,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23161] = 4, + [24154] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(781), 1, + ACTIONS(1707), 1, + ts_builtin_sym_end, + STATE(794), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1577), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -78771,18 +80216,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78797,8 +80242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78813,19 +80256,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23231] = 4, + [24226] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(782), 1, + STATE(795), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1619), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -78837,7 +80281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -78849,6 +80292,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78863,8 +80308,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78879,20 +80322,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23301] = 5, + [24296] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1707), 1, ts_builtin_sym_end, - STATE(783), 1, + STATE(796), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1577), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -78905,7 +80349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -78916,6 +80359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78930,8 +80375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -78946,24 +80389,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23373] = 5, + [24368] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, - ts_builtin_sym_end, - STATE(784), 1, + STATE(797), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1577), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -78972,17 +80414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -78997,8 +80441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79013,24 +80455,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23445] = 5, + [24438] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, - ts_builtin_sym_end, - STATE(785), 1, + STATE(798), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1579), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -79039,17 +80480,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79064,8 +80507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79080,22 +80521,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23517] = 4, + [24508] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(786), 1, + ACTIONS(1709), 1, + ts_builtin_sym_end, + STATE(799), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1573), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -79104,18 +80548,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79130,8 +80574,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79146,19 +80588,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23587] = 4, + [24580] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(787), 1, + STATE(800), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1617), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -79170,7 +80613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -79182,6 +80624,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79196,8 +80640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79212,20 +80654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23657] = 5, + [24650] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(788), 1, + STATE(801), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1573), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -79238,7 +80681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -79249,6 +80691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79263,8 +80707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79279,20 +80721,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23729] = 5, + [24722] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(789), 1, + STATE(802), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1573), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -79305,7 +80748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -79316,6 +80758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79330,8 +80774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79346,20 +80788,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23801] = 5, + [24794] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(790), 1, + STATE(803), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1573), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -79372,7 +80815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -79383,6 +80825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79397,8 +80841,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79413,24 +80855,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23873] = 5, + [24866] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, - ts_builtin_sym_end, - STATE(791), 1, + STATE(804), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1615), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -79439,17 +80880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79464,8 +80907,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79480,24 +80921,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23945] = 5, + [24936] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, - ts_builtin_sym_end, - STATE(792), 1, + STATE(805), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(1613), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -79506,17 +80946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79531,8 +80973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79547,22 +80987,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24017] = 4, + [25006] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(793), 1, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(806), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1575), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -79571,18 +81014,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79597,8 +81040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79613,19 +81054,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24087] = 4, + [25078] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(794), 1, + STATE(807), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1611), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -79637,7 +81079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -79649,6 +81090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79663,8 +81106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79679,22 +81120,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24157] = 4, + [25148] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(795), 1, + ACTIONS(1709), 1, + ts_builtin_sym_end, + STATE(808), 1, sym_comment, - ACTIONS(1519), 58, + ACTIONS(1573), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -79703,18 +81147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79729,8 +81173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79745,25 +81187,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24227] = 6, + [25220] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - ACTIONS(1061), 1, - sym__automatic_semicolon, - STATE(796), 1, + STATE(809), 1, sym_comment, - ACTIONS(991), 56, + ACTIONS(1573), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -79772,7 +81214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -79783,6 +81224,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79797,8 +81240,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79813,25 +81254,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24301] = 6, + [25292] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1031), 1, + ACTIONS(1713), 1, ts_builtin_sym_end, - ACTIONS(1097), 1, - sym__automatic_semicolon, - STATE(797), 1, + STATE(810), 1, sym_comment, - ACTIONS(975), 56, + ACTIONS(1571), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -79840,7 +81281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -79851,6 +81291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79865,8 +81307,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79881,22 +81321,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24375] = 6, + [25364] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1021), 1, + ACTIONS(1057), 1, ts_builtin_sym_end, - ACTIONS(1087), 1, + ACTIONS(1095), 1, sym__automatic_semicolon, - STATE(798), 1, + STATE(811), 1, sym_comment, - ACTIONS(967), 56, + ACTIONS(957), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -79908,7 +81349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -79919,6 +81359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -79933,8 +81375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -79949,24 +81389,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24449] = 5, + [25438] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1037), 1, ts_builtin_sym_end, - STATE(799), 1, + ACTIONS(1073), 1, + sym__automatic_semicolon, + STATE(812), 1, sym_comment, - ACTIONS(1519), 57, + ACTIONS(949), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -79975,7 +81417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -79986,6 +81427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80000,8 +81443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80016,19 +81457,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24521] = 4, + [25512] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(800), 1, + ACTIONS(1041), 1, + ts_builtin_sym_end, + ACTIONS(1075), 1, + sym__automatic_semicolon, + STATE(813), 1, sym_comment, - ACTIONS(1593), 58, + ACTIONS(941), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -80040,18 +81485,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80066,8 +81511,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80082,24 +81525,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24591] = 5, + [25586] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1679), 1, - ts_builtin_sym_end, - STATE(801), 1, + STATE(814), 1, sym_comment, - ACTIONS(1563), 57, + ACTIONS(1581), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -80108,17 +81550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80133,8 +81577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80149,24 +81591,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24663] = 5, + [25656] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1681), 1, - ts_builtin_sym_end, - STATE(802), 1, + STATE(815), 1, sym_comment, - ACTIONS(1559), 57, + ACTIONS(1609), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -80175,17 +81616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80200,8 +81643,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80216,19 +81657,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24735] = 4, + [25726] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(803), 1, + STATE(816), 1, sym_comment, - ACTIONS(1595), 58, + ACTIONS(1609), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -80240,7 +81682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -80252,6 +81693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80266,8 +81709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80282,24 +81723,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24805] = 5, + [25796] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1683), 1, - ts_builtin_sym_end, - STATE(804), 1, + STATE(817), 1, sym_comment, - ACTIONS(1557), 57, + ACTIONS(1583), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -80308,17 +81748,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80333,8 +81775,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80349,24 +81789,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24877] = 5, + [25866] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1685), 1, + ACTIONS(1555), 1, ts_builtin_sym_end, - STATE(805), 1, + STATE(818), 1, sym_comment, - ACTIONS(1555), 57, + ACTIONS(1479), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -80375,17 +81815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80400,8 +81842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80416,19 +81856,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24949] = 4, + [25938] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(806), 1, + STATE(819), 1, sym_comment, - ACTIONS(1601), 58, + ACTIONS(1585), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -80440,7 +81881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -80452,6 +81892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80466,8 +81908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80482,19 +81922,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25019] = 4, + [26008] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(807), 1, + STATE(820), 1, sym_comment, - ACTIONS(1605), 58, + ACTIONS(1585), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -80506,7 +81947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -80518,6 +81958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80532,8 +81974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80548,19 +81988,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25089] = 4, + [26078] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(808), 1, + STATE(821), 1, sym_comment, - ACTIONS(1607), 58, + ACTIONS(1585), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -80572,7 +82013,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -80584,6 +82024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80598,8 +82040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80614,24 +82054,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25159] = 5, + [26148] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1687), 1, - ts_builtin_sym_end, - STATE(809), 1, + STATE(822), 1, sym_comment, - ACTIONS(1553), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -80640,17 +82079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80665,8 +82106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80681,24 +82120,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25231] = 5, + [26218] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1689), 1, - ts_builtin_sym_end, - STATE(810), 1, + STATE(823), 1, sym_comment, - ACTIONS(1551), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -80707,17 +82145,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80732,8 +82172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80748,20 +82186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25303] = 5, + [26288] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - STATE(811), 1, + STATE(824), 1, sym_comment, - ACTIONS(874), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -80773,18 +82211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80799,8 +82238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80815,20 +82252,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25375] = 5, + [26358] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(941), 1, - ts_builtin_sym_end, - STATE(812), 1, + STATE(825), 1, sym_comment, - ACTIONS(939), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -80840,18 +82277,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80866,8 +82304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80882,22 +82318,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25447] = 6, + [26428] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(932), 1, - ts_builtin_sym_end, - ACTIONS(1691), 1, - sym__automatic_semicolon, - STATE(813), 1, + STATE(826), 1, sym_comment, - ACTIONS(864), 56, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -80909,17 +82343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -80934,8 +82370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -80950,20 +82384,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25521] = 5, + [26498] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1693), 1, + ACTIONS(1715), 1, ts_builtin_sym_end, - STATE(814), 1, + STATE(827), 1, sym_comment, - ACTIONS(1549), 57, + ACTIONS(1569), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -80976,7 +82411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -80987,6 +82421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81001,8 +82437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81017,100 +82451,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25593] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1405), 1, - sym_identifier, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - STATE(815), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1959), 1, - sym_variable_declarator, - ACTIONS(1211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 32, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [25683] = 5, + [26570] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(816), 1, - sym_comment, - ACTIONS(876), 2, - sym__automatic_semicolon, + ACTIONS(1717), 1, ts_builtin_sym_end, - ACTIONS(874), 56, + STATE(828), 1, + sym_comment, + ACTIONS(1567), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -81119,7 +82478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -81130,6 +82488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81144,8 +82504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81160,20 +82518,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25755] = 5, + [26642] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1695), 1, + ACTIONS(1719), 1, ts_builtin_sym_end, - STATE(817), 1, + STATE(829), 1, sym_comment, - ACTIONS(1547), 57, + ACTIONS(1565), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -81186,7 +82545,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -81197,6 +82555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81211,8 +82571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81227,24 +82585,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25827] = 5, + [26714] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(818), 1, - sym_comment, - ACTIONS(941), 2, - sym__automatic_semicolon, + ACTIONS(1721), 1, ts_builtin_sym_end, - ACTIONS(939), 56, + STATE(830), 1, + sym_comment, + ACTIONS(1563), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -81253,7 +82612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -81264,6 +82622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81278,8 +82638,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81294,20 +82652,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25899] = 5, + [26786] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, + ACTIONS(1723), 1, ts_builtin_sym_end, - STATE(819), 1, + STATE(831), 1, sym_comment, - ACTIONS(1543), 57, + ACTIONS(1561), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -81320,7 +82679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -81331,6 +82689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81345,8 +82705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81361,24 +82719,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25971] = 5, + [26858] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, - ts_builtin_sym_end, - STATE(820), 1, + STATE(832), 1, sym_comment, - ACTIONS(1543), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -81387,17 +82744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81412,8 +82771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81428,20 +82785,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26043] = 5, + [26928] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1322), 1, + anon_sym_EQ_GT, + ACTIONS(1382), 1, + sym_identifier, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + STATE(833), 1, + sym_comment, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1916), 1, + sym_variable_declarator, + ACTIONS(1211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 32, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [27018] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1699), 1, + ACTIONS(1725), 1, ts_builtin_sym_end, - STATE(821), 1, + STATE(834), 1, sym_comment, - ACTIONS(1545), 57, + ACTIONS(1557), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -81454,7 +82888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -81465,6 +82898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81479,8 +82914,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81495,24 +82928,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26115] = 5, + [27090] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, - ts_builtin_sym_end, - STATE(822), 1, + STATE(835), 1, sym_comment, - ACTIONS(1543), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -81521,17 +82953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81546,8 +82980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81562,20 +82994,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26187] = 5, + [27160] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(823), 1, + STATE(836), 1, sym_comment, - ACTIONS(1543), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -81588,7 +83021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -81599,6 +83031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81613,8 +83047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81629,22 +83061,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26259] = 4, + [27232] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(824), 1, + ACTIONS(1651), 1, + ts_builtin_sym_end, + STATE(837), 1, sym_comment, - ACTIONS(874), 58, + ACTIONS(1519), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -81653,18 +83088,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81679,8 +83114,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81695,20 +83128,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26329] = 5, + [27304] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(825), 1, + STATE(838), 1, sym_comment, - ACTIONS(1543), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -81721,7 +83155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -81732,6 +83165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81746,8 +83181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81762,22 +83195,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26401] = 4, + [27376] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(826), 1, + ACTIONS(1651), 1, + ts_builtin_sym_end, + STATE(839), 1, sym_comment, - ACTIONS(939), 58, + ACTIONS(1519), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -81786,18 +83222,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81812,8 +83248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81828,20 +83262,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26471] = 5, + [27448] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(827), 1, + STATE(840), 1, sym_comment, - ACTIONS(1543), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -81854,7 +83289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -81865,6 +83299,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81879,8 +83315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81895,25 +83329,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26543] = 6, + [27520] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1025), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - ACTIONS(1077), 1, - sym__automatic_semicolon, - STATE(828), 1, + STATE(841), 1, sym_comment, - ACTIONS(920), 56, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -81922,7 +83356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -81933,6 +83366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -81947,8 +83382,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -81963,20 +83396,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26617] = 5, + [27592] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1701), 1, + ACTIONS(1727), 1, ts_builtin_sym_end, - STATE(829), 1, + STATE(842), 1, sym_comment, - ACTIONS(1539), 57, + ACTIONS(1625), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -81989,7 +83423,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82000,6 +83433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82014,8 +83449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82030,22 +83463,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26689] = 4, + [27664] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(830), 1, + ACTIONS(1651), 1, + ts_builtin_sym_end, + STATE(843), 1, sym_comment, - ACTIONS(1613), 58, + ACTIONS(1519), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -82054,18 +83490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82080,8 +83516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82096,24 +83530,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26759] = 5, + [27736] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1701), 1, - ts_builtin_sym_end, - STATE(831), 1, + STATE(844), 1, sym_comment, - ACTIONS(1539), 57, + ACTIONS(1607), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -82122,17 +83555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82147,8 +83582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82163,20 +83596,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26831] = 5, + [27806] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1703), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(832), 1, + STATE(845), 1, sym_comment, - ACTIONS(1585), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -82189,7 +83623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82200,6 +83633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82214,8 +83649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82230,24 +83663,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26903] = 5, + [27878] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1705), 1, - ts_builtin_sym_end, - STATE(833), 1, + STATE(846), 1, sym_comment, - ACTIONS(1583), 57, + ACTIONS(931), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(929), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -82256,7 +83690,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82267,6 +83700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82281,8 +83716,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82297,20 +83730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26975] = 5, + [27950] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1707), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(834), 1, + STATE(847), 1, sym_comment, - ACTIONS(1531), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -82323,7 +83757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82334,6 +83767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82348,8 +83783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82364,20 +83797,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27047] = 5, + [28022] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1709), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(835), 1, + STATE(848), 1, sym_comment, - ACTIONS(1529), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -82390,7 +83824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82401,6 +83834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82415,8 +83850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82431,22 +83864,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27119] = 4, + [28094] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(836), 1, + ACTIONS(1729), 1, + ts_builtin_sym_end, + STATE(849), 1, sym_comment, - ACTIONS(1617), 58, + ACTIONS(1527), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -82455,18 +83891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82481,8 +83917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82497,19 +83931,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27189] = 4, + [28166] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(837), 1, + STATE(850), 1, sym_comment, - ACTIONS(1619), 58, + ACTIONS(1605), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -82521,7 +83956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82533,6 +83967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82547,8 +83983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82563,20 +83997,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27259] = 5, + [28236] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(838), 1, + STATE(851), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -82589,7 +84024,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82600,6 +84034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82614,8 +84050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82630,20 +84064,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27331] = 5, + [28308] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(839), 1, + STATE(852), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -82656,7 +84091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82667,6 +84101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82681,8 +84117,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82697,20 +84131,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27403] = 5, + [28380] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(840), 1, + STATE(853), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -82723,7 +84158,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82734,6 +84168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82748,8 +84184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82764,22 +84198,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27475] = 4, + [28452] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(841), 1, + ACTIONS(1651), 1, + ts_builtin_sym_end, + STATE(854), 1, sym_comment, - ACTIONS(1621), 58, + ACTIONS(1519), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -82788,18 +84225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82814,8 +84251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82830,20 +84265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27545] = 5, + [28524] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(842), 1, + STATE(855), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -82856,7 +84292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82867,6 +84302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82881,8 +84318,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82897,20 +84332,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27617] = 5, + [28596] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(843), 1, + STATE(856), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -82923,7 +84359,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -82934,6 +84369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -82948,8 +84385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -82964,20 +84399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27689] = 5, + [28668] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1731), 1, ts_builtin_sym_end, - STATE(844), 1, + STATE(857), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1531), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -82990,7 +84426,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -83001,6 +84436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83015,8 +84452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83031,20 +84466,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27761] = 5, + [28740] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(845), 1, + STATE(858), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -83057,7 +84493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -83068,6 +84503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83082,8 +84519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83098,20 +84533,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27833] = 5, + [28812] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(846), 1, + STATE(859), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -83124,7 +84560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -83135,6 +84570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83149,8 +84586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83165,25 +84600,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27905] = 6, + [28884] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1011), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - ACTIONS(1089), 1, - sym__automatic_semicolon, - STATE(847), 1, + STATE(860), 1, sym_comment, - ACTIONS(959), 56, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -83192,7 +84627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -83203,6 +84637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83217,8 +84653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83233,24 +84667,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27979] = 5, + [28956] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, - ts_builtin_sym_end, - STATE(848), 1, + STATE(861), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -83259,17 +84692,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83284,8 +84719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83300,20 +84733,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28051] = 5, + [29026] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1733), 1, ts_builtin_sym_end, - STATE(849), 1, + STATE(862), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1553), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -83326,7 +84760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -83337,6 +84770,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83351,8 +84786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83367,24 +84800,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28123] = 5, + [29098] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, - ts_builtin_sym_end, - STATE(850), 1, + STATE(863), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -83393,17 +84825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83418,8 +84852,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83434,24 +84866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28195] = 5, + [29168] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, - ts_builtin_sym_end, - STATE(851), 1, + STATE(864), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1735), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -83460,17 +84891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83485,8 +84918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83501,24 +84932,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28267] = 5, + [29238] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, - ts_builtin_sym_end, - STATE(852), 1, + STATE(865), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1603), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -83527,17 +84957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83552,8 +84984,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83568,24 +84998,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28339] = 5, + [29308] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, - ts_builtin_sym_end, - STATE(853), 1, + STATE(866), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1601), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -83594,17 +85023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83619,8 +85050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83635,19 +85064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28411] = 4, + [29378] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(854), 1, + STATE(867), 1, sym_comment, - ACTIONS(1629), 58, + ACTIONS(1599), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -83659,7 +85089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -83671,6 +85100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83685,8 +85116,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83701,24 +85130,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28481] = 5, + [29448] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1003), 1, ts_builtin_sym_end, - STATE(855), 1, + ACTIONS(1087), 1, + sym__automatic_semicolon, + STATE(868), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(933), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -83727,7 +85158,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -83738,6 +85168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83752,8 +85184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83768,20 +85198,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28553] = 5, + [29522] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1737), 1, ts_builtin_sym_end, - STATE(856), 1, + STATE(869), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1633), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -83794,7 +85225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -83805,6 +85235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83819,8 +85251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83835,20 +85265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28625] = 5, + [29594] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1739), 1, ts_builtin_sym_end, - STATE(857), 1, + STATE(870), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1631), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -83861,7 +85292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -83872,6 +85302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83886,8 +85318,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83902,19 +85332,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28697] = 4, + [29666] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(858), 1, + STATE(871), 1, sym_comment, - ACTIONS(1631), 58, + ACTIONS(1585), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -83926,7 +85357,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -83938,6 +85368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -83952,8 +85384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -83968,20 +85398,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28767] = 5, + [29736] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1741), 1, ts_builtin_sym_end, - STATE(859), 1, + STATE(872), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1551), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -83994,7 +85425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -84005,6 +85435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84019,8 +85451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84035,20 +85465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28839] = 5, + [29808] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1743), 1, ts_builtin_sym_end, - STATE(860), 1, + STATE(873), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1549), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -84061,7 +85492,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -84072,6 +85502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84086,8 +85518,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84102,24 +85532,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28911] = 5, + [29880] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, - ts_builtin_sym_end, - STATE(861), 1, + STATE(874), 1, sym_comment, - ACTIONS(1521), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -84128,17 +85557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84153,8 +85584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84169,24 +85598,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28983] = 5, + [29950] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1713), 1, - ts_builtin_sym_end, - STATE(862), 1, + STATE(875), 1, sym_comment, - ACTIONS(1565), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -84195,17 +85623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84220,8 +85650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84236,20 +85664,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29055] = 5, + [30020] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1715), 1, + ACTIONS(1745), 1, ts_builtin_sym_end, - STATE(863), 1, + STATE(876), 1, sym_comment, - ACTIONS(1603), 57, + ACTIONS(1545), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -84262,7 +85691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -84273,6 +85701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84287,8 +85717,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84303,22 +85731,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29127] = 4, + [30092] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(864), 1, + ACTIONS(1747), 1, + ts_builtin_sym_end, + STATE(877), 1, sym_comment, - ACTIONS(1583), 58, + ACTIONS(1543), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -84327,18 +85758,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84353,8 +85784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84369,20 +85798,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29197] = 5, + [30164] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1717), 1, + ACTIONS(1749), 1, ts_builtin_sym_end, - STATE(865), 1, + STATE(878), 1, sym_comment, - ACTIONS(1609), 57, + ACTIONS(1541), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -84395,7 +85825,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -84406,6 +85835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84420,8 +85851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84436,24 +85865,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29269] = 5, + [30236] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1719), 1, - ts_builtin_sym_end, - STATE(866), 1, + STATE(879), 1, sym_comment, - ACTIONS(1571), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -84462,17 +85890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84487,8 +85917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84503,24 +85931,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29341] = 5, + [30306] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1721), 1, - ts_builtin_sym_end, - STATE(867), 1, + STATE(880), 1, sym_comment, - ACTIONS(1573), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -84529,17 +85956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84554,8 +85983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84570,12 +85997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29413] = 4, + [30376] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(868), 1, + STATE(881), 1, sym_comment, ACTIONS(1585), 58, anon_sym_export, @@ -84583,6 +86010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -84594,7 +86022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -84606,6 +86033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84620,8 +86049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84636,24 +86063,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29483] = 5, + [30446] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1723), 1, - ts_builtin_sym_end, - STATE(869), 1, + STATE(882), 1, sym_comment, - ACTIONS(1611), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -84662,17 +86088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84687,8 +86115,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84703,24 +86129,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29555] = 5, + [30516] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1725), 1, - ts_builtin_sym_end, - STATE(870), 1, + STATE(883), 1, sym_comment, - ACTIONS(1615), 57, + ACTIONS(1585), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -84729,17 +86154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84754,8 +86181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84770,24 +86195,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29627] = 5, + [30586] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1727), 1, - ts_builtin_sym_end, - STATE(871), 1, + STATE(884), 1, sym_comment, - ACTIONS(1633), 57, + ACTIONS(1587), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -84796,17 +86220,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84821,8 +86247,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84837,24 +86261,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29699] = 5, + [30656] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1729), 1, - ts_builtin_sym_end, - STATE(872), 1, + STATE(885), 1, sym_comment, - ACTIONS(1623), 57, + ACTIONS(1589), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -84863,17 +86286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84888,8 +86313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84904,22 +86327,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29771] = 6, + [30726] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, - ts_builtin_sym_end, - ACTIONS(1731), 1, - sym__automatic_semicolon, - STATE(873), 1, + STATE(886), 1, sym_comment, - ACTIONS(874), 56, + ACTIONS(1591), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -84931,17 +86352,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -84956,8 +86379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -84972,20 +86393,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29845] = 5, + [30796] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1567), 1, - ts_builtin_sym_end, - STATE(874), 1, + STATE(887), 1, sym_comment, - ACTIONS(1479), 57, + ACTIONS(927), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(925), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -84997,18 +86420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85023,8 +86446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85039,101 +86460,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29917] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1304), 1, - anon_sym_EQ_GT, - ACTIONS(1405), 1, - sym_identifier, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - STATE(875), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1930), 1, - sym_variable_declarator, - ACTIONS(1211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 32, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [30007] = 6, + [30868] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, + ACTIONS(1751), 1, ts_builtin_sym_end, - ACTIONS(1733), 1, - sym__automatic_semicolon, - STATE(876), 1, + STATE(888), 1, sym_comment, - ACTIONS(874), 56, + ACTIONS(1533), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -85142,7 +86487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -85153,6 +86497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85167,8 +86513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85183,24 +86527,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30081] = 5, + [30940] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(941), 1, - ts_builtin_sym_end, - STATE(877), 1, + STATE(889), 1, sym_comment, - ACTIONS(939), 57, + ACTIONS(1593), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -85209,17 +86552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85234,8 +86579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85250,20 +86593,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30153] = 5, + [31010] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1735), 1, + ACTIONS(1753), 1, ts_builtin_sym_end, - STATE(878), 1, + STATE(890), 1, sym_comment, - ACTIONS(1635), 57, + ACTIONS(1521), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -85276,7 +86620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -85287,6 +86630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85301,8 +86646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85317,20 +86660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30225] = 5, + [31082] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1737), 1, + ACTIONS(1755), 1, ts_builtin_sym_end, - STATE(879), 1, + STATE(891), 1, sym_comment, - ACTIONS(1625), 57, + ACTIONS(1537), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -85343,7 +86687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -85354,6 +86697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85368,8 +86713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85384,24 +86727,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30297] = 5, + [31154] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1739), 1, - ts_builtin_sym_end, - STATE(880), 1, + STATE(892), 1, sym_comment, - ACTIONS(1639), 57, + ACTIONS(1535), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -85410,17 +86752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85435,8 +86779,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85451,20 +86793,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30369] = 5, + [31224] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1741), 1, + ACTIONS(1757), 1, ts_builtin_sym_end, - STATE(881), 1, + STATE(893), 1, sym_comment, - ACTIONS(1527), 57, + ACTIONS(1539), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -85477,7 +86820,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -85488,6 +86830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85502,8 +86846,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85518,20 +86860,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30441] = 5, + [31296] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1743), 1, + ACTIONS(1759), 1, ts_builtin_sym_end, - STATE(882), 1, + STATE(894), 1, sym_comment, - ACTIONS(1641), 57, + ACTIONS(1627), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -85544,7 +86887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -85555,6 +86897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85569,8 +86913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85585,19 +86927,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30513] = 4, + [31368] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(883), 1, + ACTIONS(1529), 1, + ts_builtin_sym_end, + STATE(895), 1, sym_comment, - ACTIONS(1745), 58, + ACTIONS(1495), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -85609,18 +86953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85635,8 +86980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85651,24 +86994,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30583] = 5, + [31440] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1739), 1, - ts_builtin_sym_end, - STATE(884), 1, + STATE(896), 1, sym_comment, - ACTIONS(1639), 57, + ACTIONS(1599), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -85677,17 +87019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85702,8 +87046,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85718,24 +87060,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30655] = 5, + [31510] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1747), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(885), 1, + STATE(897), 1, sym_comment, - ACTIONS(1643), 57, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -85744,7 +87086,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -85755,6 +87096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85769,8 +87112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85785,24 +87126,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30727] = 5, + [31581] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1749), 1, + ACTIONS(1759), 1, ts_builtin_sym_end, - STATE(886), 1, + STATE(898), 1, sym_comment, - ACTIONS(1637), 57, + ACTIONS(1627), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -85811,7 +87152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -85822,6 +87162,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85836,8 +87178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85852,24 +87192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30799] = 5, + [31652] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1751), 1, + ACTIONS(1661), 1, ts_builtin_sym_end, - STATE(887), 1, + STATE(899), 1, sym_comment, - ACTIONS(1579), 57, + ACTIONS(1623), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, 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, @@ -85878,7 +87218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -85889,6 +87228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85903,8 +87244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85919,20 +87258,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30871] = 5, + [31723] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(876), 1, + ACTIONS(1707), 1, ts_builtin_sym_end, - STATE(888), 1, + STATE(900), 1, sym_comment, - ACTIONS(874), 56, + ACTIONS(1577), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -85944,7 +87284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -85955,6 +87294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -85969,8 +87310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -85985,20 +87324,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30942] = 5, + [31794] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1675), 1, + ACTIONS(1705), 1, ts_builtin_sym_end, - STATE(889), 1, + STATE(901), 1, sym_comment, - ACTIONS(1593), 56, + ACTIONS(1579), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86010,7 +87350,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86021,6 +87360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86035,8 +87376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86051,20 +87390,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31013] = 5, + [31865] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1749), 1, + ACTIONS(1665), 1, ts_builtin_sym_end, - STATE(890), 1, + STATE(902), 1, sym_comment, - ACTIONS(1637), 56, + ACTIONS(1619), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86076,7 +87416,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86087,6 +87426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86101,8 +87442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86117,20 +87456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31084] = 5, + [31936] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, + ACTIONS(1703), 1, ts_builtin_sym_end, - STATE(891), 1, + STATE(903), 1, sym_comment, - ACTIONS(1543), 56, + ACTIONS(1635), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86142,7 +87482,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86153,6 +87492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86167,8 +87508,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86183,20 +87522,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31155] = 5, + [32007] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(892), 1, + STATE(904), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1573), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86208,7 +87548,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86219,6 +87558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86233,8 +87574,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86249,20 +87588,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31226] = 5, + [32078] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1739), 1, + ACTIONS(1667), 1, ts_builtin_sym_end, - STATE(893), 1, + STATE(905), 1, sym_comment, - ACTIONS(1639), 56, + ACTIONS(1617), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86274,7 +87614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86285,6 +87624,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86299,8 +87640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86315,20 +87654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31297] = 5, + [32149] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1739), 1, + ACTIONS(1701), 1, ts_builtin_sym_end, - STATE(894), 1, + STATE(906), 1, sym_comment, - ACTIONS(1639), 56, + ACTIONS(1637), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86340,7 +87680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86351,6 +87690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86365,8 +87706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86381,20 +87720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31368] = 5, + [32220] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1741), 1, ts_builtin_sym_end, - STATE(895), 1, + STATE(907), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1551), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86406,7 +87746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86417,6 +87756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86431,8 +87772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86447,20 +87786,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31439] = 5, + [32291] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1743), 1, ts_builtin_sym_end, - STATE(896), 1, + STATE(908), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1549), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86472,7 +87812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86483,6 +87822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86497,8 +87838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86513,20 +87852,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31510] = 5, + [32362] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1727), 1, ts_builtin_sym_end, - STATE(897), 1, + STATE(909), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1625), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86538,7 +87878,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86549,6 +87888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86563,8 +87904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86579,20 +87918,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31581] = 5, + [32433] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(898), 1, + STATE(910), 1, sym_comment, - ACTIONS(1543), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86604,7 +87944,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86615,6 +87954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86629,8 +87970,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86645,20 +87984,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31652] = 5, + [32504] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1689), 1, ts_builtin_sym_end, - STATE(899), 1, + STATE(911), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1593), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86670,7 +88010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86681,6 +88020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86695,8 +88036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86711,20 +88050,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31723] = 5, + [32575] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1741), 1, + ACTIONS(903), 1, ts_builtin_sym_end, - STATE(900), 1, + STATE(912), 1, sym_comment, - ACTIONS(1527), 56, + ACTIONS(901), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86736,7 +88076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86747,6 +88086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86761,8 +88102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86777,20 +88116,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31794] = 5, + [32646] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1649), 1, ts_builtin_sym_end, - STATE(901), 1, + STATE(913), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1591), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86802,7 +88142,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86813,6 +88152,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86827,8 +88168,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86843,20 +88182,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31865] = 5, + [32717] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1721), 1, + ACTIONS(1699), 1, ts_builtin_sym_end, - STATE(902), 1, + STATE(914), 1, sym_comment, - ACTIONS(1573), 56, + ACTIONS(1581), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86868,7 +88208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86879,6 +88218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86893,8 +88234,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86909,20 +88248,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31936] = 5, + [32788] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1669), 1, ts_builtin_sym_end, - STATE(903), 1, + STATE(915), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1615), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -86934,7 +88274,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -86945,6 +88284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -86959,8 +88300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -86975,20 +88314,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32007] = 5, + [32859] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1747), 1, ts_builtin_sym_end, - STATE(904), 1, + STATE(916), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1543), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87000,7 +88340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87011,6 +88350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87025,8 +88366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87041,20 +88380,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32078] = 5, + [32930] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1755), 1, ts_builtin_sym_end, - STATE(905), 1, + STATE(917), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1537), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87066,7 +88406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87077,6 +88416,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87091,8 +88432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87107,20 +88446,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32149] = 5, + [33001] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1697), 1, ts_builtin_sym_end, - STATE(906), 1, + STATE(918), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1583), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87132,7 +88472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87143,6 +88482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87157,8 +88498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87173,20 +88512,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32220] = 5, + [33072] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1671), 1, ts_builtin_sym_end, - STATE(907), 1, + STATE(919), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1613), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87198,7 +88538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87209,6 +88548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87223,8 +88564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87239,20 +88578,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32291] = 5, + [33143] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(908), 1, + STATE(920), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87264,7 +88604,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87275,6 +88614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87289,8 +88630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87305,20 +88644,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32362] = 5, + [33214] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1747), 1, + ACTIONS(1761), 1, ts_builtin_sym_end, - STATE(909), 1, + STATE(921), 1, sym_comment, - ACTIONS(1643), 56, + ACTIONS(1735), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87330,7 +88670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87341,6 +88680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87355,8 +88696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87371,20 +88710,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32433] = 5, + [33285] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1224), 1, + anon_sym_COLON, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1245), 1, + anon_sym_RBRACE, + ACTIONS(1767), 1, + anon_sym_LPAREN, + ACTIONS(1770), 1, + anon_sym_EQ, + ACTIONS(1772), 1, + anon_sym_EQ_GT, + STATE(922), 1, + sym_comment, + STATE(2039), 1, + aux_sym_object_repeat1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1765), 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(1774), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1763), 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, + [33372] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1691), 1, ts_builtin_sym_end, - STATE(910), 1, + STATE(923), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1589), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87396,7 +88810,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87407,6 +88820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87421,8 +88836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87437,20 +88850,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32504] = 5, + [33443] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1757), 1, ts_builtin_sym_end, - STATE(911), 1, + STATE(924), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1539), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87462,7 +88876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87473,6 +88886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87487,8 +88902,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87503,20 +88916,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32575] = 5, + [33514] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1753), 1, ts_builtin_sym_end, - STATE(912), 1, + STATE(925), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87528,7 +88942,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87539,6 +88952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87553,8 +88968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87569,20 +88982,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32646] = 5, + [33585] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1753), 1, + ACTIONS(1751), 1, ts_builtin_sym_end, - STATE(913), 1, + STATE(926), 1, sym_comment, - ACTIONS(1745), 56, + ACTIONS(1533), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87594,7 +89008,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87605,6 +89018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87619,8 +89034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87635,20 +89048,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32717] = 5, + [33656] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1673), 1, ts_builtin_sym_end, - STATE(914), 1, + STATE(927), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1611), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87660,7 +89074,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87671,6 +89084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87685,8 +89100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87701,20 +89114,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32788] = 5, + [33727] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1675), 1, ts_builtin_sym_end, - STATE(915), 1, + STATE(928), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1609), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87726,7 +89140,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87737,6 +89150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87751,8 +89166,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87767,20 +89180,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32859] = 5, + [33798] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1693), 1, ts_builtin_sym_end, - STATE(916), 1, + STATE(929), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1587), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87792,7 +89206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87803,6 +89216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87817,8 +89232,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87833,20 +89246,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32930] = 5, + [33869] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1719), 1, + ACTIONS(1675), 1, ts_builtin_sym_end, - STATE(917), 1, + STATE(930), 1, sym_comment, - ACTIONS(1571), 56, + ACTIONS(1609), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87858,7 +89272,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87869,6 +89282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87883,8 +89298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87899,20 +89312,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33001] = 5, + [33940] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1677), 1, ts_builtin_sym_end, - STATE(918), 1, + STATE(931), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1607), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87924,7 +89338,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -87935,6 +89348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -87949,8 +89364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -87965,20 +89378,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33072] = 5, + [34011] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1679), 1, ts_builtin_sym_end, - STATE(919), 1, + STATE(932), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1605), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -87990,7 +89404,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88001,6 +89414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88015,8 +89430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88031,20 +89444,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33143] = 5, + [34082] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1701), 1, + ACTIONS(1681), 1, ts_builtin_sym_end, - STATE(920), 1, + STATE(933), 1, sym_comment, - ACTIONS(1539), 56, + ACTIONS(1603), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88056,7 +89470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88067,6 +89480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88081,8 +89496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88097,20 +89510,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33214] = 5, + [34153] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1701), 1, + ACTIONS(1683), 1, ts_builtin_sym_end, - STATE(921), 1, + STATE(934), 1, sym_comment, - ACTIONS(1539), 56, + ACTIONS(1601), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88122,7 +89536,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88133,6 +89546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88147,8 +89562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88163,20 +89576,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33285] = 5, + [34224] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(899), 1, ts_builtin_sym_end, - STATE(922), 1, + STATE(935), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(897), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88188,7 +89602,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88199,6 +89612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88213,8 +89628,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88229,20 +89642,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33356] = 5, + [34295] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1649), 1, + ACTIONS(1659), 1, ts_builtin_sym_end, - STATE(923), 1, + STATE(936), 1, sym_comment, - ACTIONS(1631), 56, + ACTIONS(1641), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88254,7 +89668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88265,6 +89678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88279,8 +89694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88295,20 +89708,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33427] = 5, + [34366] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1713), 1, + ACTIONS(1685), 1, ts_builtin_sym_end, - STATE(924), 1, + STATE(937), 1, sym_comment, - ACTIONS(1565), 56, + ACTIONS(1599), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88320,7 +89734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88331,6 +89744,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88345,8 +89760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88361,86 +89774,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33498] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [34437] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1751), 1, - ts_builtin_sym_end, - STATE(925), 1, - sym_comment, - ACTIONS(1579), 56, - anon_sym_export, - anon_sym_LBRACE, + ACTIONS(1224), 1, + anon_sym_COLON, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1243), 1, anon_sym_RBRACE, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, + ACTIONS(1767), 1, anon_sym_LPAREN, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, + ACTIONS(1770), 1, + anon_sym_EQ, + ACTIONS(1772), 1, + anon_sym_EQ_GT, + STATE(938), 1, + sym_comment, + STATE(2039), 1, + aux_sym_object_repeat1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1765), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_yield, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + 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(1774), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1763), 20, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [33569] = 5, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [34524] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1729), 1, + ACTIONS(1685), 1, ts_builtin_sym_end, - STATE(926), 1, + STATE(939), 1, sym_comment, - ACTIONS(1623), 56, + ACTIONS(1599), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88452,7 +89874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88463,6 +89884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88477,8 +89900,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88493,20 +89914,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33640] = 5, + [34595] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1663), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(927), 1, + STATE(940), 1, sym_comment, - ACTIONS(1607), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88518,7 +89940,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88529,6 +89950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88543,8 +89966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88559,20 +89980,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33711] = 5, + [34666] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1647), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(928), 1, + STATE(941), 1, sym_comment, - ACTIONS(1629), 56, + ACTIONS(1573), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88584,7 +90006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88595,6 +90016,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88609,8 +90032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88625,20 +90046,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33782] = 5, + [34737] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(929), 1, + STATE(942), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1573), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88650,7 +90072,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88661,6 +90082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88675,8 +90098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88691,20 +90112,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33853] = 5, + [34808] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1745), 1, ts_builtin_sym_end, - STATE(930), 1, + STATE(943), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1545), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88716,7 +90138,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88727,6 +90148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88741,8 +90164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88757,94 +90178,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33924] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1224), 1, - anon_sym_COLON, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1245), 1, - anon_sym_RBRACE, - ACTIONS(1759), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_EQ, - ACTIONS(1764), 1, - anon_sym_EQ_GT, - STATE(931), 1, - sym_comment, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - STATE(2114), 1, - aux_sym_object_repeat1, - ACTIONS(1757), 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(1766), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 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, - [34011] = 5, + [34879] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(932), 1, + STATE(944), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1573), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88856,7 +90204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88867,6 +90214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88881,8 +90230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88897,20 +90244,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34082] = 5, + [34950] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(941), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(933), 1, + STATE(945), 1, sym_comment, - ACTIONS(939), 56, + ACTIONS(1573), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88922,7 +90270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88933,6 +90280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -88947,8 +90296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -88963,20 +90310,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34153] = 5, + [35021] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1665), 1, + ACTIONS(1729), 1, ts_builtin_sym_end, - STATE(934), 1, + STATE(946), 1, sym_comment, - ACTIONS(1605), 56, + ACTIONS(1527), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -88988,7 +90336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -88999,6 +90346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89013,8 +90362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89029,20 +90376,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34224] = 5, + [35092] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(935), 1, + STATE(947), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89054,7 +90402,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89065,6 +90412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89079,8 +90428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89095,20 +90442,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34295] = 5, + [35163] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1711), 1, ts_builtin_sym_end, - STATE(936), 1, + STATE(948), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1575), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89120,7 +90468,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89131,6 +90478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89145,8 +90494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89161,20 +90508,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34366] = 5, + [35234] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(937), 1, + STATE(949), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1573), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89186,7 +90534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89197,6 +90544,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89211,8 +90560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89227,20 +90574,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34437] = 5, + [35305] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1743), 1, + ACTIONS(1715), 1, ts_builtin_sym_end, - STATE(938), 1, + STATE(950), 1, sym_comment, - ACTIONS(1641), 56, + ACTIONS(1569), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89252,7 +90600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89263,6 +90610,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89277,8 +90626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89293,20 +90640,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34508] = 5, + [35376] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1689), 1, + ACTIONS(1717), 1, ts_builtin_sym_end, - STATE(939), 1, + STATE(951), 1, sym_comment, - ACTIONS(1551), 56, + ACTIONS(1567), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89318,7 +90666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89329,6 +90676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89343,8 +90692,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89359,20 +90706,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34579] = 5, + [35447] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1705), 1, + ACTIONS(1719), 1, ts_builtin_sym_end, - STATE(940), 1, + STATE(952), 1, sym_comment, - ACTIONS(1583), 56, + ACTIONS(1565), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89384,7 +90732,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89395,6 +90742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89409,8 +90758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89425,20 +90772,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34650] = 5, + [35518] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1673), 1, + ACTIONS(1721), 1, ts_builtin_sym_end, - STATE(941), 1, + STATE(953), 1, sym_comment, - ACTIONS(1587), 56, + ACTIONS(1563), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89450,7 +90798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89461,6 +90808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89475,8 +90824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89491,20 +90838,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34721] = 5, + [35589] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1671), 1, + ACTIONS(1723), 1, ts_builtin_sym_end, - STATE(942), 1, + STATE(954), 1, sym_comment, - ACTIONS(1589), 56, + ACTIONS(1561), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89516,7 +90864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89527,6 +90874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89541,8 +90890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89557,20 +90904,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34792] = 5, + [35660] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1669), 1, + ACTIONS(1725), 1, ts_builtin_sym_end, - STATE(943), 1, + STATE(955), 1, sym_comment, - ACTIONS(1595), 56, + ACTIONS(1557), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89582,7 +90930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89593,6 +90940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89607,8 +90956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89623,20 +90970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34863] = 5, + [35731] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(944), 1, + STATE(956), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89648,7 +90996,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89659,6 +91006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89673,8 +91022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89689,20 +91036,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34934] = 5, + [35802] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(945), 1, + STATE(957), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89714,7 +91062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89725,6 +91072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89739,8 +91088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89755,20 +91102,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35005] = 5, + [35873] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, + ACTIONS(1663), 1, ts_builtin_sym_end, - STATE(946), 1, + STATE(958), 1, sym_comment, - ACTIONS(1543), 56, + ACTIONS(1621), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89780,7 +91128,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89791,6 +91138,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89805,8 +91154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89821,94 +91168,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35076] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1213), 1, - anon_sym_RBRACE, - ACTIONS(1224), 1, - anon_sym_COLON, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1759), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_EQ, - ACTIONS(1764), 1, - anon_sym_EQ_GT, - STATE(947), 1, - sym_comment, - STATE(2010), 1, - aux_sym_object_repeat1, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1757), 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(1766), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 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, - [35163] = 5, + [35944] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1707), 1, ts_builtin_sym_end, - STATE(948), 1, + STATE(959), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1577), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89920,7 +91194,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89931,6 +91204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -89945,8 +91220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -89961,20 +91234,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35234] = 5, + [36015] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(949), 1, + STATE(960), 1, sym_comment, ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -89986,7 +91260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -89997,6 +91270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90011,8 +91286,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90027,20 +91300,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35305] = 5, + [36086] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(950), 1, + STATE(961), 1, sym_comment, ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90052,7 +91326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90063,6 +91336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90077,8 +91352,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90093,20 +91366,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35376] = 5, + [36157] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1713), 1, ts_builtin_sym_end, - STATE(951), 1, + STATE(962), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1571), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90118,7 +91392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90129,6 +91402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90143,8 +91418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90159,20 +91432,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35447] = 5, + [36228] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1715), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(952), 1, + STATE(963), 1, sym_comment, - ACTIONS(1603), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90184,7 +91458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90195,6 +91468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90209,8 +91484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90225,20 +91498,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35518] = 5, + [36299] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1695), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(953), 1, + STATE(964), 1, sym_comment, - ACTIONS(1547), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90250,7 +91524,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90261,6 +91534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90275,8 +91550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90291,20 +91564,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35589] = 5, + [36370] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1737), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(954), 1, + STATE(965), 1, sym_comment, - ACTIONS(1625), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90316,7 +91590,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90327,6 +91600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90341,8 +91616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90357,20 +91630,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35660] = 5, + [36441] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(955), 1, + STATE(966), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90382,7 +91656,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90393,6 +91666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90407,8 +91682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90423,20 +91696,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35731] = 5, + [36512] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1677), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(956), 1, + STATE(967), 1, sym_comment, - ACTIONS(1519), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90448,7 +91722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90459,6 +91732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90473,8 +91748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90489,20 +91762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35802] = 5, + [36583] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1717), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(957), 1, + STATE(968), 1, sym_comment, - ACTIONS(1609), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90514,7 +91788,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90525,6 +91798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90539,8 +91814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90555,20 +91828,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35873] = 5, + [36654] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1653), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(958), 1, + STATE(969), 1, sym_comment, - ACTIONS(1621), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90580,7 +91854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90591,6 +91864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90605,8 +91880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90621,20 +91894,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35944] = 5, + [36725] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(959), 1, + STATE(970), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90646,7 +91920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90657,6 +91930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90671,8 +91946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90687,20 +91960,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36015] = 5, + [36796] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1703), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(960), 1, + STATE(971), 1, sym_comment, ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90712,7 +91986,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90723,6 +91996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90737,8 +92012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90753,20 +92026,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36086] = 5, + [36867] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1655), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(961), 1, + STATE(972), 1, sym_comment, - ACTIONS(1619), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90778,7 +92052,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90789,6 +92062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90803,8 +92078,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90819,20 +92092,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36157] = 5, + [36938] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1699), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(962), 1, + STATE(973), 1, sym_comment, - ACTIONS(1545), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90844,7 +92118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90855,6 +92128,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90869,8 +92144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90885,20 +92158,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36228] = 5, + [37009] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1657), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(963), 1, + STATE(974), 1, sym_comment, - ACTIONS(1617), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90910,7 +92184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90921,6 +92194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -90935,8 +92210,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -90951,20 +92224,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36299] = 5, + [37080] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1659), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(964), 1, + STATE(975), 1, sym_comment, - ACTIONS(1613), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -90976,7 +92250,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -90987,6 +92260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91001,8 +92276,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91017,20 +92290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36370] = 5, + [37151] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1693), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(965), 1, + STATE(976), 1, sym_comment, - ACTIONS(1549), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91042,7 +92316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91053,6 +92326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91067,8 +92342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91083,20 +92356,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36441] = 5, + [37222] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1735), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(966), 1, + STATE(977), 1, sym_comment, - ACTIONS(1635), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91108,7 +92382,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91119,6 +92392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91133,8 +92408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91149,20 +92422,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36512] = 5, + [37293] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(967), 1, + STATE(978), 1, sym_comment, - ACTIONS(1599), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91174,7 +92448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91185,6 +92458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91199,8 +92474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91215,20 +92488,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36583] = 5, + [37364] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1707), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(968), 1, + STATE(979), 1, sym_comment, - ACTIONS(1531), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91240,7 +92514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91251,6 +92524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91265,8 +92540,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91281,20 +92554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36654] = 5, + [37435] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1709), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(969), 1, + STATE(980), 1, sym_comment, - ACTIONS(1529), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91306,7 +92580,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91317,6 +92590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91331,8 +92606,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91347,20 +92620,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36725] = 5, + [37506] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(970), 1, + STATE(981), 1, sym_comment, - ACTIONS(1543), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91372,7 +92646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91383,6 +92656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91397,8 +92672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91413,20 +92686,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36796] = 5, + [37577] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(971), 1, + STATE(982), 1, sym_comment, - ACTIONS(1543), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91438,7 +92712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91449,6 +92722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91463,8 +92738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91479,20 +92752,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36867] = 5, + [37648] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1697), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(972), 1, + STATE(983), 1, sym_comment, - ACTIONS(1543), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91504,7 +92778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91515,6 +92788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91529,8 +92804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91545,20 +92818,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36938] = 5, + [37719] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1679), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(973), 1, + STATE(984), 1, sym_comment, - ACTIONS(1563), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91570,7 +92844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91581,6 +92854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91595,8 +92870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91611,20 +92884,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37009] = 5, + [37790] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(974), 1, + STATE(985), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91636,7 +92910,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91647,6 +92920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91661,8 +92936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91677,20 +92950,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37080] = 5, + [37861] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(975), 1, + STATE(986), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91702,7 +92976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91713,6 +92986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91727,8 +93002,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91743,20 +93016,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37151] = 5, + [37932] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(976), 1, + STATE(987), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91768,7 +93042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91779,6 +93052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91793,8 +93068,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91809,20 +93082,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37222] = 5, + [38003] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1681), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(977), 1, + STATE(988), 1, sym_comment, - ACTIONS(1559), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91834,7 +93108,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91845,6 +93118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91859,8 +93134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91875,20 +93148,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37293] = 5, + [38074] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1683), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(978), 1, + STATE(989), 1, sym_comment, - ACTIONS(1557), 56, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91900,7 +93174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91911,6 +93184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91925,8 +93200,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -91941,20 +93214,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37364] = 5, + [38145] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1723), 1, + ACTIONS(1733), 1, ts_builtin_sym_end, - STATE(979), 1, + STATE(990), 1, sym_comment, - ACTIONS(1611), 56, + ACTIONS(1553), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -91966,7 +93240,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -91977,6 +93250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -91991,8 +93266,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -92007,20 +93280,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37435] = 5, + [38216] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1725), 1, + ACTIONS(1737), 1, ts_builtin_sym_end, - STATE(980), 1, + STATE(991), 1, sym_comment, - ACTIONS(1615), 56, + ACTIONS(1633), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -92032,7 +93306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -92043,6 +93316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -92057,8 +93332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -92073,20 +93346,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37506] = 5, + [38287] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1213), 1, + anon_sym_RBRACE, + ACTIONS(1224), 1, + anon_sym_COLON, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1767), 1, + anon_sym_LPAREN, + ACTIONS(1770), 1, + anon_sym_EQ, + ACTIONS(1772), 1, + anon_sym_EQ_GT, + STATE(992), 1, + sym_comment, + STATE(2131), 1, + aux_sym_object_repeat1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1765), 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(1774), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1763), 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, + [38374] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1667), 1, + ACTIONS(1749), 1, ts_builtin_sym_end, - STATE(981), 1, + STATE(993), 1, sym_comment, - ACTIONS(1601), 56, + ACTIONS(1541), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -92098,7 +93446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -92109,6 +93456,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -92123,8 +93472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -92139,20 +93486,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37577] = 5, + [38445] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1727), 1, + ACTIONS(1731), 1, ts_builtin_sym_end, - STATE(982), 1, + STATE(994), 1, sym_comment, - ACTIONS(1633), 56, + ACTIONS(1531), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -92164,7 +93512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -92175,6 +93522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -92189,8 +93538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -92205,94 +93552,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37648] = 13, + [38516] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1224), 1, - anon_sym_COLON, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1243), 1, - anon_sym_RBRACE, - ACTIONS(1759), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_EQ, - ACTIONS(1764), 1, - anon_sym_EQ_GT, - STATE(983), 1, + ACTIONS(1695), 1, + ts_builtin_sym_end, + STATE(995), 1, sym_comment, - STATE(2010), 1, - aux_sym_object_repeat1, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1757), 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(1766), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, - anon_sym_STAR, - anon_sym_in, + ACTIONS(1585), 56, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, 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_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, 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, - [37735] = 5, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [38587] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1685), 1, + ACTIONS(1687), 1, ts_builtin_sym_end, - STATE(984), 1, + STATE(996), 1, sym_comment, - ACTIONS(1555), 56, + ACTIONS(1535), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -92304,7 +93644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -92315,6 +93654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -92329,8 +93670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -92345,20 +93684,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37806] = 5, + [38658] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1711), 1, + ACTIONS(1739), 1, ts_builtin_sym_end, - STATE(985), 1, + STATE(997), 1, sym_comment, - ACTIONS(1521), 56, + ACTIONS(1631), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -92370,7 +93710,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -92381,6 +93720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -92395,8 +93736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -92411,20 +93750,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37877] = 5, + [38729] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1687), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(986), 1, + STATE(998), 1, sym_comment, - ACTIONS(1553), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -92436,7 +93776,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -92447,6 +93786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -92461,8 +93802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -92477,20 +93816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37948] = 5, + [38800] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1661), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(987), 1, + STATE(999), 1, sym_comment, - ACTIONS(1591), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -92502,7 +93842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -92513,6 +93852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -92527,8 +93868,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -92543,20 +93882,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38019] = 5, + [38871] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1645), 1, + ACTIONS(1695), 1, ts_builtin_sym_end, - STATE(988), 1, + STATE(1000), 1, sym_comment, - ACTIONS(1627), 56, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -92568,7 +93908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -92579,6 +93918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -92593,8 +93934,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -92609,14 +93948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38090] = 5, + [38942] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(989), 1, + STATE(1001), 1, sym_comment, - ACTIONS(1768), 21, + ACTIONS(1776), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -92638,7 +93977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1770), 35, + ACTIONS(1778), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -92674,35 +94013,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38160] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [39012] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1211), 1, - sym__ternary_qmark, - ACTIONS(1374), 1, - anon_sym_EQ, - ACTIONS(1394), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1002), 1, + sym_comment, + ACTIONS(1780), 21, + anon_sym_STAR, anon_sym_in, - ACTIONS(1397), 1, - anon_sym_of, - ACTIONS(1420), 1, - anon_sym_EQ_GT, - ACTIONS(1772), 1, - sym_identifier, - ACTIONS(1774), 1, + 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(1782), 35, + sym__ternary_qmark, anon_sym_LBRACE, - ACTIONS(1776), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - STATE(990), 1, - sym_comment, - STATE(2417), 1, - sym__destructuring_pattern, - STATE(1727), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(1306), 15, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92718,45 +94070,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1222), 30, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - 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_AMP, - anon_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, - [38250] = 5, + [39082] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(991), 1, + STATE(1003), 1, sym_comment, - ACTIONS(1779), 21, + ACTIONS(1784), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -92778,7 +94107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1781), 35, + ACTIONS(1786), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -92814,14 +94143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38320] = 5, + [39152] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(992), 1, + STATE(1004), 1, sym_comment, - ACTIONS(1783), 21, + ACTIONS(1788), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -92843,7 +94172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1785), 35, + ACTIONS(1790), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -92879,14 +94208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38390] = 5, + [39222] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(993), 1, + STATE(1005), 1, sym_comment, - ACTIONS(1787), 21, + ACTIONS(1792), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -92908,7 +94237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1789), 35, + ACTIONS(1794), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -92944,14 +94273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38460] = 5, + [39292] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(994), 1, + STATE(1006), 1, sym_comment, - ACTIONS(1791), 21, + ACTIONS(1796), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -92973,7 +94302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1793), 35, + ACTIONS(1798), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -93009,16 +94338,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38530] = 7, + [39362] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1211), 1, + sym__ternary_qmark, + ACTIONS(1368), 1, + anon_sym_EQ, + ACTIONS(1400), 1, + anon_sym_in, + ACTIONS(1403), 1, + anon_sym_of, + ACTIONS(1411), 1, + anon_sym_EQ_GT, + ACTIONS(1800), 1, + sym_identifier, + ACTIONS(1802), 1, + anon_sym_LBRACE, + ACTIONS(1804), 1, + anon_sym_LBRACK, + STATE(1007), 1, + sym_comment, + STATE(2441), 1, + sym__destructuring_pattern, + STATE(1760), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(1324), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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), 30, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + 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_AMP, + anon_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, + [39452] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1807), 1, anon_sym_EQ, - STATE(995), 1, + STATE(1008), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93034,7 +94438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93055,7 +94459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1757), 20, + ACTIONS(1765), 20, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -93076,14 +94480,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38604] = 5, + [39526] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(996), 1, + STATE(1009), 1, sym_comment, - ACTIONS(1797), 21, + ACTIONS(1641), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -93105,7 +94509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1799), 35, + ACTIONS(1659), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -93141,17 +94545,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38674] = 5, + [39596] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(997), 1, + ACTIONS(1809), 1, + anon_sym_EQ, + ACTIONS(1811), 1, + anon_sym_EQ_GT, + STATE(1010), 1, sym_comment, - ACTIONS(1579), 21, + ACTIONS(1774), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1765), 18, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -93170,19 +94612,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1751), 35, - sym__ternary_qmark, + [39671] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1011), 1, + sym_comment, + ACTIONS(1813), 55, + anon_sym_export, + anon_sym_LBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [39738] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1012), 1, + sym_comment, + ACTIONS(1815), 55, + anon_sym_export, anon_sym_LBRACE, + 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_LPAREN, + 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_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [39805] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1807), 1, + anon_sym_EQ, + ACTIONS(1811), 1, + anon_sym_EQ_GT, + STATE(1013), 1, + sym_comment, + ACTIONS(1774), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1765), 18, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(1763), 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, + [39880] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1368), 1, + anon_sym_EQ, + ACTIONS(1817), 1, + anon_sym_EQ_GT, + STATE(1014), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93198,6 +94832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1211), 18, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -93206,16 +94851,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38744] = 8, + 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, + [39955] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(1374), 1, anon_sym_EQ, - ACTIONS(1801), 1, + ACTIONS(1817), 1, anon_sym_EQ_GT, - STATE(998), 1, + STATE(1015), 1, sym_comment, ACTIONS(1237), 15, anon_sym_PLUS_EQ, @@ -93273,17 +94939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [38819] = 4, + [40030] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(999), 1, + STATE(1016), 1, sym_comment, - ACTIONS(1803), 55, + ACTIONS(1819), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -93295,7 +94962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -93306,69 +94972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [38886] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1000), 1, - sym_comment, - ACTIONS(1805), 55, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -93383,8 +94988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -93399,17 +95002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38953] = 4, + [40097] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1001), 1, + STATE(1017), 1, sym_comment, - ACTIONS(1807), 55, + ACTIONS(1819), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -93421,7 +95025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -93432,69 +95035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39020] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1002), 1, - sym_comment, - ACTIONS(1809), 55, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -93509,8 +95051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -93525,17 +95065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [39087] = 4, + [40164] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1003), 1, + STATE(1018), 1, sym_comment, - ACTIONS(1809), 55, + ACTIONS(1819), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -93547,7 +95088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -93558,6 +95098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -93572,8 +95114,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -93588,17 +95128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [39154] = 4, + [40231] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1004), 1, + STATE(1019), 1, sym_comment, - ACTIONS(1809), 55, + ACTIONS(1819), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -93610,7 +95151,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -93621,6 +95161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -93635,8 +95177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -93651,17 +95191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [39221] = 4, + [40298] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1005), 1, + STATE(1020), 1, sym_comment, - ACTIONS(1809), 55, + ACTIONS(1821), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -93673,7 +95214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -93684,6 +95224,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -93698,8 +95240,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -93714,150 +95254,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [39288] = 8, + [40365] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1813), 1, + ACTIONS(1235), 1, anon_sym_EQ_GT, - STATE(1006), 1, - sym_comment, - ACTIONS(1766), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1755), 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, - [39363] = 8, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1813), 1, - anon_sym_EQ_GT, - STATE(1007), 1, - sym_comment, - ACTIONS(1766), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1755), 20, - anon_sym_STAR, + ACTIONS(1400), 1, 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, - [39438] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1368), 1, - anon_sym_EQ, - ACTIONS(1801), 1, - anon_sym_EQ_GT, - STATE(1008), 1, + ACTIONS(1823), 1, + anon_sym_of, + STATE(1021), 1, sym_comment, ACTIONS(1237), 15, anon_sym_PLUS_EQ, @@ -93875,76 +95285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1211), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(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, - [39513] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1324), 1, - anon_sym_COLON, - ACTIONS(1764), 1, - anon_sym_EQ_GT, - ACTIONS(1815), 1, - anon_sym_EQ, - STATE(1009), 1, - sym_comment, - ACTIONS(1766), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 16, + ACTIONS(1211), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -93961,9 +95302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 20, + ACTIONS(1222), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -93982,106 +95322,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [39589] = 8, + [40443] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1827), 1, anon_sym_EQ, - ACTIONS(1817), 1, - anon_sym_EQ_GT, - STATE(1010), 1, - sym_comment, - ACTIONS(1766), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1755), 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, - [39663] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1764), 1, + ACTIONS(1830), 1, anon_sym_EQ_GT, - ACTIONS(1815), 1, - anon_sym_EQ, - STATE(1011), 1, + STATE(1022), 1, sym_comment, - ACTIONS(1766), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1825), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1765), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -94093,39 +95352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 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, - [39737] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1235), 1, - anon_sym_EQ_GT, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1257), 1, - anon_sym_EQ, - STATE(1012), 1, - sym_comment, - ACTIONS(1237), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94141,25 +95368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1211), 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, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94180,46 +95389,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [39811] = 5, + [40519] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1013), 1, - sym_comment, - ACTIONS(1797), 21, - anon_sym_STAR, - anon_sym_in, + ACTIONS(1811), 1, + anon_sym_EQ_GT, + ACTIONS(1835), 1, 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(1799), 33, - sym__automatic_semicolon, - sym__ternary_qmark, + STATE(1023), 1, + sym_comment, + ACTIONS(1832), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1765), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94235,26 +95435,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [39879] = 8, + ACTIONS(1763), 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, + [40595] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1764), 1, + ACTIONS(1350), 1, + anon_sym_COLON, + ACTIONS(1772), 1, anon_sym_EQ_GT, - ACTIONS(1795), 1, + ACTIONS(1838), 1, anon_sym_EQ, - STATE(1014), 1, + STATE(1024), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94270,11 +95485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 17, + ACTIONS(1765), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -94288,7 +95502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94309,16 +95523,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [39953] = 7, + [40671] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1772), 1, + anon_sym_EQ_GT, + ACTIONS(1838), 1, anon_sym_EQ, - STATE(1015), 1, + ACTIONS(1840), 1, + anon_sym_in, + ACTIONS(1843), 1, + anon_sym_of, + STATE(1025), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94334,13 +95554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 18, + ACTIONS(1765), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -94353,9 +95571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 20, + ACTIONS(1763), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -94374,20 +95591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40025] = 9, + [40749] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1235), 1, - anon_sym_EQ_GT, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1257), 1, + ACTIONS(1807), 1, anon_sym_EQ, - ACTIONS(1324), 1, - anon_sym_COLON, - STATE(1016), 1, + STATE(1026), 1, sym_comment, - ACTIONS(1237), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94403,11 +95616,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1211), 16, + ACTIONS(1765), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -94420,7 +95635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1222), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94441,20 +95656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40101] = 10, + [40821] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1235), 1, anon_sym_EQ_GT, ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(1255), 1, + anon_sym_COLON, ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1394), 1, - anon_sym_in, - ACTIONS(1819), 1, - anon_sym_of, - STATE(1017), 1, + STATE(1027), 1, sym_comment, ACTIONS(1237), 15, anon_sym_PLUS_EQ, @@ -94489,8 +95702,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1222), 19, + ACTIONS(1222), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -94509,23 +95723,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40179] = 9, + [40897] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1813), 1, - anon_sym_EQ_GT, - ACTIONS(1824), 1, + ACTIONS(1441), 1, anon_sym_EQ, - STATE(1018), 1, + ACTIONS(1817), 1, + anon_sym_EQ_GT, + STATE(1028), 1, sym_comment, - ACTIONS(1821), 4, + ACTIONS(1845), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1757), 13, + ACTIONS(1211), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -94539,7 +95753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94555,7 +95769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94576,22 +95790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40255] = 10, + [40973] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1764), 1, + ACTIONS(1255), 1, + anon_sym_COLON, + ACTIONS(1772), 1, anon_sym_EQ_GT, - ACTIONS(1815), 1, + ACTIONS(1838), 1, anon_sym_EQ, - ACTIONS(1827), 1, - anon_sym_in, - ACTIONS(1830), 1, - anon_sym_of, - STATE(1019), 1, + STATE(1029), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94607,7 +95819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 16, + ACTIONS(1765), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -94624,8 +95836,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 19, + ACTIONS(1763), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -94644,37 +95857,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40333] = 9, + [41049] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1402), 1, - anon_sym_EQ, - ACTIONS(1801), 1, - anon_sym_EQ_GT, - STATE(1020), 1, + STATE(1030), 1, sym_comment, - ACTIONS(1832), 4, + ACTIONS(1641), 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(1659), 33, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1211), 13, - sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94690,35 +95912,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(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, - [40409] = 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [41117] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1021), 1, + STATE(1031), 1, sym_comment, - ACTIONS(1579), 21, + ACTIONS(1796), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -94740,7 +95949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1751), 33, + ACTIONS(1798), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -94774,7 +95983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [40477] = 9, + [41185] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1235), 1, @@ -94783,9 +95992,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comment_token1, ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1342), 1, + ACTIONS(1273), 1, anon_sym_COLON, - STATE(1022), 1, + STATE(1032), 1, sym_comment, ACTIONS(1237), 15, anon_sym_PLUS_EQ, @@ -94841,20 +96050,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40553] = 9, + [41261] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1809), 1, + anon_sym_EQ, + STATE(1033), 1, + sym_comment, + ACTIONS(1774), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1765), 18, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1763), 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, + [41333] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1265), 1, + ACTIONS(1273), 1, anon_sym_COLON, - ACTIONS(1764), 1, + ACTIONS(1772), 1, anon_sym_EQ_GT, - ACTIONS(1815), 1, + ACTIONS(1838), 1, anon_sym_EQ, - STATE(1023), 1, + STATE(1034), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94870,7 +96144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 16, + ACTIONS(1765), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -94887,7 +96161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94908,20 +96182,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40629] = 9, + [41409] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1342), 1, - anon_sym_COLON, - ACTIONS(1764), 1, + ACTIONS(1848), 1, + anon_sym_EQ, + ACTIONS(1850), 1, anon_sym_EQ_GT, - ACTIONS(1815), 1, + STATE(1035), 1, + sym_comment, + ACTIONS(1774), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1765), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1763), 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, + [41483] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1772), 1, + anon_sym_EQ_GT, + ACTIONS(1807), 1, anon_sym_EQ, - STATE(1024), 1, + STATE(1036), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94937,10 +96275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 16, + ACTIONS(1765), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -94954,7 +96293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94975,23 +96314,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40705] = 9, + [41557] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1415), 1, anon_sym_EQ, - ACTIONS(1837), 1, + ACTIONS(1854), 1, anon_sym_EQ_GT, - STATE(1025), 1, + STATE(1037), 1, sym_comment, - ACTIONS(1835), 4, + ACTIONS(1852), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1757), 13, + ACTIONS(1211), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -95005,7 +96344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95021,7 +96360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95042,14 +96381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40781] = 5, + [41633] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1026), 1, + STATE(1038), 1, sym_comment, - ACTIONS(1791), 21, + ACTIONS(1780), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -95071,7 +96410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1793), 33, + ACTIONS(1782), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -95105,18 +96444,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [40849] = 8, + [41701] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1235), 1, - anon_sym_EQ_GT, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1374), 1, + ACTIONS(1772), 1, + anon_sym_EQ_GT, + ACTIONS(1838), 1, anon_sym_EQ, - STATE(1027), 1, + STATE(1039), 1, sym_comment, - ACTIONS(1237), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95132,7 +96471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1211), 17, + ACTIONS(1765), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -95150,7 +96489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1222), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95171,37 +96510,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40923] = 9, + [41775] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1837), 1, - anon_sym_EQ_GT, - ACTIONS(1841), 1, + ACTIONS(1428), 1, anon_sym_EQ, - STATE(1028), 1, + ACTIONS(1856), 1, + anon_sym_EQ_GT, + STATE(1040), 1, sym_comment, - ACTIONS(1839), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1757), 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(1766), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95217,7 +96537,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1211), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95238,37 +96576,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40999] = 9, + [41849] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1417), 1, + ACTIONS(1807), 1, anon_sym_EQ, - ACTIONS(1846), 1, + ACTIONS(1850), 1, anon_sym_EQ_GT, - STATE(1029), 1, + STATE(1041), 1, sym_comment, - ACTIONS(1844), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1211), 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(1237), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95284,7 +96603,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1222), 20, + ACTIONS(1765), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95305,7 +96642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [41075] = 9, + [41923] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1235), 1, @@ -95314,9 +96651,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comment_token1, ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(1350), 1, anon_sym_COLON, - STATE(1030), 1, + STATE(1042), 1, sym_comment, ACTIONS(1237), 15, anon_sym_PLUS_EQ, @@ -95372,16 +96709,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [41151] = 7, + [41999] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1235), 1, + anon_sym_EQ_GT, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1811), 1, + ACTIONS(1257), 1, anon_sym_EQ, - STATE(1031), 1, + ACTIONS(1342), 1, + anon_sym_COLON, + STATE(1043), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95397,15 +96738,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 18, + ACTIONS(1211), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, @@ -95416,38 +96755,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 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, - [41223] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1032), 1, - sym_comment, - ACTIONS(1768), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -95466,50 +96776,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1770), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [41291] = 8, + [42075] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1235), 1, + anon_sym_EQ_GT, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1374), 1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1848), 1, - anon_sym_EQ_GT, - STATE(1033), 1, + ACTIONS(1289), 1, + anon_sym_COLON, + STATE(1044), 1, sym_comment, ACTIONS(1237), 15, anon_sym_PLUS_EQ, @@ -95527,12 +96805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1211), 17, + ACTIONS(1211), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -95566,14 +96843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [41365] = 5, + [42151] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1034), 1, + STATE(1045), 1, sym_comment, - ACTIONS(1783), 21, + ACTIONS(1792), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -95595,7 +96872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1785), 33, + ACTIONS(1794), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -95629,36 +96906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41433] = 9, + [42219] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1235), 1, + anon_sym_EQ_GT, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1374), 1, + ACTIONS(1368), 1, anon_sym_EQ, - ACTIONS(1846), 1, - anon_sym_EQ_GT, - STATE(1035), 1, + STATE(1046), 1, sym_comment, - ACTIONS(1850), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1211), 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(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -95675,6 +96933,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1211), 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, @@ -95696,18 +96972,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [41509] = 8, + [42293] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1432), 1, - anon_sym_EQ, - ACTIONS(1848), 1, + ACTIONS(1342), 1, + anon_sym_COLON, + ACTIONS(1772), 1, anon_sym_EQ_GT, - STATE(1036), 1, + ACTIONS(1838), 1, + anon_sym_EQ, + STATE(1047), 1, sym_comment, - ACTIONS(1237), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95723,12 +97001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1211), 17, + ACTIONS(1765), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -95741,7 +97018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1222), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95762,14 +97039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [41583] = 5, + [42369] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1037), 1, + STATE(1048), 1, sym_comment, - ACTIONS(1787), 21, + ACTIONS(1776), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -95791,7 +97068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1789), 33, + ACTIONS(1778), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -95825,20 +97102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41651] = 9, + [42437] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1235), 1, + anon_sym_EQ_GT, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1255), 1, - anon_sym_COLON, - ACTIONS(1764), 1, - anon_sym_EQ_GT, - ACTIONS(1815), 1, + ACTIONS(1257), 1, anon_sym_EQ, - STATE(1038), 1, + STATE(1049), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95854,10 +97129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 16, + ACTIONS(1211), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -95871,7 +97147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 20, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95892,17 +97168,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [41727] = 5, + [42511] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1039), 1, + ACTIONS(1368), 1, + anon_sym_EQ, + ACTIONS(1854), 1, + anon_sym_EQ_GT, + STATE(1050), 1, sym_comment, - ACTIONS(1779), 21, + ACTIONS(1858), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1211), 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(1237), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -95921,17 +97235,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1781), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + [42587] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1289), 1, + anon_sym_COLON, + ACTIONS(1772), 1, + anon_sym_EQ_GT, + ACTIONS(1838), 1, + anon_sym_EQ, + STATE(1051), 1, + sym_comment, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95947,6 +97264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1765), 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, @@ -95955,20 +97281,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41795] = 9, + ACTIONS(1763), 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, + [42663] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1235), 1, - anon_sym_EQ_GT, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1255), 1, - anon_sym_COLON, - ACTIONS(1257), 1, + ACTIONS(1807), 1, anon_sym_EQ, - STATE(1040), 1, + ACTIONS(1830), 1, + anon_sym_EQ_GT, + STATE(1052), 1, sym_comment, - ACTIONS(1237), 15, + ACTIONS(1860), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1765), 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(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95984,24 +97348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1211), 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, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96022,20 +97369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [41871] = 9, + [42739] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1275), 1, - anon_sym_COLON, - ACTIONS(1764), 1, - anon_sym_EQ_GT, - ACTIONS(1815), 1, + ACTIONS(1368), 1, anon_sym_EQ, - STATE(1041), 1, + ACTIONS(1856), 1, + anon_sym_EQ_GT, + STATE(1053), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96051,11 +97396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 16, + ACTIONS(1211), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -96068,7 +97414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 20, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96089,20 +97435,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [41947] = 9, + [42813] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1235), 1, - anon_sym_EQ_GT, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1257), 1, - anon_sym_EQ, - ACTIONS(1275), 1, - anon_sym_COLON, - STATE(1042), 1, + STATE(1054), 1, sym_comment, - ACTIONS(1237), 15, + ACTIONS(1788), 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(1790), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96118,15 +97490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1211), 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, @@ -96135,9 +97498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1222), 20, + [42881] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1055), 1, + sym_comment, + ACTIONS(1784), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -96156,18 +97527,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42023] = 8, + ACTIONS(1786), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [42949] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1817), 1, - anon_sym_EQ_GT, - ACTIONS(1852), 1, + ACTIONS(1848), 1, anon_sym_EQ, - STATE(1043), 1, + STATE(1056), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96183,7 +97586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 17, + ACTIONS(1765), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -96201,7 +97604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96222,22 +97625,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42097] = 9, + [43020] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1811), 1, + ACTIONS(1807), 1, anon_sym_EQ, - ACTIONS(1813), 1, - anon_sym_EQ_GT, - STATE(1044), 1, + STATE(1057), 1, sym_comment, - ACTIONS(1854), 3, + ACTIONS(1860), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1757), 13, + ACTIONS(1765), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -96251,7 +97653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96267,7 +97669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96288,36 +97690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42172] = 9, + [43093] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1368), 1, + ACTIONS(1838), 1, anon_sym_EQ, - ACTIONS(1801), 1, - anon_sym_EQ_GT, - STATE(1045), 1, + STATE(1058), 1, sym_comment, - ACTIONS(1857), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1211), 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(1237), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96333,7 +97715,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1222), 20, + ACTIONS(1765), 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(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96354,21 +97754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42247] = 8, + [43164] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1841), 1, + ACTIONS(1835), 1, anon_sym_EQ, - STATE(1046), 1, + STATE(1059), 1, sym_comment, - ACTIONS(1839), 4, + ACTIONS(1832), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1757), 13, + ACTIONS(1765), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -96382,7 +97782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96398,7 +97798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96419,16 +97819,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42320] = 7, + [43237] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1852), 1, + ACTIONS(1809), 1, anon_sym_EQ, - STATE(1047), 1, + ACTIONS(1811), 1, + anon_sym_EQ_GT, + STATE(1060), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1862), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1765), 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(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96444,25 +97864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96483,16 +97885,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42391] = 7, + [43312] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1815), 1, + ACTIONS(1374), 1, anon_sym_EQ, - STATE(1048), 1, + ACTIONS(1817), 1, + anon_sym_EQ_GT, + STATE(1061), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1865), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1211), 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(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96508,25 +97930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 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(1755), 20, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96547,21 +97951,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42462] = 8, + [43387] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1827), 1, anon_sym_EQ, - STATE(1049), 1, + STATE(1062), 1, sym_comment, - ACTIONS(1835), 4, + ACTIONS(1825), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1757), 13, + ACTIONS(1765), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -96575,7 +97979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96591,7 +97995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96612,20 +98016,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42535] = 9, + [43460] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1815), 1, + ACTIONS(1838), 1, anon_sym_EQ, - ACTIONS(1827), 1, + ACTIONS(1840), 1, anon_sym_in, - ACTIONS(1830), 1, + ACTIONS(1843), 1, anon_sym_of, - STATE(1050), 1, + STATE(1063), 1, sym_comment, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96641,7 +98045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1757), 16, + ACTIONS(1765), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -96658,7 +98062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1755), 19, + ACTIONS(1763), 19, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -96678,89 +98082,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42610] = 8, + [43535] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1824), 1, + ACTIONS(1368), 1, anon_sym_EQ, - STATE(1051), 1, - sym_comment, - ACTIONS(1821), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1757), 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(1766), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 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, - [42683] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1813), 1, + ACTIONS(1854), 1, anon_sym_EQ_GT, - ACTIONS(1821), 1, - anon_sym_RBRACK, - ACTIONS(1824), 1, - anon_sym_EQ, - ACTIONS(1839), 1, - anon_sym_COMMA, - STATE(1052), 1, + STATE(1064), 1, sym_comment, - ACTIONS(1757), 13, + ACTIONS(1211), 15, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -96772,7 +98109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96788,7 +98125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96809,18 +98146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42759] = 8, + [43607] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1807), 1, anon_sym_EQ, - ACTIONS(1837), 1, + ACTIONS(1830), 1, anon_sym_EQ_GT, - STATE(1053), 1, + STATE(1065), 1, sym_comment, - ACTIONS(1757), 15, + ACTIONS(1765), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -96836,7 +98173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96852,7 +98189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96873,22 +98210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42831] = 10, + [43679] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1402), 1, + ACTIONS(1809), 1, anon_sym_EQ, - ACTIONS(1801), 1, - anon_sym_EQ_GT, - ACTIONS(1832), 1, - anon_sym_RBRACK, - ACTIONS(1844), 1, - anon_sym_COMMA, - STATE(1054), 1, + STATE(1066), 1, sym_comment, - ACTIONS(1211), 13, + ACTIONS(1862), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1765), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -96902,7 +98237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1237), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96918,7 +98253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1222), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96939,22 +98274,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42907] = 8, + [43751] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1374), 1, + ACTIONS(1441), 1, anon_sym_EQ, - ACTIONS(1846), 1, + ACTIONS(1817), 1, anon_sym_EQ_GT, - STATE(1055), 1, + ACTIONS(1845), 1, + anon_sym_RBRACK, + ACTIONS(1852), 1, + anon_sym_COMMA, + STATE(1067), 1, sym_comment, - ACTIONS(1211), 15, + ACTIONS(1211), 13, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -97003,20 +98340,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42979] = 8, + [43827] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(1811), 1, - anon_sym_EQ, - STATE(1056), 1, - sym_comment, - ACTIONS(1854), 3, + anon_sym_EQ_GT, + ACTIONS(1825), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1832), 1, anon_sym_RBRACK, - ACTIONS(1757), 13, + ACTIONS(1835), 1, + anon_sym_EQ, + STATE(1068), 1, + sym_comment, + ACTIONS(1765), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -97030,7 +98369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97046,7 +98385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97067,18 +98406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43051] = 8, + [43903] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1374), 1, + ACTIONS(1807), 1, anon_sym_EQ, - ACTIONS(1860), 1, + ACTIONS(1868), 1, anon_sym_EQ_GT, - STATE(1057), 1, + STATE(1069), 1, sym_comment, - ACTIONS(1211), 14, + ACTIONS(1765), 14, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_of, @@ -97093,7 +98432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1237), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97109,7 +98448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1222), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97130,24 +98469,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43122] = 10, + [43974] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1374), 1, - anon_sym_EQ, - ACTIONS(1394), 1, - anon_sym_in, - ACTIONS(1819), 1, - anon_sym_of, - ACTIONS(1846), 1, + ACTIONS(1868), 1, anon_sym_EQ_GT, - STATE(1058), 1, + ACTIONS(1870), 1, + anon_sym_EQ, + STATE(1070), 1, sym_comment, - ACTIONS(1211), 13, + ACTIONS(1765), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -97159,7 +98495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1237), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97175,8 +98511,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1222), 19, + ACTIONS(1763), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -97195,22 +98532,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43197] = 10, + [44045] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1807), 1, anon_sym_EQ, - ACTIONS(1827), 1, - anon_sym_in, ACTIONS(1830), 1, - anon_sym_of, - ACTIONS(1837), 1, anon_sym_EQ_GT, - STATE(1059), 1, + ACTIONS(1840), 1, + anon_sym_in, + ACTIONS(1843), 1, + anon_sym_of, + STATE(1071), 1, sym_comment, - ACTIONS(1757), 13, + ACTIONS(1765), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -97224,7 +98561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97240,7 +98577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 19, + ACTIONS(1763), 19, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -97260,21 +98597,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43272] = 8, + [44120] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1368), 1, anon_sym_EQ, - ACTIONS(1862), 1, + ACTIONS(1400), 1, + anon_sym_in, + ACTIONS(1823), 1, + anon_sym_of, + ACTIONS(1854), 1, anon_sym_EQ_GT, - STATE(1060), 1, + STATE(1072), 1, sym_comment, - ACTIONS(1757), 14, + ACTIONS(1211), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -97286,7 +98626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97302,9 +98642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1222), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -97323,18 +98662,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43343] = 8, + [44195] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1862), 1, - anon_sym_EQ_GT, - ACTIONS(1864), 1, + ACTIONS(1368), 1, anon_sym_EQ, - STATE(1061), 1, + ACTIONS(1872), 1, + anon_sym_EQ_GT, + STATE(1073), 1, sym_comment, - ACTIONS(1757), 14, + ACTIONS(1211), 14, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_of, @@ -97349,7 +98688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97365,7 +98704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97386,16 +98725,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43414] = 8, + [44266] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1493), 1, + ACTIONS(1485), 1, anon_sym_EQ, - ACTIONS(1860), 1, + ACTIONS(1872), 1, anon_sym_EQ_GT, - STATE(1062), 1, + STATE(1074), 1, sym_comment, ACTIONS(1211), 14, sym__ternary_qmark, @@ -97449,20 +98788,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43485] = 9, + [44337] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1821), 1, + ACTIONS(1825), 1, + anon_sym_COMMA, + ACTIONS(1832), 1, anon_sym_RBRACK, - ACTIONS(1824), 1, + ACTIONS(1835), 1, anon_sym_EQ, - ACTIONS(1839), 1, - anon_sym_COMMA, - STATE(1063), 1, + STATE(1075), 1, sym_comment, - ACTIONS(1757), 13, + ACTIONS(1765), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -97476,7 +98815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97492,7 +98831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97513,16 +98852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43558] = 7, + [44410] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1864), 1, + ACTIONS(1870), 1, anon_sym_EQ, - STATE(1064), 1, + STATE(1076), 1, sym_comment, - ACTIONS(1757), 14, + ACTIONS(1765), 14, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_of, @@ -97537,7 +98876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97553,7 +98892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 20, + ACTIONS(1763), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97574,20 +98913,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43626] = 9, + [44478] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1807), 1, anon_sym_EQ, - ACTIONS(1827), 1, + ACTIONS(1840), 1, anon_sym_in, - ACTIONS(1830), 1, + ACTIONS(1843), 1, anon_sym_of, - STATE(1065), 1, + STATE(1077), 1, sym_comment, - ACTIONS(1757), 13, + ACTIONS(1765), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -97601,7 +98940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1766), 15, + ACTIONS(1774), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97617,7 +98956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1755), 19, + ACTIONS(1763), 19, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -97637,30 +98976,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43698] = 12, + [44550] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(852), 1, + anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - STATE(1066), 1, + sym__automatic_semicolon, + STATE(1078), 1, sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1866), 12, + ACTIONS(848), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97673,15 +99000,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1868), 21, + ACTIONS(905), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -97695,77 +99026,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [43768] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1067), 1, - sym_comment, - ACTIONS(1599), 42, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_import, - anon_sym_let, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43822] = 11, + [44610] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - STATE(1068), 1, + STATE(1079), 1, sym_comment, - STATE(1142), 2, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1882), 12, + ACTIONS(1876), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97778,7 +99065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1884), 23, + ACTIONS(1878), 21, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97800,32 +99087,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [43890] = 12, + [44680] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - STATE(1069), 1, + STATE(1080), 1, sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1886), 12, + ACTIONS(1892), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97838,7 +99120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1888), 21, + ACTIONS(1894), 23, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97860,14 +99142,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [43960] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [44748] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1070), 1, + STATE(1081), 1, sym_comment, - ACTIONS(1591), 42, + ACTIONS(1625), 42, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -97880,6 +99164,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -97894,8 +99180,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -97910,18 +99194,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44014] = 7, + [44802] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(868), 1, - anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, ACTIONS(1890), 1, - sym__automatic_semicolon, - STATE(1071), 1, + anon_sym_BQUOTE, + STATE(1082), 1, sym_comment, - ACTIONS(864), 12, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1896), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97934,19 +99230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(932), 28, + ACTIONS(1898), 21, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -97960,24 +99252,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [44872] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1083), 1, + sym_comment, + ACTIONS(1627), 42, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_import, + anon_sym_let, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44074] = 7, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44926] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(852), 1, + anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1899), 1, - anon_sym_EQ, - STATE(1072), 1, + STATE(1084), 1, sym_comment, - ACTIONS(1896), 4, + ACTIONS(1900), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1892), 12, + ACTIONS(850), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97990,7 +99329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1894), 24, + ACTIONS(856), 24, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -98015,21 +99354,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44133] = 7, + [44985] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(868), 1, - anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1073), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1907), 1, + sym_optional_chain, + STATE(1085), 1, sym_comment, - ACTIONS(1901), 4, + STATE(1181), 1, + sym_arguments, + ACTIONS(1903), 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(1905), 24, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(866), 12, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [45050] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + STATE(1086), 1, + sym_comment, + STATE(1181), 1, + sym_arguments, + ACTIONS(1903), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98042,13 +99433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(872), 24, + ACTIONS(1905), 27, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -98067,14 +99461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44192] = 4, + [45109] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1074), 1, + STATE(1087), 1, sym_comment, - ACTIONS(1587), 41, + ACTIONS(1635), 41, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -98086,6 +99480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -98100,8 +99496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -98116,16 +99510,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44245] = 6, + [45162] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1916), 1, anon_sym_EQ, - STATE(1075), 1, + STATE(1088), 1, sym_comment, - ACTIONS(1755), 12, + ACTIONS(1913), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1909), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98138,17 +99537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 28, + ACTIONS(1911), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -98167,14 +99562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44302] = 4, + [45221] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1076), 1, + STATE(1089), 1, sym_comment, - ACTIONS(1589), 41, + ACTIONS(1637), 41, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -98186,6 +99581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, anon_sym_async, anon_sym_function, @@ -98200,8 +99597,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -98216,18 +99611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44355] = 7, + [45274] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - STATE(1077), 1, - sym_comment, + ACTIONS(1807), 1, + anon_sym_EQ, STATE(1090), 1, - sym_arguments, - ACTIONS(1904), 12, + sym_comment, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98240,11 +99633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 27, + ACTIONS(1765), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -98268,76 +99662,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44414] = 10, + [45331] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, + STATE(1091), 1, + sym_comment, + ACTIONS(1631), 41, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_import, + anon_sym_let, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1908), 1, - sym_optional_chain, - STATE(1078), 1, - sym_comment, - STATE(1090), 1, - sym_arguments, - ACTIONS(1904), 12, - anon_sym_STAR, - anon_sym_in, + anon_sym_LTtemplate_GT, anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1906), 24, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44479] = 7, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [45384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1917), 1, - anon_sym_EQ, - STATE(1079), 1, + ACTIONS(1918), 1, + sym__automatic_semicolon, + STATE(1092), 1, sym_comment, - ACTIONS(1914), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1910), 12, + ACTIONS(901), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98350,13 +99733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1912), 24, + ACTIONS(903), 28, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -98375,14 +99762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44538] = 4, + [45441] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1080), 1, + STATE(1093), 1, sym_comment, - ACTIONS(1583), 41, + ACTIONS(1633), 41, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -98394,55 +99781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [44591] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1081), 1, - sym_comment, - ACTIONS(1585), 41, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_import, - anon_sym_let, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_LT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -98457,8 +99797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_identifier, @@ -98473,16 +99811,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44644] = 6, + [45494] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1919), 1, - sym__automatic_semicolon, - STATE(1082), 1, + ACTIONS(1927), 1, + anon_sym_EQ, + STATE(1094), 1, sym_comment, - ACTIONS(874), 12, + ACTIONS(1924), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1920), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98495,17 +99838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 28, + ACTIONS(1922), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -98524,16 +99863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44701] = 6, + [45553] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1890), 1, + ACTIONS(1874), 1, sym__automatic_semicolon, - STATE(1083), 1, + STATE(1095), 1, sym_comment, - ACTIONS(864), 12, + ACTIONS(848), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98546,7 +99885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(932), 28, + ACTIONS(905), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98575,63 +99914,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44758] = 5, + [45610] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1084), 1, - sym_comment, - ACTIONS(1921), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, anon_sym_GT_GT, + ACTIONS(1939), 1, anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + STATE(1096), 1, + sym_comment, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1923), 28, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1931), 9, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [44812] = 5, + [45702] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1085), 1, + STATE(1097), 1, sym_comment, - ACTIONS(961), 12, + ACTIONS(1957), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98644,7 +100002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(965), 28, + ACTIONS(1959), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98673,14 +100031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44866] = 5, + [45756] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1086), 1, + STATE(1098), 1, sym_comment, - ACTIONS(1925), 12, + ACTIONS(1961), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98693,7 +100051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1927), 28, + ACTIONS(1963), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98722,14 +100080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44920] = 5, + [45810] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1087), 1, + STATE(1099), 1, sym_comment, - ACTIONS(1929), 12, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98742,7 +100100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1931), 28, + ACTIONS(1765), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98771,14 +100129,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44974] = 5, + [45864] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1088), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + STATE(1100), 1, sym_comment, - ACTIONS(1933), 12, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1965), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98791,115 +100167,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1935), 28, + ACTIONS(1931), 18, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45028] = 28, + [45934] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1089), 1, + STATE(1101), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1939), 5, + ACTIONS(1967), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [45128] = 5, + [46034] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1090), 1, + STATE(1102), 1, sym_comment, - ACTIONS(1973), 12, + ACTIONS(925), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98912,17 +100278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1975), 28, + ACTIONS(927), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -98941,357 +100307,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45182] = 28, + [46088] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - STATE(1091), 1, + anon_sym_AMP_AMP, + STATE(1103), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1923), 5, + ACTIONS(1931), 8, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [45282] = 5, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [46182] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1092), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + STATE(1104), 1, sym_comment, - ACTIONS(1977), 12, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1965), 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(1979), 28, + ACTIONS(1931), 17, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45336] = 5, + [46258] = 22, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1093), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + STATE(1105), 1, sym_comment, - ACTIONS(1981), 12, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 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(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1983), 28, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1965), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1931), 10, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45390] = 28, + [46346] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - STATE(1094), 1, + ACTIONS(1965), 1, + anon_sym_PIPE, + STATE(1106), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1985), 5, + ACTIONS(1931), 10, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [45490] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [46436] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1987), 1, - sym__automatic_semicolon, - STATE(1095), 1, - sym_comment, - ACTIONS(864), 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(932), 27, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(1880), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, anon_sym_CARET, + ACTIONS(1947), 1, anon_sym_PERCENT, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1965), 1, + anon_sym_PIPE, + STATE(1107), 1, + sym_comment, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45546] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1989), 1, - sym__automatic_semicolon, - STATE(1096), 1, - sym_comment, - ACTIONS(874), 12, + ACTIONS(1929), 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(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(876), 27, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1931), 9, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45602] = 5, + [46528] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1097), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + STATE(1108), 1, sym_comment, - ACTIONS(874), 12, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1965), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -99300,95 +100676,52 @@ 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(876), 28, + ACTIONS(1931), 17, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45656] = 5, + [46602] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1098), 1, - sym_comment, - ACTIONS(874), 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(876), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + ACTIONS(1880), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 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(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1949), 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, + STATE(1109), 1, + sym_comment, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45710] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1099), 1, - sym_comment, - ACTIONS(914), 12, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1965), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99401,141 +100734,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(918), 28, + ACTIONS(1931), 18, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45764] = 5, + [46672] = 20, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1100), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + STATE(1110), 1, sym_comment, - ACTIONS(906), 12, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1965), 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(910), 28, + ACTIONS(1931), 12, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45818] = 5, + [46756] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1101), 1, - sym_comment, - ACTIONS(1991), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, anon_sym_GT_GT, + ACTIONS(1939), 1, anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + STATE(1111), 1, + sym_comment, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1993), 28, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1931), 7, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45872] = 5, + [46852] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1102), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(1983), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + STATE(1112), 1, sym_comment, - ACTIONS(898), 12, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(1892), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99548,19 +100920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(902), 28, + ACTIONS(1894), 21, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -99576,15 +100942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [45926] = 5, + [46918] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1103), 1, + STATE(1113), 1, sym_comment, - ACTIONS(939), 12, + ACTIONS(1987), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99597,7 +100962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(941), 28, + ACTIONS(1989), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -99626,14 +100991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45980] = 5, + [46972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1104), 1, + STATE(1114), 1, sym_comment, - ACTIONS(1995), 12, + ACTIONS(1991), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99646,7 +101011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 28, + ACTIONS(1993), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -99675,14 +101040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46034] = 5, + [47026] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1105), 1, + STATE(1115), 1, sym_comment, - ACTIONS(928), 12, + ACTIONS(1995), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99695,17 +101060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(930), 28, - sym__automatic_semicolon, + ACTIONS(1997), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -99724,14 +101089,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46088] = 5, + [47080] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1106), 1, + STATE(1116), 1, sym_comment, - ACTIONS(993), 12, + ACTIONS(1999), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99744,7 +101109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(997), 28, + ACTIONS(2001), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -99773,14 +101138,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46142] = 5, + [47134] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1107), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + STATE(1117), 1, + sym_comment, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2003), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [47234] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1118), 1, sym_comment, - ACTIONS(977), 12, + ACTIONS(2005), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99793,7 +101230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(981), 28, + ACTIONS(2007), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -99822,14 +101259,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46196] = 5, + [47288] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1108), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + STATE(1119), 1, + sym_comment, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2007), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [47388] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1120), 1, sym_comment, - ACTIONS(969), 12, + ACTIONS(2009), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99842,7 +101351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(973), 28, + ACTIONS(2011), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -99871,14 +101380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46250] = 5, + [47442] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1109), 1, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1907), 1, + sym_optional_chain, + STATE(1121), 1, sym_comment, - ACTIONS(922), 12, + ACTIONS(2013), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99891,7 +101406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(926), 28, + ACTIONS(2015), 25, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -99900,10 +101415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -99920,14 +101432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46304] = 5, + [47502] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1110), 1, + STATE(1122), 1, sym_comment, - ACTIONS(939), 12, + ACTIONS(2013), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99940,17 +101452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(941), 28, - sym__automatic_semicolon, + ACTIONS(2015), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -99969,27 +101481,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46358] = 11, + [47556] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - STATE(1111), 1, + STATE(1123), 1, sym_comment, - STATE(1303), 2, + ACTIONS(2017), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(1882), 12, + ACTIONS(1876), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -100002,7 +101517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1884), 21, + ACTIONS(1878), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -100022,18 +101537,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [46424] = 6, + [47624] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2013), 1, - sym_regex_flags, - STATE(1112), 1, + STATE(1124), 1, sym_comment, - ACTIONS(2009), 13, + ACTIONS(935), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -100046,14 +101557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(2011), 26, + ACTIONS(939), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -100071,33 +101582,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46480] = 12, + [47678] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2005), 1, - sym_optional_chain, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - STATE(1113), 1, + ACTIONS(2019), 1, + sym__automatic_semicolon, + STATE(1125), 1, sym_comment, - ACTIONS(2015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(1886), 12, + ACTIONS(901), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -100110,13 +101608,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1888), 19, - sym__automatic_semicolon, + ACTIONS(903), 27, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, + anon_sym_while, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -100130,14 +101633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [46548] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [47734] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1114), 1, + STATE(1126), 1, sym_comment, - ACTIONS(2017), 12, + ACTIONS(2021), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -100150,7 +101656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2019), 28, + ACTIONS(2023), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -100179,14 +101685,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46602] = 5, + [47788] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1115), 1, + STATE(1127), 1, sym_comment, - ACTIONS(2021), 12, + ACTIONS(2025), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -100199,7 +101705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2023), 28, + ACTIONS(2027), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -100228,166 +101734,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46656] = 26, + [47842] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + STATE(1128), 1, + sym_comment, + ACTIONS(901), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - STATE(1116), 1, - sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 7, + ACTIONS(903), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [46752] = 20, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - STATE(1117), 1, - sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2027), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2025), 12, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [46836] = 13, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [47896] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - STATE(1118), 1, + STATE(1129), 1, sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 12, + ACTIONS(897), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -100400,56 +101803,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 18, + ACTIONS(899), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [46906] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [47950] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - STATE(1119), 1, + STATE(1130), 1, sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(983), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -100458,157 +101849,101 @@ 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(2025), 17, + ACTIONS(987), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [46980] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(2027), 1, - anon_sym_PIPE, - STATE(1120), 1, - sym_comment, - ACTIONS(1878), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 9, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [47072] = 28, + anon_sym_BQUOTE, + [48004] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1121), 1, + STATE(1131), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -100618,12 +101953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [47172] = 5, + [48104] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1122), 1, + STATE(1132), 1, sym_comment, ACTIONS(2031), 12, anon_sym_STAR, @@ -100667,69 +102002,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47226] = 28, + [48158] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1123), 1, + STATE(1133), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -100739,163 +102074,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [47326] = 23, + [48258] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + STATE(1134), 1, + sym_comment, + ACTIONS(897), 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(899), 28, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1874), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1959), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2027), 1, - anon_sym_PIPE, - STATE(1124), 1, - sym_comment, - ACTIONS(1878), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + anon_sym_BQUOTE, + [48312] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1135), 1, + sym_comment, + ACTIONS(975), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 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(1965), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 10, + ACTIONS(979), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [47416] = 22, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [48366] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1959), 1, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - STATE(1125), 1, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + STATE(1136), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2027), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 10, - sym__ternary_qmark, + ACTIONS(2035), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [47504] = 12, + [48466] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2005), 1, - sym_optional_chain, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - STATE(1126), 1, + STATE(1137), 1, sym_comment, - ACTIONS(2015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(1866), 12, + ACTIONS(2037), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -100908,13 +102264,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1868), 19, - sym__automatic_semicolon, + ACTIONS(2039), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -100928,74 +102290,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47572] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [48520] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - STATE(1127), 1, + STATE(1138), 1, sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2041), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 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(2025), 17, + ACTIONS(2043), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47648] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [48574] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1128), 1, + STATE(1139), 1, sym_comment, - ACTIONS(2035), 12, + ACTIONS(2045), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101008,7 +102362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2037), 28, + ACTIONS(2047), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101037,14 +102391,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47702] = 5, + [48628] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1129), 1, + STATE(1140), 1, sym_comment, - ACTIONS(2039), 12, + ACTIONS(2049), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101057,7 +102411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2041), 28, + ACTIONS(2051), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101086,83 +102440,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47756] = 25, + [48682] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1947), 1, + STATE(1141), 1, + sym_comment, + ACTIONS(943), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - STATE(1130), 1, - sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 8, + ACTIONS(947), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [47850] = 5, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [48736] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1131), 1, + STATE(1142), 1, sym_comment, - ACTIONS(2043), 12, + ACTIONS(2053), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101175,7 +102509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2045), 28, + ACTIONS(2055), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101204,14 +102538,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47904] = 5, + [48790] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1132), 1, + STATE(1143), 1, sym_comment, - ACTIONS(2047), 12, + ACTIONS(967), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101224,7 +102558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2049), 28, + ACTIONS(971), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101253,14 +102587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47958] = 5, + [48844] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1133), 1, + STATE(1144), 1, sym_comment, - ACTIONS(2051), 12, + ACTIONS(991), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101273,7 +102607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2053), 28, + ACTIONS(995), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101302,14 +102636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48012] = 5, + [48898] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1134), 1, + STATE(1145), 1, sym_comment, - ACTIONS(2055), 12, + ACTIONS(951), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101322,7 +102656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2057), 28, + ACTIONS(955), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101351,82 +102685,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48066] = 24, + [48952] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1947), 1, + STATE(1146), 1, + sym_comment, + ACTIONS(959), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - STATE(1135), 1, - sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 9, + ACTIONS(963), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [48158] = 5, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [49006] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1136), 1, + STATE(1147), 1, sym_comment, - ACTIONS(2059), 12, + ACTIONS(2057), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101439,7 +102754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 28, + ACTIONS(2059), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101468,14 +102783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48212] = 5, + [49060] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1137), 1, + STATE(1148), 1, sym_comment, - ACTIONS(2063), 12, + ACTIONS(2061), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101488,7 +102803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 28, + ACTIONS(2063), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101517,14 +102832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48266] = 5, + [49114] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1138), 1, + STATE(1149), 1, sym_comment, - ACTIONS(2059), 12, + ACTIONS(929), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101537,7 +102852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 28, + ACTIONS(931), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101566,14 +102881,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48320] = 5, + [49168] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1139), 1, + STATE(1150), 1, sym_comment, - ACTIONS(2059), 12, + ACTIONS(2065), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101586,7 +102901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 28, + ACTIONS(2067), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101615,14 +102930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48374] = 5, + [49222] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1140), 1, + STATE(1151), 1, sym_comment, - ACTIONS(2059), 12, + ACTIONS(2069), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101635,7 +102950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 28, + ACTIONS(2071), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101664,14 +102979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48428] = 5, + [49276] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1141), 1, + STATE(1152), 1, sym_comment, - ACTIONS(987), 12, + ACTIONS(2073), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101684,7 +102999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(989), 28, + ACTIONS(2075), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101713,14 +103028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48482] = 5, + [49330] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1142), 1, + STATE(1153), 1, sym_comment, - ACTIONS(2067), 12, + ACTIONS(901), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101733,7 +103048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 28, + ACTIONS(903), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -101762,207 +103077,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48536] = 28, + [49384] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - STATE(1143), 1, + STATE(1154), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2071), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [48636] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1144), 1, - sym_comment, - ACTIONS(2073), 12, - anon_sym_STAR, + ACTIONS(1965), 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(2075), 28, + ACTIONS(1931), 15, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [48690] = 28, + [49464] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1145), 1, + STATE(1155), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2075), 5, + ACTIONS(2077), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [48790] = 5, + [49564] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1146), 1, + STATE(1156), 1, sym_comment, - ACTIONS(2077), 12, + ACTIONS(2079), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101975,7 +103231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2079), 28, + ACTIONS(2077), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102004,14 +103260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48844] = 5, + [49618] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1147), 1, + ACTIONS(2081), 1, + sym__automatic_semicolon, + STATE(1157), 1, sym_comment, - ACTIONS(2081), 12, + ACTIONS(848), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102024,17 +103282,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2083), 28, + ACTIONS(905), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -102053,86 +103310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48898] = 28, + [49674] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - STATE(1148), 1, - sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2083), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [48998] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1149), 1, + STATE(1158), 1, sym_comment, - ACTIONS(2085), 12, + ACTIONS(2083), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102145,7 +103330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2087), 28, + ACTIONS(2085), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102174,69 +103359,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49052] = 28, + [49728] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1150), 1, + STATE(1159), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -102246,12 +103431,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [49152] = 5, + [49828] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1151), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(1983), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + STATE(1160), 1, + sym_comment, + ACTIONS(2017), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(1896), 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(1898), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [49896] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1161), 1, sym_comment, ACTIONS(2089), 12, anon_sym_STAR, @@ -102295,12 +103536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49206] = 5, + [49950] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1152), 1, + STATE(1162), 1, sym_comment, ACTIONS(2093), 12, anon_sym_STAR, @@ -102344,14 +103585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49260] = 5, + [50004] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1153), 1, + STATE(1163), 1, sym_comment, - ACTIONS(2097), 12, + ACTIONS(2089), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102364,7 +103605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2099), 28, + ACTIONS(2091), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102393,14 +103634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49314] = 5, + [50058] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1154), 1, + STATE(1164), 1, sym_comment, - ACTIONS(2101), 12, + ACTIONS(2089), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102413,7 +103654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 28, + ACTIONS(2091), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102442,32 +103683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49368] = 13, + [50112] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - STATE(1155), 1, + STATE(1165), 1, sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 12, + ACTIONS(2089), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102480,33 +103703,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 18, + ACTIONS(2091), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49438] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [50166] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1156), 1, + STATE(1166), 1, sym_comment, - ACTIONS(928), 12, + ACTIONS(925), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102519,7 +103752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(930), 28, + ACTIONS(927), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102548,14 +103781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49492] = 5, + [50220] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1157), 1, + STATE(1167), 1, sym_comment, - ACTIONS(2105), 12, + ACTIONS(2097), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102568,7 +103801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2107), 28, + ACTIONS(2099), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102597,14 +103830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49546] = 5, + [50274] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1158), 1, + STATE(1168), 1, sym_comment, - ACTIONS(2109), 12, + ACTIONS(2101), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102617,7 +103850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2111), 28, + ACTIONS(2103), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102646,14 +103879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49600] = 5, + [50328] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1159), 1, + STATE(1169), 1, sym_comment, - ACTIONS(2113), 12, + ACTIONS(2105), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102666,7 +103899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2115), 28, + ACTIONS(2107), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102695,14 +103928,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49654] = 5, + [50382] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1160), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + STATE(1170), 1, sym_comment, - ACTIONS(2117), 12, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2107), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [50482] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1171), 1, + sym_comment, + ACTIONS(2109), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102715,7 +104020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2119), 28, + ACTIONS(2111), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102744,14 +104049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49708] = 5, + [50536] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1161), 1, + STATE(1172), 1, sym_comment, - ACTIONS(2121), 12, + ACTIONS(2113), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102764,7 +104069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2123), 28, + ACTIONS(2115), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102793,86 +104098,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49762] = 28, + [50590] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1162), 1, + STATE(1173), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2125), 5, + ACTIONS(2115), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [49862] = 5, + [50690] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1163), 1, + STATE(1174), 1, sym_comment, - ACTIONS(2127), 12, + ACTIONS(2117), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102885,7 +104190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2129), 28, + ACTIONS(2119), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -102914,63 +104219,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [49916] = 5, + [50744] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1164), 1, - sym_comment, - ACTIONS(2131), 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(2133), 28, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1880), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1882), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, anon_sym_AMP_AMP, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + STATE(1175), 1, + sym_comment, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 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(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 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, - [49970] = 5, + ACTIONS(2119), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [50844] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1165), 1, + STATE(1176), 1, sym_comment, - ACTIONS(2135), 12, + ACTIONS(2121), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102983,7 +104311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2137), 28, + ACTIONS(2123), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -103012,14 +104340,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50024] = 5, + [50898] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1166), 1, + ACTIONS(2129), 1, + sym_regex_flags, + STATE(1177), 1, sym_comment, - ACTIONS(2139), 12, + ACTIONS(2125), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103032,14 +104362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2141), 28, + anon_sym_instanceof, + ACTIONS(2127), 26, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -103057,152 +104387,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50078] = 18, + [50954] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - STATE(1167), 1, + STATE(1178), 1, sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2131), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 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(2025), 15, + ACTIONS(2133), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [50158] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [51008] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1168), 1, + STATE(1179), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2143), 5, + ACTIONS(2135), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [50258] = 5, + [51108] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1169), 1, + STATE(1180), 1, sym_comment, - ACTIONS(987), 12, + ACTIONS(2137), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103215,17 +104531,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(989), 28, - sym__automatic_semicolon, + ACTIONS(2139), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -103244,69 +104560,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50312] = 28, + [51162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + STATE(1181), 1, + sym_comment, + ACTIONS(2141), 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(2143), 28, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1874), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [51216] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1170), 1, + STATE(1182), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -103316,12 +104681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [50412] = 5, + [51316] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1171), 1, + STATE(1183), 1, sym_comment, ACTIONS(2147), 12, anon_sym_STAR, @@ -103336,7 +104701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2145), 28, + ACTIONS(2149), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -103365,14 +104730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50466] = 5, + [51370] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1172), 1, + STATE(1184), 1, sym_comment, - ACTIONS(2149), 12, + ACTIONS(2151), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103385,7 +104750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2151), 28, + ACTIONS(2153), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -103414,20 +104779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50520] = 8, + [51424] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1908), 1, - sym_optional_chain, - STATE(1173), 1, + STATE(1185), 1, sym_comment, - ACTIONS(2149), 12, + ACTIONS(2155), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103440,7 +104799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2151), 25, + ACTIONS(2157), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -103449,7 +104808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -103466,14 +104828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50580] = 5, + [51478] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1174), 1, + STATE(1186), 1, sym_comment, - ACTIONS(1755), 12, + ACTIONS(2159), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103486,7 +104848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 28, + ACTIONS(2161), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -103515,86 +104877,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50634] = 28, + [51532] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + STATE(1187), 1, + sym_comment, + ACTIONS(2163), 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(2165), 28, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1874), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - STATE(1175), 1, - sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(2153), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [50734] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [51586] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1176), 1, + STATE(1188), 1, sym_comment, - ACTIONS(2155), 12, + ACTIONS(929), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103607,17 +104946,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 28, + ACTIONS(931), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -103636,14 +104975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50788] = 5, + [51640] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1177), 1, + STATE(1189), 1, sym_comment, - ACTIONS(2159), 12, + ACTIONS(2167), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103656,7 +104995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2161), 28, + ACTIONS(2169), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -103685,608 +105024,501 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50842] = 28, + [51694] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2175), 1, + anon_sym_in, + ACTIONS(2180), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, + ACTIONS(2182), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(2183), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2193), 1, + ACTIONS(2206), 1, anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, + ACTIONS(2208), 1, sym__ternary_qmark, - STATE(1178), 1, + STATE(1190), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, + ACTIONS(2178), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2083), 4, + ACTIONS(2173), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [50941] = 29, + [51795] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, - anon_sym_AMP_AMP, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_GT_GT, - ACTIONS(2175), 1, - anon_sym_AMP, - ACTIONS(2177), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_PIPE, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - ACTIONS(2193), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, - sym__ternary_qmark, - ACTIONS(2199), 1, - anon_sym_in, - STATE(1179), 1, + STATE(1191), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2165), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(1965), 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(2191), 2, + ACTIONS(1931), 16, + 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, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(2187), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(2197), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51042] = 28, + [51870] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, - anon_sym_GT_GT, - ACTIONS(2214), 1, - anon_sym_AMP, - ACTIONS(2216), 1, - anon_sym_CARET, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - STATE(1180), 1, + STATE(1192), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(1965), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 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(2228), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(1931), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(2204), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2226), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1985), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [51141] = 30, + [51939] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, - anon_sym_GT_GT, - ACTIONS(2214), 1, - anon_sym_AMP, - ACTIONS(2216), 1, - anon_sym_CARET, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1181), 1, + STATE(1193), 1, sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(1965), 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(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2238), 2, + ACTIONS(1931), 16, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(2204), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2226), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51244] = 28, + [52012] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - STATE(1182), 1, + STATE(1194), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2033), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [51343] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1183), 1, - sym_comment, - ACTIONS(2159), 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(2161), 27, + ACTIONS(1931), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [51396] = 28, + [52103] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2216), 1, - anon_sym_CARET, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - STATE(1184), 1, + STATE(1195), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2153), 4, + ACTIONS(1931), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [51495] = 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [52192] = 22, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, - sym_optional_chain, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, - anon_sym_GT_GT, - ACTIONS(2214), 1, - anon_sym_AMP, - ACTIONS(2216), 1, - anon_sym_CARET, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(1983), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + ACTIONS(2184), 1, + anon_sym_GT_GT, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - STATE(1185), 1, + STATE(1196), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1965), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2145), 4, + ACTIONS(1931), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [51594] = 18, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [52279] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2210), 1, - anon_sym_GT_GT, - ACTIONS(2222), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - STATE(1186), 1, + STATE(1197), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 7, + ACTIONS(1965), 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(2025), 14, + ACTIONS(1931), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -104294,178 +105526,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51673] = 30, + [52354] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2180), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1187), 1, + STATE(1198), 1, sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2240), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51776] = 30, + ACTIONS(1931), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [52447] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1188), 1, + STATE(1199), 1, sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2242), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51879] = 13, + ACTIONS(1931), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [52538] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - STATE(1189), 1, + STATE(1200), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 12, + ACTIONS(1965), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -104478,11 +105699,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 17, + ACTIONS(1931), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104496,193 +105717,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51948] = 24, + [52607] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2210), 1, - anon_sym_GT_GT, ACTIONS(2214), 1, - anon_sym_AMP, + anon_sym_PERCENT, ACTIONS(2216), 1, - anon_sym_CARET, + anon_sym_STAR_STAR, ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, + anon_sym_COMMA, ACTIONS(2224), 1, - anon_sym_STAR_STAR, - STATE(1190), 1, + anon_sym_AMP_AMP, + ACTIONS(2226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + ACTIONS(2234), 1, + anon_sym_CARET, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1201), 1, sym_comment, - ACTIONS(2015), 2, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2222), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [52039] = 25, + [52710] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2210), 1, + ACTIONS(2226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - STATE(1191), 1, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1202), 1, sym_comment, - ACTIONS(2015), 2, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + ACTIONS(2248), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 7, + [52813] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1203), 1, + sym_comment, + ACTIONS(2097), 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(2099), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [52132] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [52866] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2222), 1, + ACTIONS(2184), 1, + anon_sym_GT_GT, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - STATE(1192), 1, + STATE(1204), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2220), 2, + ACTIONS(2186), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 8, + ACTIONS(1965), 7, 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(2025), 16, + ACTIONS(1931), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -104690,602 +105972,590 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [52207] = 22, + [52945] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2210), 1, + ACTIONS(2180), 1, + anon_sym_AMP_AMP, + ACTIONS(2182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2222), 1, + ACTIONS(2188), 1, + anon_sym_AMP, + ACTIONS(2190), 1, + anon_sym_CARET, + ACTIONS(2192), 1, + anon_sym_PIPE, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - STATE(1193), 1, + ACTIONS(2206), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2208), 1, + sym__ternary_qmark, + STATE(1205), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2027), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 9, + ACTIONS(2077), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [52294] = 23, + [53044] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2027), 1, - anon_sym_PIPE, - ACTIONS(2210), 1, + ACTIONS(2180), 1, + anon_sym_AMP_AMP, + ACTIONS(2182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2222), 1, + ACTIONS(2190), 1, + anon_sym_CARET, + ACTIONS(2192), 1, + anon_sym_PIPE, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - STATE(1194), 1, + ACTIONS(2206), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2208), 1, + sym__ternary_qmark, + STATE(1206), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 9, + ACTIONS(2087), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [52383] = 24, + [53143] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2027), 1, - anon_sym_PIPE, - ACTIONS(2210), 1, + ACTIONS(2180), 1, + anon_sym_AMP_AMP, + ACTIONS(2182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2222), 1, + ACTIONS(2192), 1, + anon_sym_PIPE, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - STATE(1195), 1, + ACTIONS(2206), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2208), 1, + sym__ternary_qmark, + STATE(1207), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 8, + ACTIONS(2003), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [52474] = 15, + [53242] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2222), 1, + ACTIONS(2180), 1, + anon_sym_AMP_AMP, + ACTIONS(2182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2184), 1, + anon_sym_GT_GT, + ACTIONS(2188), 1, + anon_sym_AMP, + ACTIONS(2190), 1, + anon_sym_CARET, + ACTIONS(2192), 1, + anon_sym_PIPE, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - STATE(1196), 1, + ACTIONS(2206), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2208), 1, + sym__ternary_qmark, + STATE(1208), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2186), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 16, - 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(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [52547] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2005), 1, - sym_optional_chain, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - STATE(1197), 1, - sym_comment, - ACTIONS(2015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 12, - anon_sym_STAR, + ACTIONS(2178), 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(2025), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(2200), 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, - [52616] = 20, + ACTIONS(2007), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [53341] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2210), 1, - anon_sym_GT_GT, - ACTIONS(2222), 1, + ACTIONS(2214), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - STATE(1198), 1, + ACTIONS(2224), 1, + anon_sym_AMP_AMP, + ACTIONS(2226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + ACTIONS(2234), 1, + anon_sym_CARET, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + ACTIONS(2250), 1, + anon_sym_COMMA, + ACTIONS(2253), 1, + anon_sym_RBRACE, + STATE(1209), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2087), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1303), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2027), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2025), 11, - 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, - [52699] = 26, + [53444] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - STATE(1199), 1, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1210), 1, sym_comment, - ACTIONS(2015), 2, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + ACTIONS(2255), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [52794] = 28, + [53547] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1200), 1, + STATE(1211), 1, sym_comment, - ACTIONS(2015), 2, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + ACTIONS(2257), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1939), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [52893] = 28, + [53650] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2180), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2182), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2206), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2208), 1, sym__ternary_qmark, - STATE(1201), 1, + STATE(1212), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1923), 4, + ACTIONS(2035), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [52992] = 6, + [53749] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1916), 1, anon_sym_EQ, - STATE(1202), 1, + STATE(1213), 1, sym_comment, - ACTIONS(1755), 12, + ACTIONS(1909), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105298,7 +106568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 26, + ACTIONS(1911), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -105325,306 +106595,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53047] = 30, + [53804] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2244), 1, - anon_sym_COMMA, - ACTIONS(2247), 1, - anon_sym_RBRACE, - STATE(1203), 1, + STATE(1214), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2033), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53150] = 30, + ACTIONS(2087), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [53903] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2180), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2182), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - ACTIONS(2247), 1, - anon_sym_RBRACE, - ACTIONS(2249), 1, - anon_sym_COMMA, - STATE(1204), 1, + STATE(1215), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2153), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53253] = 30, + ACTIONS(1931), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [53998] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, - anon_sym_GT_GT, ACTIONS(2214), 1, - anon_sym_AMP, - ACTIONS(2216), 1, - anon_sym_CARET, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - ACTIONS(2236), 1, + ACTIONS(2218), 1, anon_sym_COMMA, - STATE(1205), 1, - sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2228), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2230), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2252), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(2204), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2226), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [53356] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2005), 1, - sym_optional_chain, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2254), 1, - anon_sym_COMMA, - ACTIONS(2257), 1, - anon_sym_RBRACE, - STATE(1206), 1, + STATE(1216), 1, sym_comment, - ACTIONS(2015), 2, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2153), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + ACTIONS(2259), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53459] = 5, + [54101] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(852), 1, + anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1207), 1, + STATE(1217), 1, sym_comment, - ACTIONS(2035), 12, + ACTIONS(850), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105637,16 +106830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2037), 27, - sym__automatic_semicolon, + ACTIONS(856), 26, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -105665,766 +106857,592 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53512] = 7, + [54156] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - STATE(1208), 1, - sym_comment, - STATE(1313), 1, - sym_arguments, - ACTIONS(1904), 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(1906), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1979), 1, anon_sym_LBRACK, + ACTIONS(1981), 1, anon_sym_DOT, + ACTIONS(1983), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1985), 1, anon_sym_BQUOTE, - [53569] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - sym_optional_chain, - STATE(1209), 1, - sym_comment, - STATE(1313), 1, - sym_arguments, - ACTIONS(1904), 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(1906), 22, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(2214), 1, anon_sym_PERCENT, + ACTIONS(2216), 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, - [53632] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2005), 1, - sym_optional_chain, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1210), 1, + STATE(1218), 1, sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2261), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53735] = 30, + ACTIONS(2077), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [54255] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1211), 1, + STATE(1219), 1, sym_comment, - STATE(1887), 1, + STATE(1899), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2263), 2, + ACTIONS(2261), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53838] = 28, + [54358] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - STATE(1212), 1, - sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2265), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [53937] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2005), 1, - sym_optional_chain, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, - anon_sym_GT_GT, - ACTIONS(2214), 1, - anon_sym_AMP, - ACTIONS(2216), 1, - anon_sym_CARET, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(1973), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1213), 1, + STATE(1220), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2075), 4, - sym__automatic_semicolon, + ACTIONS(2263), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [54036] = 28, + anon_sym_RPAREN, + anon_sym_RBRACK, + [54457] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1214), 1, + STATE(1221), 1, sym_comment, - ACTIONS(2015), 2, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + ACTIONS(2265), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2083), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [54135] = 28, + [54560] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1215), 1, + STATE(1222), 1, sym_comment, - ACTIONS(2015), 2, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + ACTIONS(2267), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [54234] = 30, + [54663] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2236), 1, + ACTIONS(2253), 1, + anon_sym_RBRACE, + ACTIONS(2269), 1, anon_sym_COMMA, - STATE(1216), 1, + STATE(1223), 1, sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2033), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2267), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54337] = 30, + [54766] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1217), 1, + STATE(1224), 1, sym_comment, - STATE(1887), 1, + STATE(1899), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2269), 2, + ACTIONS(2272), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54440] = 28, + [54869] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1218), 1, + STATE(1225), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2029), 4, + ACTIONS(2135), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [54539] = 6, + [54968] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(868), 1, - anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1219), 1, + STATE(1226), 1, sym_comment, - ACTIONS(866), 12, + ACTIONS(1961), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106437,15 +107455,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(872), 26, + ACTIONS(1963), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -106464,621 +107483,699 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54594] = 6, + [55021] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1917), 1, - anon_sym_EQ, - STATE(1220), 1, - sym_comment, - ACTIONS(1910), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(1983), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, + anon_sym_AMP_AMP, + ACTIONS(2226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, anon_sym_GT_GT, + ACTIONS(2232), 1, anon_sym_AMP, + ACTIONS(2234), 1, + anon_sym_CARET, + ACTIONS(2236), 1, anon_sym_PIPE, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1227), 1, + sym_comment, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2210), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1912), 26, + ACTIONS(2242), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2274), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(2220), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2238), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55124] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, anon_sym_LBRACK, + ACTIONS(1981), 1, anon_sym_DOT, + ACTIONS(1983), 1, sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + ACTIONS(2234), 1, + anon_sym_CARET, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1228), 1, + sym_comment, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2210), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2230), 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(2240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2276), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(2220), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2238), 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, - [54649] = 28, + [55227] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2180), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2182), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2206), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2208), 1, sym__ternary_qmark, - STATE(1221), 1, + STATE(1229), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2143), 4, + ACTIONS(2145), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [54748] = 30, + [55326] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1222), 1, + STATE(1230), 1, sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2271), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54851] = 6, + ACTIONS(2145), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [55425] = 20, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1899), 1, - anon_sym_EQ, - STATE(1223), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(1983), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + ACTIONS(2184), 1, + anon_sym_GT_GT, + ACTIONS(2196), 1, + anon_sym_PERCENT, + ACTIONS(2198), 1, + anon_sym_STAR_STAR, + STATE(1231), 1, sym_comment, - ACTIONS(1892), 12, + ACTIONS(2017), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2186), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2194), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2200), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1965), 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(1894), 26, + ACTIONS(1931), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [54906] = 30, + [55508] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1224), 1, + STATE(1232), 1, sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2273), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55009] = 28, + ACTIONS(2035), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [55607] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1225), 1, + STATE(1233), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2125), 4, + ACTIONS(2007), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [55108] = 30, + [55706] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1226), 1, + STATE(1234), 1, sym_comment, - STATE(1887), 1, + STATE(1899), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2275), 2, + ACTIONS(2278), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55211] = 30, + [55809] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, - anon_sym_GT_GT, ACTIONS(2214), 1, - anon_sym_AMP, - ACTIONS(2216), 1, - anon_sym_CARET, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1227), 1, + ACTIONS(2228), 1, + anon_sym_GT_GT, + STATE(1235), 1, sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(2230), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2277), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(1965), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1931), 14, + 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, - [55314] = 30, + [55888] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, - anon_sym_GT_GT, - ACTIONS(2214), 1, - anon_sym_AMP, ACTIONS(2216), 1, - anon_sym_CARET, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1228), 1, + STATE(1236), 1, sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(1965), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 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(2228), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2279), 2, + ACTIONS(1931), 17, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(2204), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2226), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [55417] = 6, + [55957] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(852), 1, + anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1899), 1, - anon_sym_EQ, - STATE(1229), 1, + STATE(1237), 1, sym_comment, - ACTIONS(1892), 12, + ACTIONS(850), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107091,15 +108188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1894), 26, + ACTIONS(856), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -107118,160 +108215,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55472] = 30, + [56012] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1230), 1, + STATE(1238), 1, sym_comment, - STATE(1887), 1, + STATE(1899), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2281), 2, + ACTIONS(2280), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55575] = 28, + [56115] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, - anon_sym_AMP_AMP, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(2183), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - ACTIONS(2193), 1, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1231), 1, + STATE(1239), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2143), 4, - sym__automatic_semicolon, + ACTIONS(2282), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [55674] = 6, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [56214] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1917), 1, - anon_sym_EQ, - STATE(1232), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(2284), 1, + sym_optional_chain, + STATE(1240), 1, sym_comment, - ACTIONS(1910), 12, + STATE(1366), 1, + sym_arguments, + ACTIONS(1903), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107284,17 +108389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1912), 26, + ACTIONS(1905), 22, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -107311,214 +108412,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55729] = 30, + [56277] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1233), 1, + STATE(1241), 1, sym_comment, - STATE(1887), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2283), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55832] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1811), 1, - anon_sym_EQ, - STATE(1234), 1, - sym_comment, - ACTIONS(1755), 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(1757), 26, - sym__ternary_qmark, + ACTIONS(2119), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [55887] = 28, + anon_sym_SEMI, + [56376] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2183), 1, - anon_sym_PERCENT, - ACTIONS(2185), 1, - anon_sym_STAR_STAR, - ACTIONS(2193), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1235), 1, + STATE(1242), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2125), 4, + ACTIONS(2115), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [55986] = 8, + [56475] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(868), 1, - anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2285), 1, - sym__automatic_semicolon, - STATE(1236), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + STATE(1243), 1, sym_comment, - ACTIONS(932), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(866), 12, + STATE(1366), 1, + sym_arguments, + ACTIONS(1903), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107531,10 +108578,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(872), 23, + ACTIONS(1905), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -107555,160 +108604,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56045] = 28, + [56532] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1237), 1, + STATE(1244), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(2212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2230), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(2240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(2220), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2238), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2107), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [56631] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(1983), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + ACTIONS(2234), 1, + anon_sym_CARET, + ACTIONS(2236), 1, + anon_sym_PIPE, + STATE(1245), 1, + sym_comment, + ACTIONS(2017), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2210), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2287), 4, + ACTIONS(1931), 8, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [56144] = 28, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [56722] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2183), 1, - anon_sym_PERCENT, - ACTIONS(2185), 1, - anon_sym_STAR_STAR, - ACTIONS(2193), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, - sym__ternary_qmark, - STATE(1238), 1, + STATE(1246), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2087), 4, + ACTIONS(1931), 7, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [56243] = 7, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [56815] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(868), 1, - anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1987), 1, - sym__automatic_semicolon, - STATE(1239), 1, + ACTIONS(1927), 1, + anon_sym_EQ, + STATE(1247), 1, sym_comment, - ACTIONS(864), 12, + ACTIONS(1920), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107721,14 +108832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(932), 25, + ACTIONS(1922), 26, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -107747,450 +108859,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56300] = 28, + [56870] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2180), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, + ACTIONS(2182), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(2183), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2193), 1, + ACTIONS(2206), 1, anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, + ACTIONS(2208), 1, sym__ternary_qmark, - STATE(1240), 1, + STATE(1248), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2075), 4, + ACTIONS(2029), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [56399] = 30, + [56969] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2236), 1, - anon_sym_COMMA, - STATE(1241), 1, + STATE(1249), 1, sym_comment, - STATE(1887), 1, + STATE(1899), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2289), 2, + ACTIONS(2286), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56502] = 28, + [57072] = 22, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, - anon_sym_AMP_AMP, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_GT_GT, - ACTIONS(2175), 1, - anon_sym_AMP, - ACTIONS(2177), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_PIPE, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - ACTIONS(2193), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, - sym__ternary_qmark, - STATE(1242), 1, + ACTIONS(2228), 1, + anon_sym_GT_GT, + STATE(1250), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1965), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1923), 4, + ACTIONS(1931), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [56601] = 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [57159] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, - anon_sym_AMP_AMP, - ACTIONS(2169), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, - anon_sym_GT_GT, - ACTIONS(2175), 1, - anon_sym_AMP, - ACTIONS(2177), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_PIPE, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - ACTIONS(2193), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, - sym__ternary_qmark, - STATE(1243), 1, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + STATE(1251), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1939), 4, + ACTIONS(1931), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [56700] = 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [57248] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2180), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, + ACTIONS(2182), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(2183), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - STATE(1244), 1, + ACTIONS(2206), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2208), 1, + sym__ternary_qmark, + STATE(1252), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 6, + ACTIONS(2033), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [56795] = 20, + [57347] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2171), 1, - anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - STATE(1245), 1, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + ACTIONS(2234), 1, + anon_sym_CARET, + STATE(1253), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1303), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2027), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2025), 11, + ACTIONS(1931), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [56878] = 13, + [57438] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(852), 1, + anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2005), 1, - sym_optional_chain, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - ACTIONS(2185), 1, - anon_sym_STAR_STAR, - STATE(1246), 1, + ACTIONS(2288), 1, + sym__automatic_semicolon, + STATE(1254), 1, sym_comment, - ACTIONS(2015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 12, + ACTIONS(905), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(850), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -108203,55 +109299,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 17, - sym__automatic_semicolon, + ACTIONS(856), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + 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, - [56947] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57497] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - STATE(1247), 1, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, + anon_sym_AMP_AMP, + ACTIONS(2226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + ACTIONS(2234), 1, + anon_sym_CARET, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1255), 1, sym_comment, - ACTIONS(2015), 2, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1303), 2, + ACTIONS(2212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2290), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 10, + ACTIONS(2220), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2238), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57600] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1927), 1, + anon_sym_EQ, + STATE(1256), 1, + sym_comment, + ACTIONS(1920), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -108260,270 +109415,222 @@ 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(2025), 16, + ACTIONS(1922), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57020] = 24, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57655] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2027), 1, - anon_sym_PIPE, - ACTIONS(2171), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, + anon_sym_AMP_AMP, + ACTIONS(2226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2183), 1, - anon_sym_PERCENT, - ACTIONS(2185), 1, - anon_sym_STAR_STAR, - STATE(1248), 1, + ACTIONS(2236), 1, + anon_sym_PIPE, + STATE(1257), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 8, + ACTIONS(1931), 6, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [57111] = 23, + [57750] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2027), 1, - anon_sym_PIPE, - ACTIONS(2171), 1, - anon_sym_GT_GT, - ACTIONS(2175), 1, - anon_sym_AMP, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - STATE(1249), 1, - sym_comment, - ACTIONS(2015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2163), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2189), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2191), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(2165), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2187), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(2224), 1, anon_sym_AMP_AMP, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + ACTIONS(2234), 1, anon_sym_CARET, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - [57200] = 22, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2005), 1, - sym_optional_chain, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - ACTIONS(2171), 1, - anon_sym_GT_GT, - ACTIONS(2183), 1, - anon_sym_PERCENT, - ACTIONS(2185), 1, - anon_sym_STAR_STAR, - STATE(1250), 1, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1258), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2027), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 9, + ACTIONS(2029), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [57287] = 16, + [57849] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - STATE(1251), 1, + STATE(1259), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 8, + ACTIONS(1965), 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(2025), 16, + ACTIONS(1931), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -108536,410 +109643,421 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57362] = 25, + [57922] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2180), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(2183), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - STATE(1252), 1, + ACTIONS(2206), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2208), 1, + sym__ternary_qmark, + STATE(1260), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 7, + ACTIONS(2107), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [57455] = 24, + [58021] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2171), 1, - anon_sym_GT_GT, - ACTIONS(2175), 1, - anon_sym_AMP, - ACTIONS(2177), 1, - anon_sym_CARET, - ACTIONS(2179), 1, - anon_sym_PIPE, - ACTIONS(2183), 1, - anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - STATE(1253), 1, + STATE(1261), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2189), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2191), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(1965), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 8, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1931), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [57546] = 13, + anon_sym_instanceof, + [58090] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2185), 1, + ACTIONS(2180), 1, + anon_sym_AMP_AMP, + ACTIONS(2182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2184), 1, + anon_sym_GT_GT, + ACTIONS(2188), 1, + anon_sym_AMP, + ACTIONS(2190), 1, + anon_sym_CARET, + ACTIONS(2192), 1, + anon_sym_PIPE, + ACTIONS(2196), 1, + anon_sym_PERCENT, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - STATE(1254), 1, + ACTIONS(2206), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2208), 1, + sym__ternary_qmark, + STATE(1262), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 12, + 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(2186), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(2178), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2200), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57615] = 18, + ACTIONS(2115), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [58189] = 20, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2171), 1, - anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - STATE(1255), 1, + ACTIONS(2228), 1, + anon_sym_GT_GT, + STATE(1263), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1303), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 7, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2238), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1965), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 14, + ACTIONS(1931), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [57694] = 28, + [58272] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2180), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, + ACTIONS(2182), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(2183), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(2185), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(2193), 1, + ACTIONS(2206), 1, anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, + ACTIONS(2208), 1, sym__ternary_qmark, - STATE(1256), 1, + STATE(1264), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2145), 4, + ACTIONS(2119), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [57793] = 28, + [58371] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2183), 1, - anon_sym_PERCENT, - ACTIONS(2185), 1, - anon_sym_STAR_STAR, - ACTIONS(2193), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1257), 1, + STATE(1265), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2153), 4, + ACTIONS(2003), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [57892] = 6, + [58470] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(868), 1, + ACTIONS(852), 1, anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1258), 1, + ACTIONS(2081), 1, + sym__automatic_semicolon, + STATE(1266), 1, sym_comment, - ACTIONS(866), 12, + ACTIONS(848), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -108952,8 +110070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(872), 26, - sym__automatic_semicolon, + ACTIONS(905), 25, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -108979,299 +110096,402 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57947] = 28, + [58527] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2218), 1, + anon_sym_COMMA, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2183), 1, - anon_sym_PERCENT, - ACTIONS(2185), 1, - anon_sym_STAR_STAR, - ACTIONS(2193), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1259), 1, + STATE(1267), 1, sym_comment, - ACTIONS(2015), 2, + STATE(1899), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + ACTIONS(2292), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1985), 4, - sym__automatic_semicolon, + [58630] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1809), 1, + anon_sym_EQ, + STATE(1268), 1, + sym_comment, + ACTIONS(1763), 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(1765), 26, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [58046] = 28, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [58685] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1916), 1, + anon_sym_EQ, + STATE(1269), 1, + 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), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2001), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2003), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [58740] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(1983), 1, + sym_optional_chain, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2183), 1, - anon_sym_PERCENT, - ACTIONS(2185), 1, - anon_sym_STAR_STAR, - ACTIONS(2193), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1260), 1, + ACTIONS(2294), 1, + anon_sym_COMMA, + ACTIONS(2297), 1, + anon_sym_RBRACE, + STATE(1270), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2087), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2033), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [58145] = 28, + [58843] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2167), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2169), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2171), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2175), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2177), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2179), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2183), 1, - anon_sym_PERCENT, - ACTIONS(2185), 1, - anon_sym_STAR_STAR, - ACTIONS(2193), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2195), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1261), 1, + STATE(1271), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2163), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2189), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2191), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2165), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2187), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2029), 4, + ACTIONS(2033), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [58244] = 30, + [58942] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(2180), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(2182), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(2184), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(2188), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(2190), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(2192), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(2196), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(2198), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, + ACTIONS(2206), 1, anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, + ACTIONS(2208), 1, sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2293), 1, - anon_sym_RPAREN, - STATE(1262), 1, + STATE(1272), 1, sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(2186), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(2194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(2202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(2178), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(2200), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58346] = 5, + ACTIONS(2135), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [59041] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1263), 1, + ACTIONS(1807), 1, + anon_sym_EQ, + STATE(1273), 1, sym_comment, - ACTIONS(1991), 12, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -109284,7 +110504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1993), 26, + ACTIONS(1765), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -109311,14 +110531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58398] = 5, + [59096] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1264), 1, + STATE(1274), 1, sym_comment, - ACTIONS(2077), 12, + ACTIONS(1987), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -109331,7 +110551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2079), 26, + ACTIONS(1989), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -109358,158 +110578,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58450] = 30, + [59148] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2295), 1, - anon_sym_RPAREN, - STATE(1265), 1, - sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58552] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, + ACTIONS(1973), 1, anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - ACTIONS(2297), 1, - anon_sym_COLON, - STATE(1266), 1, + ACTIONS(2301), 1, + anon_sym_RBRACK, + STATE(1275), 1, sym_comment, - STATE(1762), 1, + STATE(1781), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58654] = 5, + [59250] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1267), 1, + STATE(1276), 1, sym_comment, - ACTIONS(2073), 12, + ACTIONS(2053), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -109522,7 +110670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 26, + ACTIONS(2055), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -109549,14 +110697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58706] = 5, + [59302] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1268), 1, + STATE(1277), 1, sym_comment, - ACTIONS(2039), 12, + ACTIONS(2057), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -109569,7 +110717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2041), 26, + ACTIONS(2059), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -109596,84 +110744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58758] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - STATE(1269), 1, - sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2299), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [58856] = 5, + [59354] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1270), 1, + STATE(1278), 1, sym_comment, - ACTIONS(2109), 12, + ACTIONS(2069), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -109686,7 +110764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2111), 26, + ACTIONS(2071), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -109713,21 +110791,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58908] = 8, + [59406] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1815), 1, - anon_sym_EQ, - ACTIONS(1827), 1, - anon_sym_in, - ACTIONS(1830), 1, - anon_sym_of, - STATE(1271), 1, + STATE(1279), 1, sym_comment, - ACTIONS(1755), 11, + ACTIONS(2089), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -109738,11 +110811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 24, + ACTIONS(2091), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -109763,86 +110838,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58966] = 30, + [59458] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - ACTIONS(2301), 1, - anon_sym_RBRACK, - STATE(1272), 1, + ACTIONS(2303), 1, + anon_sym_RPAREN, + STATE(1280), 1, sym_comment, - STATE(1762), 1, + STATE(1781), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59068] = 5, + [59560] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1273), 1, + ACTIONS(1835), 1, + anon_sym_EQ, + STATE(1281), 1, sym_comment, - ACTIONS(2047), 12, + ACTIONS(1832), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -109855,14 +110937,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2049), 26, - sym__automatic_semicolon, + ACTIONS(1765), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -109882,86 +110959,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59120] = 30, + [59616] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2303), 1, - anon_sym_RPAREN, - STATE(1274), 1, + STATE(1282), 1, sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(2173), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59222] = 5, + [59714] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1275), 1, + STATE(1283), 1, sym_comment, - ACTIONS(1977), 12, + ACTIONS(1999), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -109974,7 +111049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1979), 26, + ACTIONS(2001), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -110001,14 +111076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59274] = 5, + [59766] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1276), 1, + STATE(1284), 1, sym_comment, - ACTIONS(2051), 12, + ACTIONS(2083), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -110021,7 +111096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2053), 26, + ACTIONS(2085), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -110048,14 +111123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59326] = 5, + [59818] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1277), 1, + STATE(1285), 1, sym_comment, - ACTIONS(2055), 12, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -110068,7 +111143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2057), 26, + ACTIONS(1765), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -110095,14 +111170,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59378] = 5, + [59870] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1278), 1, + STATE(1286), 1, sym_comment, - ACTIONS(2105), 12, + ACTIONS(2045), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -110115,7 +111190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2107), 26, + ACTIONS(2047), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -110142,88 +111217,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59430] = 30, + [59922] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + STATE(1287), 1, + sym_comment, + ACTIONS(2031), 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(2029), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2305), 1, - anon_sym_RPAREN, - STATE(1279), 1, - sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59532] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [59974] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1852), 1, - anon_sym_EQ, - STATE(1280), 1, + STATE(1288), 1, sym_comment, - ACTIONS(1755), 12, + ACTIONS(2105), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -110236,10 +111284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 25, + ACTIONS(2107), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, @@ -110262,14 +111311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59586] = 5, + [60026] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1281), 1, + STATE(1289), 1, sym_comment, - ACTIONS(2017), 12, + ACTIONS(1991), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -110282,7 +111331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2019), 26, + ACTIONS(1993), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -110309,86 +111358,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59638] = 30, + [60078] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - ACTIONS(2307), 1, + ACTIONS(2305), 1, anon_sym_RPAREN, - STATE(1282), 1, + STATE(1290), 1, sym_comment, - STATE(1762), 1, + STATE(1781), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59740] = 5, + [60180] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(852), 1, + anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1283), 1, + STATE(1291), 1, sym_comment, - ACTIONS(961), 12, + ACTIONS(2307), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(850), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -110401,14 +111457,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(965), 26, - sym__automatic_semicolon, + ACTIONS(856), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -110428,158 +111479,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59792] = 30, + [60236] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, ACTIONS(2309), 1, - anon_sym_RBRACK, - STATE(1284), 1, + anon_sym_RPAREN, + STATE(1292), 1, sym_comment, - STATE(1762), 1, + STATE(1781), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59894] = 30, + [60338] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2311), 1, + anon_sym_RPAREN, + STATE(1293), 1, + sym_comment, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60440] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2311), 1, + ACTIONS(2299), 1, anon_sym_COMMA, ACTIONS(2313), 1, - anon_sym_RBRACK, - STATE(1285), 1, + anon_sym_RPAREN, + STATE(1294), 1, sym_comment, - STATE(2134), 1, - aux_sym_array_repeat1, - ACTIONS(1878), 2, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59996] = 5, + [60542] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1286), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2059), 12, + ACTIONS(2109), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -110592,7 +111715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 26, + ACTIONS(2111), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -110619,93 +111742,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60048] = 30, + [60594] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + STATE(1296), 1, + sym_comment, + ACTIONS(2113), 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(2115), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2315), 1, - anon_sym_RPAREN, - STATE(1287), 1, - sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60150] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [60646] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1899), 1, - anon_sym_EQ, - STATE(1288), 1, + STATE(1297), 1, sym_comment, - ACTIONS(2317), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1892), 12, + ACTIONS(2117), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -110718,9 +111809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1894), 21, + ACTIONS(2119), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -110740,14 +111836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60206] = 5, + [60698] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1289), 1, + STATE(1298), 1, sym_comment, - ACTIONS(2059), 12, + ACTIONS(2147), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -110760,7 +111856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 26, + ACTIONS(2149), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -110787,114 +111883,380 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60258] = 5, + [60750] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1290), 1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2315), 1, + anon_sym_RBRACE, + STATE(1299), 1, sym_comment, - ACTIONS(2059), 12, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60852] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, anon_sym_GT_GT, + ACTIONS(1939), 1, anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2317), 1, + anon_sym_RPAREN, + STATE(1300), 1, + sym_comment, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2061), 26, - sym__automatic_semicolon, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60954] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, + ACTIONS(2299), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2319), 1, + anon_sym_COLON, + STATE(1301), 1, + sym_comment, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61056] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, anon_sym_AMP_AMP, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2321), 1, + anon_sym_RPAREN, + STATE(1302), 1, + sym_comment, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 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(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 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, - [60310] = 5, + [61158] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1291), 1, - sym_comment, - ACTIONS(2059), 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(2061), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1880), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, anon_sym_AMP_AMP, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2325), 1, + anon_sym_RPAREN, + STATE(1303), 1, + sym_comment, + STATE(2069), 1, + aux_sym_array_repeat1, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 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(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 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, - [60362] = 8, + [61260] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1917), 1, + ACTIONS(1838), 1, anon_sym_EQ, - ACTIONS(2319), 1, + ACTIONS(1840), 1, anon_sym_in, - ACTIONS(2322), 1, + ACTIONS(1843), 1, anon_sym_of, - STATE(1292), 1, + STATE(1304), 1, sym_comment, - ACTIONS(1910), 11, + ACTIONS(1763), 11, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -110906,7 +112268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1912), 24, + ACTIONS(1765), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -110931,180 +112293,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60420] = 5, + [61318] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1293), 1, - sym_comment, - ACTIONS(2117), 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(2119), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1880), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, anon_sym_PERCENT, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1975), 1, + sym__ternary_qmark, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2327), 1, + anon_sym_RPAREN, + STATE(1305), 1, + sym_comment, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [60472] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1294), 1, - sym_comment, - ACTIONS(2121), 12, + ACTIONS(1929), 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(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2123), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 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, - [60524] = 30, + [61420] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(2324), 1, - anon_sym_RPAREN, - STATE(1295), 1, + ACTIONS(2329), 1, + anon_sym_RBRACK, + STATE(1306), 1, sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + STATE(2051), 1, + aux_sym_array_repeat1, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60626] = 5, + [61522] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1296), 1, + ACTIONS(1807), 1, + anon_sym_EQ, + STATE(1307), 1, sym_comment, - ACTIONS(2113), 12, + ACTIONS(1860), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -111117,14 +112464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2115), 26, - sym__automatic_semicolon, + ACTIONS(1765), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -111144,21 +112486,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60678] = 8, + [61578] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1899), 1, - anon_sym_EQ, - ACTIONS(2317), 1, - anon_sym_of, - ACTIONS(2326), 1, - anon_sym_in, - STATE(1297), 1, + STATE(1308), 1, sym_comment, - ACTIONS(1892), 11, + ACTIONS(2089), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -111169,11 +112506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1894), 24, + ACTIONS(2091), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -111194,14 +112533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60736] = 5, + [61630] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1298), 1, + STATE(1309), 1, sym_comment, - ACTIONS(2135), 12, + ACTIONS(2025), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -111214,7 +112553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2137), 26, + ACTIONS(2027), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -111241,230 +112580,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60788] = 30, + [61682] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2329), 1, - anon_sym_RPAREN, - STATE(1299), 1, - sym_comment, - STATE(2065), 1, - aux_sym_array_repeat1, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60890] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, + ACTIONS(1973), 1, anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2311), 1, + ACTIONS(2323), 1, anon_sym_COMMA, ACTIONS(2331), 1, - anon_sym_RBRACK, - STATE(1300), 1, + anon_sym_RPAREN, + STATE(1310), 1, sym_comment, - STATE(2020), 1, + STATE(2129), 1, aux_sym_array_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60992] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2333), 1, - anon_sym_RPAREN, - STATE(1301), 1, - sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61094] = 5, + [61784] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1302), 1, + STATE(1311), 1, sym_comment, - ACTIONS(2063), 12, + ACTIONS(991), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -111477,7 +112672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2065), 26, + ACTIONS(995), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -111504,14 +112699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61146] = 5, + [61836] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1303), 1, + STATE(1312), 1, sym_comment, - ACTIONS(2067), 12, + ACTIONS(2037), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -111524,7 +112719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2069), 26, + ACTIONS(2039), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -111551,275 +112746,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61198] = 30, + [61888] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - ACTIONS(2335), 1, + ACTIONS(2333), 1, anon_sym_RPAREN, - STATE(1304), 1, + STATE(1313), 1, sym_comment, - STATE(1762), 1, + STATE(1781), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61300] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1305), 1, - sym_comment, - ACTIONS(2021), 12, - anon_sym_STAR, + ACTIONS(1933), 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(2023), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1951), 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, - [61352] = 28, + [61990] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1306), 1, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2335), 1, + anon_sym_RPAREN, + STATE(1314), 1, sym_comment, - ACTIONS(2015), 2, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2197), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2204), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61450] = 30, + [62092] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2311), 1, + ACTIONS(2299), 1, anon_sym_COMMA, ACTIONS(2337), 1, - anon_sym_RBRACK, - STATE(1307), 1, + anon_sym_RPAREN, + STATE(1315), 1, sym_comment, - STATE(2134), 1, - aux_sym_array_repeat1, - ACTIONS(1878), 2, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61552] = 5, + [62194] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1308), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2031), 12, + ACTIONS(2155), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -111832,7 +112982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2029), 26, + ACTIONS(2157), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -111859,14 +113009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61604] = 5, + [62246] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1309), 1, + STATE(1317), 1, sym_comment, - ACTIONS(2127), 12, + ACTIONS(2049), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -111879,7 +113029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2129), 26, + ACTIONS(2051), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -111906,14 +113056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61656] = 5, + [62298] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1310), 1, + STATE(1318), 1, sym_comment, - ACTIONS(2139), 12, + ACTIONS(2089), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -111926,7 +113076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2141), 26, + ACTIONS(2091), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -111953,86 +113103,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61708] = 30, + [62350] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + STATE(1319), 1, + sym_comment, + ACTIONS(2021), 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(2023), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62402] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, ACTIONS(2339), 1, anon_sym_RPAREN, - STATE(1311), 1, + STATE(1320), 1, sym_comment, - STATE(1762), 1, + STATE(1781), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61810] = 5, + [62504] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1312), 1, + STATE(1321), 1, sym_comment, - ACTIONS(1755), 12, + ACTIONS(935), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -112045,7 +113242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 26, + ACTIONS(939), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -112072,14 +113269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61862] = 5, + [62556] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1313), 1, + ACTIONS(2341), 1, + sym__automatic_semicolon, + STATE(1322), 1, sym_comment, - ACTIONS(1973), 12, + ACTIONS(1023), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(991), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -112092,13 +113294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1975), 26, - sym__automatic_semicolon, + ACTIONS(995), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -112119,16 +113318,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61914] = 6, + [62612] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2341), 1, - sym_regex_flags, - STATE(1314), 1, + ACTIONS(1916), 1, + anon_sym_EQ, + STATE(1323), 1, sym_comment, - ACTIONS(2009), 13, + ACTIONS(2343), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1909), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -112141,14 +113345,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(2011), 24, - sym__automatic_semicolon, + ACTIONS(1911), 21, sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62668] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1827), 1, + anon_sym_EQ, + STATE(1324), 1, + sym_comment, + ACTIONS(1825), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1763), 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(1765), 21, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -112164,168 +113412,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [61968] = 30, + [62724] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(2343), 1, - anon_sym_RPAREN, - STATE(1315), 1, + ACTIONS(2345), 1, + anon_sym_RBRACK, + STATE(1325), 1, sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + STATE(2089), 1, + aux_sym_array_repeat1, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62070] = 30, + [62826] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - ACTIONS(2345), 1, - anon_sym_RPAREN, - STATE(1316), 1, + ACTIONS(2347), 1, + anon_sym_RBRACK, + STATE(1326), 1, sym_comment, - STATE(1762), 1, + STATE(1781), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62172] = 7, + [62928] = 28, ACTIONS(5), 1, sym_html_comment, - ACTIONS(868), 1, - anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1317), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(1983), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, + anon_sym_AMP_AMP, + ACTIONS(2226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + ACTIONS(2234), 1, + anon_sym_CARET, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1327), 1, sym_comment, - ACTIONS(2347), 4, + ACTIONS(2017), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2210), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(1967), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(866), 12, + anon_sym_SEMI, + ACTIONS(2220), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2238), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63026] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1328), 1, + sym_comment, + ACTIONS(2093), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -112338,9 +113650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(872), 21, + ACTIONS(2095), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -112360,21 +113677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62228] = 7, + [63078] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1824), 1, - anon_sym_EQ, - STATE(1318), 1, + STATE(1329), 1, sym_comment, - ACTIONS(1821), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1755), 12, + ACTIONS(2121), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -112387,9 +113697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 21, + ACTIONS(2123), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -112409,19 +113724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62284] = 7, + [63130] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2349), 1, - sym__automatic_semicolon, - STATE(1319), 1, + STATE(1330), 1, sym_comment, - ACTIONS(1025), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(922), 12, + ACTIONS(2131), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -112434,10 +113744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(926), 23, + ACTIONS(2133), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -112458,160 +113771,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62340] = 30, + [63182] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(2349), 1, + sym__automatic_semicolon, + STATE(1331), 1, + sym_comment, + ACTIONS(1003), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(935), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2351), 1, - anon_sym_RPAREN, - STATE(1320), 1, - sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62442] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(939), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2353), 1, - anon_sym_RBRACE, - STATE(1321), 1, - sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62544] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [63238] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1815), 1, - anon_sym_EQ, - STATE(1322), 1, + STATE(1332), 1, sym_comment, - ACTIONS(1755), 12, + ACTIONS(943), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -112624,12 +113840,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 25, + ACTIONS(947), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -112650,21 +113867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62598] = 8, + [63290] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(868), 1, - anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2347), 1, - anon_sym_of, - ACTIONS(2355), 1, - anon_sym_in, - STATE(1323), 1, + STATE(1333), 1, sym_comment, - ACTIONS(866), 11, + ACTIONS(951), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -112675,11 +113887,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(872), 24, + ACTIONS(955), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -112700,86 +113914,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62656] = 30, + [63342] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2358), 1, - anon_sym_RPAREN, - STATE(1324), 1, - sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1937), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, + STATE(1334), 1, + sym_comment, + ACTIONS(959), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(963), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62758] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [63394] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1325), 1, + ACTIONS(1848), 1, + anon_sym_EQ, + STATE(1335), 1, sym_comment, - ACTIONS(2155), 12, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -112792,11 +113983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 26, + ACTIONS(1765), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, @@ -112819,91 +114009,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62810] = 30, + [63448] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - ACTIONS(2360), 1, - anon_sym_RPAREN, - STATE(1326), 1, + ACTIONS(2351), 1, + anon_sym_RBRACK, + STATE(1336), 1, sym_comment, - STATE(1762), 1, + STATE(1781), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62912] = 7, + [63550] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2362), 1, - sym__automatic_semicolon, - STATE(1327), 1, + STATE(1337), 1, sym_comment, - ACTIONS(1021), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(969), 12, + ACTIONS(2089), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -112916,10 +114101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(973), 23, + ACTIONS(2091), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -112940,16 +114128,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62968] = 5, + [63602] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1328), 1, + ACTIONS(1916), 1, + anon_sym_EQ, + ACTIONS(2343), 1, + anon_sym_of, + ACTIONS(2353), 1, + anon_sym_in, + STATE(1338), 1, sym_comment, - ACTIONS(2147), 12, + ACTIONS(1909), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -112960,13 +114153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2145), 26, + ACTIONS(1911), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -112987,158 +114178,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63020] = 30, + [63660] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - ACTIONS(2364), 1, + ACTIONS(2356), 1, anon_sym_RPAREN, - STATE(1329), 1, + STATE(1339), 1, sym_comment, - STATE(1762), 1, + STATE(1781), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63122] = 30, + [63762] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(2366), 1, - anon_sym_RBRACE, - STATE(1330), 1, + ACTIONS(2358), 1, + anon_sym_RPAREN, + STATE(1340), 1, sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + STATE(2166), 1, + aux_sym_array_repeat1, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63224] = 5, + [63864] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1331), 1, + ACTIONS(1838), 1, + anon_sym_EQ, + STATE(1341), 1, sym_comment, - ACTIONS(2093), 12, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -113151,13 +114344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 26, + ACTIONS(1765), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -113178,160 +114370,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63276] = 30, + [63918] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2311), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - ACTIONS(2368), 1, + ACTIONS(2360), 1, anon_sym_RPAREN, - STATE(1332), 1, + STATE(1342), 1, sym_comment, - STATE(2094), 1, - aux_sym_array_repeat1, - ACTIONS(1878), 2, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63378] = 30, + [64020] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + STATE(1343), 1, + sym_comment, + ACTIONS(2065), 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(2067), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [64072] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2311), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(2370), 1, - anon_sym_RPAREN, - STATE(1333), 1, + ACTIONS(2362), 1, + anon_sym_RBRACK, + STATE(1344), 1, sym_comment, - STATE(2077), 1, + STATE(2089), 1, aux_sym_array_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63480] = 5, + [64174] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1334), 1, + ACTIONS(1927), 1, + anon_sym_EQ, + ACTIONS(2364), 1, + anon_sym_in, + ACTIONS(2367), 1, + anon_sym_of, + STATE(1345), 1, sym_comment, - ACTIONS(898), 12, + ACTIONS(1920), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -113342,13 +114586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(902), 26, + ACTIONS(1922), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -113369,69 +114611,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63532] = 6, + [64232] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2341), 1, - sym_regex_flags, - STATE(1335), 1, - sym_comment, - ACTIONS(2009), 14, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, anon_sym_GT_GT, + ACTIONS(1939), 1, anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + STATE(1346), 1, + sym_comment, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2011), 23, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2369), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [64330] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, anon_sym_AMP_AMP, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2371), 1, + anon_sym_RBRACE, + STATE(1347), 1, + sym_comment, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 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(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [63586] = 7, + anon_sym_instanceof, + [64432] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1841), 1, - anon_sym_EQ, - STATE(1336), 1, + STATE(1348), 1, sym_comment, - ACTIONS(1839), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1755), 12, + ACTIONS(2137), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -113444,9 +114773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 21, + ACTIONS(2139), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -113466,61 +114800,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63642] = 5, + [64484] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1337), 1, - sym_comment, - ACTIONS(922), 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(926), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1880), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, anon_sym_AMP_AMP, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2373), 1, + anon_sym_RPAREN, + STATE(1349), 1, + sym_comment, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 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(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 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, - [63694] = 5, + [64586] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1338), 1, + STATE(1350), 1, sym_comment, - ACTIONS(2131), 12, + ACTIONS(2079), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -113533,7 +114892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2133), 26, + ACTIONS(2077), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -113560,21 +114919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63746] = 7, + [64638] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1917), 1, - anon_sym_EQ, - STATE(1339), 1, + STATE(1351), 1, sym_comment, - ACTIONS(2322), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1910), 12, + ACTIONS(2041), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -113587,9 +114939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1912), 21, + ACTIONS(2043), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -113609,86 +114966,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63802] = 30, + [64690] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2311), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - ACTIONS(2372), 1, - anon_sym_RPAREN, - STATE(1340), 1, + ACTIONS(2375), 1, + anon_sym_RBRACK, + STATE(1352), 1, sym_comment, - STATE(2084), 1, - aux_sym_array_repeat1, - ACTIONS(1878), 2, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63904] = 5, + [64792] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1341), 1, + STATE(1353), 1, sym_comment, - ACTIONS(1995), 12, + ACTIONS(2151), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -113701,7 +115058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1997), 26, + ACTIONS(2153), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -113728,14 +115085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63956] = 5, + [64844] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1342), 1, + ACTIONS(2377), 1, + sym__automatic_semicolon, + STATE(1354), 1, sym_comment, - ACTIONS(906), 12, + ACTIONS(999), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(983), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -113748,13 +115110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(910), 26, - sym__automatic_semicolon, + ACTIONS(987), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -113775,14 +115134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64008] = 5, + [64900] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1343), 1, + STATE(1355), 1, sym_comment, - ACTIONS(914), 12, + ACTIONS(2159), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -113795,7 +115154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(918), 26, + ACTIONS(2161), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -113822,14 +115181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64060] = 5, + [64952] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1344), 1, + STATE(1356), 1, sym_comment, - ACTIONS(2085), 12, + ACTIONS(2101), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -113842,7 +115201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2087), 26, + ACTIONS(2103), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -113869,84 +115228,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64112] = 28, + [65004] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1345), 1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2379), 1, + anon_sym_RPAREN, + STATE(1357), 1, sym_comment, - ACTIONS(2015), 2, + STATE(2094), 1, + aux_sym_array_repeat1, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2071), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2204), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64210] = 5, + [65106] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1346), 1, + ACTIONS(2381), 1, + sym__automatic_semicolon, + STATE(1358), 1, sym_comment, - ACTIONS(2081), 12, + ACTIONS(1041), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(943), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -113959,13 +115325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2083), 26, - sym__automatic_semicolon, + ACTIONS(947), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -113986,14 +115349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64262] = 5, + [65162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1347), 1, + STATE(1359), 1, sym_comment, - ACTIONS(2101), 12, + ACTIONS(2163), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114006,7 +115369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 26, + ACTIONS(2165), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -114033,140 +115396,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64314] = 7, + [65214] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2374), 1, - sym__automatic_semicolon, - STATE(1348), 1, - sym_comment, - ACTIONS(1041), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(898), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1880), 1, + anon_sym_LPAREN, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1884), 1, + anon_sym_DOT, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, anon_sym_GT_GT, + ACTIONS(1939), 1, anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2383), 1, + anon_sym_RBRACE, + STATE(1360), 1, + sym_comment, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(902), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65316] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, anon_sym_AMP_AMP, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2385), 1, + anon_sym_RPAREN, + STATE(1361), 1, + sym_comment, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1929), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1937), 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(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 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, - [64370] = 30, + [65418] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - ACTIONS(2376), 1, - anon_sym_RBRACK, - STATE(1349), 1, + ACTIONS(2387), 1, + anon_sym_RPAREN, + STATE(1362), 1, sym_comment, - STATE(1762), 1, + STATE(1781), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64472] = 7, + [65520] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2378), 1, - sym__automatic_semicolon, - STATE(1350), 1, + ACTIONS(2389), 1, + sym_regex_flags, + STATE(1363), 1, sym_comment, - ACTIONS(999), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(906), 12, + ACTIONS(2125), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114179,9 +115634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(910), 23, + anon_sym_instanceof, + ACTIONS(2127), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -114199,25 +115657,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64528] = 7, + [65574] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2380), 1, - sym__automatic_semicolon, - STATE(1351), 1, + ACTIONS(2389), 1, + sym_regex_flags, + STATE(1364), 1, sym_comment, - ACTIONS(1053), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(914), 12, + ACTIONS(2125), 14, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -114228,7 +115683,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(918), 23, + anon_sym_instanceof, + ACTIONS(2127), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -114248,23 +115705,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64584] = 7, + [65628] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2382), 1, - sym__automatic_semicolon, - STATE(1352), 1, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(2284), 1, + sym_optional_chain, + STATE(1365), 1, sym_comment, - ACTIONS(1031), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(977), 12, + ACTIONS(2013), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114277,14 +115734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(981), 23, + ACTIONS(2015), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -114301,21 +115758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64640] = 7, + [65686] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, - anon_sym_EQ, - STATE(1353), 1, + STATE(1366), 1, sym_comment, - ACTIONS(1835), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1755), 12, + ACTIONS(2141), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114328,9 +115778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 21, + ACTIONS(2143), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -114350,14 +115805,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64696] = 5, + [65738] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1354), 1, + ACTIONS(2391), 1, + sym__automatic_semicolon, + STATE(1367), 1, sym_comment, - ACTIONS(1981), 12, + ACTIONS(1037), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(951), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114370,13 +115830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1983), 26, - sym__automatic_semicolon, + ACTIONS(955), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -114397,91 +115854,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64748] = 30, + [65794] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(2393), 1, + sym__automatic_semicolon, + STATE(1368), 1, + sym_comment, + ACTIONS(1057), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(959), 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(963), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1872), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, - anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2384), 1, - anon_sym_RPAREN, - STATE(1355), 1, - sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + anon_sym_BQUOTE, + [65850] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1369), 1, + sym_comment, + ACTIONS(1957), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 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(1965), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1959), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64850] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65902] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2386), 1, - sym__automatic_semicolon, - STATE(1356), 1, + STATE(1370), 1, sym_comment, - ACTIONS(1011), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(961), 12, + ACTIONS(967), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114494,10 +115970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(965), 23, + ACTIONS(971), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -114518,19 +115997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64906] = 7, + [65954] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2388), 1, - sym__automatic_semicolon, - STATE(1357), 1, + STATE(1371), 1, sym_comment, - ACTIONS(1035), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(993), 12, + ACTIONS(975), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114543,10 +116017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(997), 23, + ACTIONS(979), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -114567,14 +116044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64962] = 5, + [66006] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1358), 1, + STATE(1372), 1, sym_comment, - ACTIONS(2097), 12, + ACTIONS(983), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114587,7 +116064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2099), 26, + ACTIONS(987), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -114614,14 +116091,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65014] = 5, + [66058] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1359), 1, + STATE(1373), 1, sym_comment, - ACTIONS(1921), 12, + ACTIONS(2167), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114634,7 +116111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1923), 26, + ACTIONS(2169), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -114661,14 +116138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65066] = 5, + [66110] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1360), 1, + STATE(1374), 1, sym_comment, - ACTIONS(2089), 12, + ACTIONS(2073), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114681,7 +116158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2091), 26, + ACTIONS(2075), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -114708,20 +116185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65118] = 8, + [66162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2259), 1, - sym_optional_chain, - STATE(1361), 1, + STATE(1375), 1, sym_comment, - ACTIONS(2149), 12, + ACTIONS(2005), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114734,7 +116205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2151), 23, + ACTIONS(2007), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -114742,6 +116213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -114758,14 +116232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65176] = 5, + [66214] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1362), 1, + STATE(1376), 1, sym_comment, - ACTIONS(2149), 12, + ACTIONS(2013), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114778,7 +116252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2151), 26, + ACTIONS(2015), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -114805,14 +116279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65228] = 5, + [66266] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1363), 1, + ACTIONS(2395), 1, + sym__automatic_semicolon, + STATE(1377), 1, sym_comment, - ACTIONS(969), 12, + ACTIONS(1047), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(975), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114825,13 +116304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(973), 26, - sym__automatic_semicolon, + ACTIONS(979), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -114852,16 +116328,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65280] = 5, + [66322] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(852), 1, + anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1364), 1, + ACTIONS(2307), 1, + anon_sym_of, + ACTIONS(2397), 1, + anon_sym_in, + STATE(1378), 1, sym_comment, - ACTIONS(1933), 12, + ACTIONS(850), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -114872,13 +116353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1935), 26, + ACTIONS(856), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -114899,86 +116378,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65332] = 30, + [66380] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2311), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(2390), 1, + ACTIONS(2400), 1, anon_sym_RPAREN, - STATE(1365), 1, + STATE(1379), 1, sym_comment, - STATE(2049), 1, + STATE(2088), 1, aux_sym_array_repeat1, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65434] = 5, + [66482] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1366), 1, + ACTIONS(1927), 1, + anon_sym_EQ, + STATE(1380), 1, sym_comment, - ACTIONS(993), 12, + ACTIONS(2367), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1920), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -114991,7 +116477,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(997), 26, + ACTIONS(1922), 21, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [66538] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1381), 1, + sym_comment, + ACTIONS(2009), 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(2011), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -115018,14 +116546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65486] = 5, + [66590] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1367), 1, + STATE(1382), 1, sym_comment, - ACTIONS(977), 12, + ACTIONS(2061), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -115038,7 +116566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(981), 26, + ACTIONS(2063), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -115065,14 +116593,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65538] = 5, + [66642] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1368), 1, + STATE(1383), 1, sym_comment, - ACTIONS(1929), 12, + ACTIONS(1995), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -115085,7 +116613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1931), 26, + ACTIONS(1997), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -115112,14 +116640,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65590] = 5, + [66694] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1369), 1, + ACTIONS(2402), 1, + sym__automatic_semicolon, + STATE(1384), 1, sym_comment, - ACTIONS(2043), 12, + ACTIONS(1053), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(967), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -115132,13 +116665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2045), 26, - sym__automatic_semicolon, + ACTIONS(971), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -115159,86 +116689,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65642] = 30, + [66750] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2392), 1, - anon_sym_RBRACE, - STATE(1370), 1, + ACTIONS(2404), 1, + anon_sym_SEMI, + ACTIONS(2406), 1, + sym__automatic_semicolon, + STATE(1385), 1, sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(2212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2230), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(2240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(2220), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2238), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66849] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(1983), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, + anon_sym_AMP_AMP, + ACTIONS(2226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + ACTIONS(2234), 1, + anon_sym_CARET, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1386), 1, + sym_comment, + ACTIONS(2017), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2210), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + ACTIONS(2408), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65744] = 5, + [66946] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1371), 1, + ACTIONS(2410), 1, + anon_sym_LPAREN, + ACTIONS(2413), 1, + anon_sym_COLON, + STATE(1387), 1, sym_comment, - ACTIONS(1925), 12, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -115251,13 +116852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1927), 26, + ACTIONS(1765), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -115278,1334 +116876,1340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65796] = 30, + [67001] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2291), 1, - anon_sym_COMMA, - ACTIONS(2394), 1, - anon_sym_RBRACK, - STATE(1372), 1, + ACTIONS(2415), 1, + anon_sym_SEMI, + ACTIONS(2417), 1, + sym__automatic_semicolon, + STATE(1388), 1, sym_comment, - STATE(1762), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(1878), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65898] = 28, + [67100] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2402), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2416), 1, - anon_sym_PERCENT, - ACTIONS(2418), 1, - anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1373), 1, + ACTIONS(2419), 1, + anon_sym_SEMI, + ACTIONS(2421), 1, + sym__automatic_semicolon, + STATE(1389), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1985), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65995] = 28, + [67199] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(1959), 1, - anon_sym_PERCENT, - ACTIONS(1961), 1, - anon_sym_STAR_STAR, - ACTIONS(1969), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - STATE(1374), 1, + STATE(1390), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(2212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2230), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(2240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2242), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2423), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, + sym_template_string, + sym_arguments, + ACTIONS(2220), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2238), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67296] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1809), 1, + anon_sym_EQ, + STATE(1391), 1, + sym_comment, + ACTIONS(1862), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1763), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1765), 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, - ACTIONS(2430), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66092] = 24, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [67351] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2027), 1, - anon_sym_PIPE, - ACTIONS(2404), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, + anon_sym_AMP_AMP, + ACTIONS(2226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2416), 1, - anon_sym_PERCENT, - ACTIONS(2418), 1, - anon_sym_STAR_STAR, - STATE(1375), 1, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + ACTIONS(2425), 1, + anon_sym_SEMI, + ACTIONS(2427), 1, + sym__automatic_semicolon, + STATE(1392), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 6, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [66181] = 28, + [67450] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2402), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1376), 1, + STATE(1393), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2029), 2, + ACTIONS(2135), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66278] = 28, + [67547] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2402), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1377), 1, + STATE(1394), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1923), 2, + ACTIONS(2119), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66375] = 18, + [67644] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2404), 1, + ACTIONS(2433), 1, + anon_sym_AMP_AMP, + ACTIONS(2435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2416), 1, + ACTIONS(2441), 1, + anon_sym_AMP, + ACTIONS(2443), 1, + anon_sym_CARET, + ACTIONS(2445), 1, + anon_sym_PIPE, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - STATE(1378), 1, + ACTIONS(2459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2461), 1, + sym__ternary_qmark, + STATE(1395), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2115), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1142), 2, + ACTIONS(2455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 7, + ACTIONS(2431), 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(2025), 12, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2453), 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, - [66452] = 29, + [67741] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - ACTIONS(2432), 1, - anon_sym_SEMI, - ACTIONS(2434), 1, - sym__automatic_semicolon, - STATE(1379), 1, + STATE(1396), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2107), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66551] = 28, + [67838] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1380), 1, + STATE(1397), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2143), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + ACTIONS(2463), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66648] = 29, + [67935] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - ACTIONS(2436), 1, - anon_sym_SEMI, - ACTIONS(2438), 1, - sym__automatic_semicolon, - STATE(1381), 1, + STATE(1398), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2007), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66747] = 29, + [68032] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2440), 1, - anon_sym_SEMI, - ACTIONS(2442), 1, - sym__automatic_semicolon, - STATE(1382), 1, + STATE(1399), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + ACTIONS(2465), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66846] = 28, + [68129] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2402), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1383), 1, + STATE(1400), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1939), 2, + ACTIONS(2003), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66943] = 28, + [68226] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(2467), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, - anon_sym_LBRACK, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2005), 1, - sym_optional_chain, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2470), 1, + anon_sym_COLON, + STATE(1401), 1, + sym_comment, + ACTIONS(2041), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2216), 1, - anon_sym_CARET, - ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - STATE(1384), 1, - sym_comment, - ACTIONS(2015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2202), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2444), 2, + ACTIONS(2043), 23, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_SEMI, - STATE(1303), 2, - sym_template_string, - sym_arguments, - ACTIONS(2204), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2226), 3, + 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, - [67040] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [68281] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, - anon_sym_AMP, - ACTIONS(2410), 1, - anon_sym_CARET, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - STATE(1385), 1, + STATE(1402), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2424), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(1965), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1931), 12, sym__ternary_qmark, anon_sym_LBRACE, 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, - [67133] = 28, + anon_sym_instanceof, + [68358] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, + anon_sym_AMP_AMP, ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1386), 1, + STATE(1403), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67230] = 28, + [68455] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - STATE(1387), 1, + STATE(1404), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2257), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67327] = 28, + ACTIONS(1931), 4, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + [68548] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, - anon_sym_GT_GT, - ACTIONS(2408), 1, - anon_sym_AMP, - ACTIONS(2410), 1, - anon_sym_CARET, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, - sym__ternary_qmark, - STATE(1388), 1, + STATE(1405), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2033), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2422), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2424), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(1965), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + 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(1931), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67424] = 28, + [68619] = 20, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, - anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, - anon_sym_AMP, - ACTIONS(2216), 1, - anon_sym_CARET, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - STATE(1389), 1, + STATE(1406), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2230), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2446), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67521] = 29, + ACTIONS(1965), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1931), 9, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [68700] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - ACTIONS(2448), 1, - anon_sym_SEMI, - ACTIONS(2450), 1, - sym__automatic_semicolon, - STATE(1390), 1, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1407), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + ACTIONS(2472), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67620] = 13, + [68797] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - STATE(1391), 1, + STATE(1408), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 12, + ACTIONS(1965), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -116618,7 +118222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 15, + ACTIONS(1931), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -116634,358 +118238,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67687] = 23, + [68864] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2027), 1, - anon_sym_PIPE, - ACTIONS(2404), 1, - anon_sym_GT_GT, - ACTIONS(2408), 1, - anon_sym_AMP, - ACTIONS(2416), 1, + ACTIONS(2214), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2216), 1, anon_sym_STAR_STAR, - STATE(1392), 1, + ACTIONS(2224), 1, + anon_sym_AMP_AMP, + ACTIONS(2226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2228), 1, + anon_sym_GT_GT, + ACTIONS(2232), 1, + anon_sym_AMP, + ACTIONS(2234), 1, + anon_sym_CARET, + ACTIONS(2236), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2246), 1, + sym__ternary_qmark, + STATE(1409), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + ACTIONS(2474), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 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, - [67774] = 20, + [68961] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2404), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(2416), 1, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - STATE(1393), 1, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1975), 1, + sym__ternary_qmark, + STATE(1410), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1142), 2, + ACTIONS(1953), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1955), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2297), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2027), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2025), 9, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [67855] = 24, + [69058] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2404), 1, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - STATE(1394), 1, + STATE(1411), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 6, + ACTIONS(1931), 6, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [67944] = 13, + [69147] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2418), 1, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(2437), 1, + anon_sym_GT_GT, + ACTIONS(2441), 1, + anon_sym_AMP, + ACTIONS(2449), 1, + anon_sym_PERCENT, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - STATE(1395), 1, + STATE(1412), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 12, + ACTIONS(2429), 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(2439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 15, + ACTIONS(2457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(2431), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2453), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1931), 7, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [68011] = 25, + [69234] = 22, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, - anon_sym_AMP, - ACTIONS(2410), 1, - anon_sym_CARET, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - STATE(1396), 1, + STATE(1413), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(1965), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 5, + ACTIONS(1931), 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, - [68102] = 15, + [69319] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - STATE(1397), 1, + STATE(1414), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1142), 2, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 10, + ACTIONS(1965), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 14, + ACTIONS(1931), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -117000,187 +118625,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68173] = 28, + [69392] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, - sym__ternary_qmark, - STATE(1398), 1, + STATE(1415), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2452), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68270] = 28, + ACTIONS(1931), 5, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [69483] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, - sym__ternary_qmark, - STATE(1399), 1, + STATE(1416), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2145), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68367] = 16, + ACTIONS(1931), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [69572] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2416), 1, - anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - STATE(1400), 1, + STATE(1417), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2414), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 8, + ACTIONS(1965), 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(2025), 14, + ACTIONS(1931), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -117189,738 +118803,643 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68440] = 29, + [69639] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1977), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1979), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1981), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1983), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1985), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2214), 1, + anon_sym_PERCENT, + ACTIONS(2216), 1, + anon_sym_STAR_STAR, + ACTIONS(2224), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2226), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2228), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2232), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2234), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2236), 1, anon_sym_PIPE, - ACTIONS(2222), 1, - anon_sym_PERCENT, - ACTIONS(2224), 1, - anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2244), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2246), 1, sym__ternary_qmark, - ACTIONS(2454), 1, + ACTIONS(2476), 1, anon_sym_SEMI, - ACTIONS(2456), 1, + ACTIONS(2478), 1, sym__automatic_semicolon, - STATE(1401), 1, + STATE(1418), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2017), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2210), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2212), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2230), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2240), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2242), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2220), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2238), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68539] = 7, + [69738] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2458), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_COLON, - STATE(1402), 1, - sym_comment, - ACTIONS(1977), 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(1979), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(2433), 1, anon_sym_AMP_AMP, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2437), 1, + anon_sym_GT_GT, + ACTIONS(2441), 1, + anon_sym_AMP, + ACTIONS(2443), 1, anon_sym_CARET, + ACTIONS(2445), 1, + anon_sym_PIPE, + ACTIONS(2449), 1, anon_sym_PERCENT, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [68594] = 22, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(2404), 1, - anon_sym_GT_GT, - ACTIONS(2416), 1, - anon_sym_PERCENT, - ACTIONS(2418), 1, - anon_sym_STAR_STAR, - STATE(1403), 1, + ACTIONS(2461), 1, + sym__ternary_qmark, + STATE(1419), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2027), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2396), 2, + ACTIONS(2077), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 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, - [68679] = 28, + [69835] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1404), 1, + STATE(1420), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2145), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2463), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2226), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68776] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(2465), 1, - anon_sym_LPAREN, - ACTIONS(2468), 1, - anon_sym_COLON, - STATE(1405), 1, - sym_comment, - ACTIONS(1755), 12, - anon_sym_STAR, + ACTIONS(2431), 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(1757), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2453), 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, - [68831] = 28, + [69932] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2402), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1406), 1, + STATE(1421), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2125), 2, + ACTIONS(2087), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68928] = 28, + [70029] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2402), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1407), 1, + STATE(1422), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2153), 2, + ACTIONS(2035), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69025] = 28, + [70126] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2402), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1408), 1, + STATE(1423), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2087), 2, + ACTIONS(2029), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69122] = 28, + [70223] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2206), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2208), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2210), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2214), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2216), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2218), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2222), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2224), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2232), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2234), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1409), 1, + STATE(1424), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2202), 2, + ACTIONS(2033), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2212), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2220), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2228), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2230), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2470), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2204), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2226), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69219] = 28, + [70320] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(1886), 1, + sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(2484), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, - sym__ternary_qmark, - STATE(1410), 1, + STATE(1425), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2075), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69316] = 28, + ACTIONS(1931), 5, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [70408] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2402), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1411), 1, + ACTIONS(2506), 1, + anon_sym_COLON, + STATE(1426), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2083), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69413] = 7, + [70504] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1811), 1, - anon_sym_EQ, - STATE(1412), 1, - sym_comment, - ACTIONS(1854), 3, + ACTIONS(1825), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1832), 1, anon_sym_RBRACK, - ACTIONS(1755), 12, + ACTIONS(1835), 1, + anon_sym_EQ, + STATE(1427), 1, + sym_comment, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -117933,7 +119452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 21, + ACTIONS(1765), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117955,641 +119474,749 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69468] = 28, + [70560] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2035), 1, + anon_sym_of, + ACTIONS(2484), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2514), 1, sym__ternary_qmark, - ACTIONS(2472), 1, - anon_sym_COLON, - STATE(1413), 1, + STATE(1428), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69564] = 16, + [70656] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2478), 1, + ACTIONS(2145), 1, + anon_sym_of, + ACTIONS(2484), 1, + anon_sym_GT_GT, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_CARET, + ACTIONS(2492), 1, + anon_sym_PIPE, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2480), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - STATE(1414), 1, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2514), 1, + sym__ternary_qmark, + STATE(1429), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, + ACTIONS(2486), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1142), 2, + ACTIONS(2502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2504), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 8, + ACTIONS(2482), 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(2025), 13, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(2500), 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, - [69636] = 28, + [70752] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2125), 1, + ACTIONS(2135), 1, anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2494), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2496), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2504), 1, + ACTIONS(2496), 1, + anon_sym_PERCENT, + ACTIONS(2498), 1, + anon_sym_STAR_STAR, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, + ACTIONS(2514), 1, sym__ternary_qmark, - STATE(1415), 1, + STATE(1430), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69732] = 26, + [70848] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, + ACTIONS(2119), 1, + anon_sym_of, ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2494), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2496), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - STATE(1416), 1, + ACTIONS(2496), 1, + anon_sym_PERCENT, + ACTIONS(2498), 1, + anon_sym_STAR_STAR, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2514), 1, + sym__ternary_qmark, + STATE(1431), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2025), 3, - sym__ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69824] = 20, + [70944] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2478), 1, + ACTIONS(2115), 1, + anon_sym_of, + ACTIONS(2484), 1, + anon_sym_GT_GT, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_CARET, + ACTIONS(2492), 1, + anon_sym_PIPE, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2480), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2488), 1, - anon_sym_GT_GT, - STATE(1417), 1, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2514), 1, + sym__ternary_qmark, + STATE(1432), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - STATE(1142), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2504), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, sym_template_string, sym_arguments, ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2027), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2025), 8, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [69904] = 13, + [71040] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2480), 1, + ACTIONS(2107), 1, + anon_sym_of, + ACTIONS(2484), 1, + anon_sym_GT_GT, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_CARET, + ACTIONS(2492), 1, + anon_sym_PIPE, + ACTIONS(2496), 1, + anon_sym_PERCENT, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - STATE(1418), 1, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2514), 1, + sym__ternary_qmark, + STATE(1433), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 12, + ACTIONS(2480), 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(2486), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 14, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(2482), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2500), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69970] = 8, + [71136] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1914), 1, - anon_sym_RBRACK, - ACTIONS(1917), 1, - anon_sym_EQ, - ACTIONS(2322), 1, - anon_sym_COMMA, - STATE(1419), 1, - sym_comment, - ACTIONS(1910), 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(1912), 21, - sym__ternary_qmark, + ACTIONS(1880), 1, anon_sym_LPAREN, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(2433), 1, anon_sym_AMP_AMP, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2437), 1, + anon_sym_GT_GT, + ACTIONS(2441), 1, + anon_sym_AMP, + ACTIONS(2443), 1, anon_sym_CARET, + ACTIONS(2445), 1, + anon_sym_PIPE, + ACTIONS(2449), 1, anon_sym_PERCENT, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(2461), 1, + sym__ternary_qmark, + ACTIONS(2516), 1, + anon_sym_COLON, + STATE(1434), 1, + sym_comment, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [70026] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1896), 1, - anon_sym_RBRACK, - ACTIONS(1899), 1, - anon_sym_EQ, - ACTIONS(2317), 1, - anon_sym_COMMA, - STATE(1420), 1, - sym_comment, - ACTIONS(1892), 12, + ACTIONS(2429), 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(2439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1894), 21, - sym__ternary_qmark, + ACTIONS(2457), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(2431), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2453), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71232] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1880), 1, anon_sym_LPAREN, + ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1884), 1, anon_sym_DOT, + ACTIONS(1886), 1, sym_optional_chain, + ACTIONS(1890), 1, + anon_sym_BQUOTE, + ACTIONS(2433), 1, anon_sym_AMP_AMP, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2437), 1, + anon_sym_GT_GT, + ACTIONS(2441), 1, + anon_sym_AMP, + ACTIONS(2443), 1, anon_sym_CARET, + ACTIONS(2445), 1, + anon_sym_PIPE, + ACTIONS(2449), 1, anon_sym_PERCENT, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2461), 1, + sym__ternary_qmark, + ACTIONS(2518), 1, + anon_sym_COLON, + STATE(1435), 1, + sym_comment, + ACTIONS(1888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2429), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2439), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2455), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(1147), 2, + sym_template_string, + sym_arguments, + ACTIONS(2431), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2453), 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, - [70082] = 29, + [71328] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2197), 1, - anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, - ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, + ACTIONS(1935), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(1939), 1, anon_sym_AMP, - ACTIONS(2494), 1, + ACTIONS(1941), 1, anon_sym_CARET, - ACTIONS(2496), 1, + ACTIONS(1943), 1, anon_sym_PIPE, - ACTIONS(2504), 1, + ACTIONS(1947), 1, + anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_STAR_STAR, + ACTIONS(1969), 1, + anon_sym_AMP_AMP, + ACTIONS(1971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1973), 1, anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, + ACTIONS(1975), 1, sym__ternary_qmark, - ACTIONS(2508), 1, - anon_sym_in, - STATE(1421), 1, + ACTIONS(2520), 1, + anon_sym_RBRACK, + STATE(1436), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2482), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2490), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2498), 3, + ACTIONS(1933), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70180] = 28, + [71424] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2087), 1, + anon_sym_of, + ACTIONS(2484), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2514), 1, sym__ternary_qmark, - ACTIONS(2511), 1, - anon_sym_LBRACE, - STATE(1422), 1, + STATE(1437), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70276] = 15, + [71520] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1913), 1, + anon_sym_RBRACK, + ACTIONS(1916), 1, + anon_sym_EQ, + ACTIONS(2343), 1, + anon_sym_COMMA, + STATE(1438), 1, + 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), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(2478), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2480), 1, anon_sym_STAR_STAR, - STATE(1423), 1, - sym_comment, - ACTIONS(1878), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + anon_sym_BQUOTE, + [71576] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1924), 1, + anon_sym_RBRACK, + ACTIONS(1927), 1, + anon_sym_EQ, + ACTIONS(2367), 1, + anon_sym_COMMA, + STATE(1439), 1, + sym_comment, + ACTIONS(1920), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2027), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -118598,36 +120225,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(2025), 13, + ACTIONS(1922), 21, sym__ternary_qmark, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70346] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [71632] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(868), 1, + ACTIONS(852), 1, anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1901), 1, + ACTIONS(1900), 1, anon_sym_RBRACK, - ACTIONS(2347), 1, + ACTIONS(2307), 1, anon_sym_COMMA, - STATE(1424), 1, + STATE(1440), 1, sym_comment, - ACTIONS(866), 12, + ACTIONS(850), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -118640,7 +120276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(872), 21, + ACTIONS(856), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -118662,1483 +120298,1260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70402] = 24, + [71688] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(2027), 1, - anon_sym_PIPE, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, - ACTIONS(2488), 1, - anon_sym_GT_GT, - ACTIONS(2492), 1, - anon_sym_AMP, - ACTIONS(2494), 1, - anon_sym_CARET, - STATE(1425), 1, - sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2474), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2500), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2502), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2482), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2498), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 5, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [70490] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(1945), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(1955), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - ACTIONS(2513), 1, - anon_sym_RBRACK, - STATE(1426), 1, + ACTIONS(2522), 1, + anon_sym_COLON, + STATE(1441), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1967), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1963), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70586] = 23, + [71784] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2027), 1, + ACTIONS(2433), 1, + anon_sym_AMP_AMP, + ACTIONS(2435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2437), 1, + anon_sym_GT_GT, + ACTIONS(2441), 1, + anon_sym_AMP, + ACTIONS(2443), 1, + anon_sym_CARET, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2478), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2480), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2488), 1, - anon_sym_GT_GT, - ACTIONS(2492), 1, - anon_sym_AMP, - STATE(1427), 1, + ACTIONS(2459), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2461), 1, + sym__ternary_qmark, + ACTIONS(2524), 1, + anon_sym_LBRACE, + STATE(1442), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2482), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [70672] = 28, + [71880] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2029), 1, + anon_sym_of, + ACTIONS(2484), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2514), 1, sym__ternary_qmark, - ACTIONS(2515), 1, - anon_sym_COLON, - STATE(1428), 1, + STATE(1443), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70768] = 28, + [71976] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1923), 1, + ACTIONS(2007), 1, anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2494), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2496), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2504), 1, + ACTIONS(2496), 1, + anon_sym_PERCENT, + ACTIONS(2498), 1, + anon_sym_STAR_STAR, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, + ACTIONS(2514), 1, sym__ternary_qmark, - STATE(1429), 1, + STATE(1444), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70864] = 28, + [72072] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2029), 1, + ACTIONS(2003), 1, anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2494), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2496), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2504), 1, + ACTIONS(2496), 1, + anon_sym_PERCENT, + ACTIONS(2498), 1, + anon_sym_STAR_STAR, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, + ACTIONS(2514), 1, sym__ternary_qmark, - STATE(1430), 1, + STATE(1445), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70960] = 28, + [72168] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, ACTIONS(2033), 1, anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2494), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2496), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2504), 1, + ACTIONS(2496), 1, + anon_sym_PERCENT, + ACTIONS(2498), 1, + anon_sym_STAR_STAR, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, + ACTIONS(2514), 1, sym__ternary_qmark, - STATE(1431), 1, + STATE(1446), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71056] = 28, + [72264] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1939), 1, + ACTIONS(2077), 1, anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2494), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2496), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2504), 1, + ACTIONS(2496), 1, + anon_sym_PERCENT, + ACTIONS(2498), 1, + anon_sym_STAR_STAR, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, + ACTIONS(2514), 1, sym__ternary_qmark, - STATE(1432), 1, + STATE(1447), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71152] = 28, + [72360] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2083), 1, - anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2494), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2496), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, - sym__ternary_qmark, - STATE(1433), 1, + ACTIONS(2496), 1, + anon_sym_PERCENT, + ACTIONS(2498), 1, + anon_sym_STAR_STAR, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + STATE(1448), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, + ACTIONS(1931), 3, + sym__ternary_qmark, + anon_sym_of, + anon_sym_QMARK_QMARK, ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71248] = 28, + [72452] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_AMP_AMP, - ACTIONS(1945), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1947), 1, + ACTIONS(2484), 1, anon_sym_GT_GT, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_CARET, - ACTIONS(1955), 1, - anon_sym_PIPE, - ACTIONS(1959), 1, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(1961), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(1969), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1971), 1, - sym__ternary_qmark, - ACTIONS(2517), 1, - anon_sym_RBRACK, - STATE(1434), 1, + STATE(1449), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1937), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1957), 2, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1965), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1967), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(1941), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71344] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1821), 1, - anon_sym_RBRACK, - ACTIONS(1824), 1, - anon_sym_EQ, - ACTIONS(1839), 1, - anon_sym_COMMA, - STATE(1435), 1, - sym_comment, - ACTIONS(1755), 12, - anon_sym_STAR, + ACTIONS(1965), 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(1757), 21, + ACTIONS(1931), 11, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [71400] = 28, + [72528] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, - anon_sym_GT_GT, - ACTIONS(2408), 1, - anon_sym_AMP, - ACTIONS(2410), 1, - anon_sym_CARET, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2416), 1, - anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, - sym__ternary_qmark, - ACTIONS(2519), 1, - anon_sym_COLON, - STATE(1436), 1, + STATE(1450), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2422), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2424), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(1965), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71496] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1876), 1, - sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(1985), 1, - anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, - ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2494), 1, - anon_sym_CARET, - ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, - sym__ternary_qmark, - STATE(1437), 1, - sym_comment, - ACTIONS(1878), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2474), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2490), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2500), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(1931), 14, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2482), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2498), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71592] = 28, + [72594] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2087), 1, - anon_sym_of, - ACTIONS(2478), 1, + ACTIONS(1935), 1, + anon_sym_GT_GT, + ACTIONS(1939), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_CARET, + ACTIONS(1943), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, anon_sym_PERCENT, - ACTIONS(2480), 1, + ACTIONS(1949), 1, anon_sym_STAR_STAR, - ACTIONS(2484), 1, + ACTIONS(1969), 1, anon_sym_AMP_AMP, - ACTIONS(2486), 1, + ACTIONS(1971), 1, anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, - anon_sym_GT_GT, - ACTIONS(2492), 1, - anon_sym_AMP, - ACTIONS(2494), 1, - anon_sym_CARET, - ACTIONS(2496), 1, - anon_sym_PIPE, - ACTIONS(2504), 1, + ACTIONS(1973), 1, anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, + ACTIONS(1975), 1, sym__ternary_qmark, - STATE(1438), 1, + ACTIONS(2526), 1, + anon_sym_RBRACK, + STATE(1451), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(1929), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(1937), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1953), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(1955), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2482), 3, + ACTIONS(1933), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(1951), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71688] = 28, + [72690] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2153), 1, + ACTIONS(2173), 1, anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2494), 1, + ACTIONS(2490), 1, anon_sym_CARET, - ACTIONS(2496), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - ACTIONS(2504), 1, + ACTIONS(2496), 1, + anon_sym_PERCENT, + ACTIONS(2498), 1, + anon_sym_STAR_STAR, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + ACTIONS(2510), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2512), 1, anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, + ACTIONS(2514), 1, sym__ternary_qmark, - STATE(1439), 1, + ACTIONS(2528), 1, + anon_sym_in, + STATE(1452), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2482), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2482), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71784] = 22, + [72788] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2478), 1, + ACTIONS(2484), 1, + anon_sym_GT_GT, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_CARET, + ACTIONS(2492), 1, + anon_sym_PIPE, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2480), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2488), 1, - anon_sym_GT_GT, - STATE(1440), 1, + ACTIONS(2508), 1, + anon_sym_AMP_AMP, + STATE(1453), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2027), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2025), 6, + ACTIONS(1931), 4, sym__ternary_qmark, anon_sym_of, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [71868] = 28, + [72878] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2143), 1, - anon_sym_of, - ACTIONS(2478), 1, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2480), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, - anon_sym_GT_GT, - ACTIONS(2492), 1, - anon_sym_AMP, - ACTIONS(2494), 1, - anon_sym_CARET, - ACTIONS(2496), 1, - anon_sym_PIPE, - ACTIONS(2504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, - sym__ternary_qmark, - STATE(1441), 1, + STATE(1454), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2490), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2500), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2502), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2482), 3, + ACTIONS(1965), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1931), 13, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71964] = 28, + [72950] = 22, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2484), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, - anon_sym_AMP, - ACTIONS(2410), 1, - anon_sym_CARET, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, - sym__ternary_qmark, - ACTIONS(2521), 1, - anon_sym_COLON, - STATE(1442), 1, + STATE(1455), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(1965), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72060] = 28, + ACTIONS(1931), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [73034] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2145), 1, - anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, + ACTIONS(1965), 1, + anon_sym_PIPE, ACTIONS(2484), 1, - anon_sym_AMP_AMP, - ACTIONS(2486), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2494), 1, - anon_sym_CARET, ACTIONS(2496), 1, - anon_sym_PIPE, - ACTIONS(2504), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, - sym__ternary_qmark, - STATE(1443), 1, + anon_sym_PERCENT, + ACTIONS(2498), 1, + anon_sym_STAR_STAR, + STATE(1456), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72156] = 28, + ACTIONS(1931), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [73120] = 20, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, - anon_sym_AMP_AMP, - ACTIONS(2402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2484), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, - anon_sym_AMP, - ACTIONS(2410), 1, - anon_sym_CARET, - ACTIONS(2412), 1, - anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, - sym__ternary_qmark, - ACTIONS(2523), 1, - anon_sym_COLON, - STATE(1444), 1, + STATE(1457), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2494), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2424), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2500), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72252] = 18, + ACTIONS(1965), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1931), 8, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [73200] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2478), 1, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(2484), 1, + anon_sym_GT_GT, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_CARET, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2480), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2488), 1, - anon_sym_GT_GT, - STATE(1445), 1, + STATE(1458), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2486), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - STATE(1142), 2, + ACTIONS(2494), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2502), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2504), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 7, + ACTIONS(2482), 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(2025), 11, + ACTIONS(2500), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1931), 5, 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, - [72328] = 28, + [73288] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2075), 1, - anon_sym_of, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, - ACTIONS(2484), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2486), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2488), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2492), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2494), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2496), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2504), 1, + ACTIONS(2449), 1, + anon_sym_PERCENT, + ACTIONS(2451), 1, + anon_sym_STAR_STAR, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2506), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1446), 1, + ACTIONS(2531), 1, + anon_sym_COLON, + STATE(1459), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2500), 2, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2502), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2482), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72424] = 13, + [73384] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2480), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - STATE(1447), 1, + STATE(1460), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2027), 12, + ACTIONS(1965), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -120151,7 +121564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2025), 14, + ACTIONS(1931), 14, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -120166,268 +121579,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72490] = 24, + [73450] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1876), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2478), 1, + ACTIONS(2496), 1, anon_sym_PERCENT, - ACTIONS(2480), 1, + ACTIONS(2498), 1, anon_sym_STAR_STAR, - ACTIONS(2488), 1, - anon_sym_GT_GT, - ACTIONS(2492), 1, - anon_sym_AMP, - ACTIONS(2494), 1, - anon_sym_CARET, - ACTIONS(2496), 1, - anon_sym_PIPE, - STATE(1448), 1, + STATE(1461), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + ACTIONS(2480), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2476), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2500), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2502), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2482), 3, + ACTIONS(1965), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2498), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 5, + 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(1931), 13, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [72578] = 25, + anon_sym_instanceof, + [73520] = 28, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(97), 1, + anon_sym_STAR, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(109), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(1802), 1, + anon_sym_LBRACE, + ACTIONS(2535), 1, + anon_sym_RBRACE, + ACTIONS(2537), 1, + anon_sym_LBRACK, + ACTIONS(2539), 1, + anon_sym_async, + ACTIONS(2541), 1, + anon_sym_AT, + ACTIONS(2543), 1, + anon_sym_static, + STATE(1462), 1, + sym_comment, + STATE(1534), 1, + aux_sym_export_statement_repeat1, + STATE(1646), 1, + sym_decorator, + STATE(2085), 1, + aux_sym_object_repeat1, + STATE(2138), 1, + aux_sym_object_pattern_repeat1, + STATE(2143), 1, + sym__property_name, + STATE(2767), 1, + sym__destructuring_pattern, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2545), 2, + anon_sym_get, + anon_sym_set, + STATE(1760), 2, + sym_object_pattern, + sym_array_pattern, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2533), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(2086), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2155), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + [73615] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(2129), 1, + sym_regex_flags, + STATE(1463), 1, + sym_comment, + ACTIONS(2125), 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(2127), 20, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, - anon_sym_BQUOTE, - ACTIONS(2478), 1, - anon_sym_PERCENT, - ACTIONS(2480), 1, - anon_sym_STAR_STAR, - ACTIONS(2484), 1, anon_sym_AMP_AMP, - ACTIONS(2488), 1, - anon_sym_GT_GT, - ACTIONS(2492), 1, - anon_sym_AMP, - ACTIONS(2494), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(2496), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_comment, - ACTIONS(1878), 2, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2474), 2, + anon_sym_BQUOTE, + [73666] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1807), 1, + anon_sym_EQ, + ACTIONS(1840), 1, + anon_sym_in, + ACTIONS(1843), 1, + anon_sym_of, + STATE(1464), 1, + sym_comment, + ACTIONS(1763), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2476), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2490), 2, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1765), 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, - ACTIONS(2500), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2502), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, - sym_template_string, - sym_arguments, - ACTIONS(2482), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2498), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2025), 4, - sym__ternary_qmark, - anon_sym_of, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [72668] = 27, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [73721] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1999), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(2001), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2003), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(2005), 1, + ACTIONS(1886), 1, sym_optional_chain, - ACTIONS(2007), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2402), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1450), 1, + STATE(1465), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1303), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72761] = 27, + [73814] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1916), 1, + anon_sym_EQ, + ACTIONS(2343), 1, + anon_sym_of, + ACTIONS(2353), 1, + anon_sym_in, + STATE(1466), 1, + sym_comment, + ACTIONS(1909), 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(1911), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1880), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2400), 1, + [73869] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1979), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(1983), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + ACTIONS(2433), 1, anon_sym_AMP_AMP, - ACTIONS(2402), 1, + ACTIONS(2435), 1, anon_sym_PIPE_PIPE, - ACTIONS(2404), 1, + ACTIONS(2437), 1, anon_sym_GT_GT, - ACTIONS(2408), 1, + ACTIONS(2441), 1, anon_sym_AMP, - ACTIONS(2410), 1, + ACTIONS(2443), 1, anon_sym_CARET, - ACTIONS(2412), 1, + ACTIONS(2445), 1, anon_sym_PIPE, - ACTIONS(2416), 1, + ACTIONS(2449), 1, anon_sym_PERCENT, - ACTIONS(2418), 1, + ACTIONS(2451), 1, anon_sym_STAR_STAR, - ACTIONS(2426), 1, + ACTIONS(2459), 1, anon_sym_QMARK_QMARK, - ACTIONS(2428), 1, + ACTIONS(2461), 1, sym__ternary_qmark, - STATE(1451), 1, + STATE(1467), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(1888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2396), 2, + ACTIONS(2429), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2439), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2414), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2422), 2, + ACTIONS(2455), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2424), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1142), 2, + STATE(1277), 2, sym_template_string, sym_arguments, - ACTIONS(2398), 3, + ACTIONS(2431), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2420), 3, + ACTIONS(2453), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72854] = 28, + [73962] = 28, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -120440,61 +121985,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(119), 1, aux_sym_method_definition_token1, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(2527), 1, - anon_sym_RBRACE, - ACTIONS(2529), 1, + ACTIONS(2537), 1, anon_sym_LBRACK, - ACTIONS(2531), 1, - anon_sym_async, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2535), 1, + ACTIONS(2549), 1, + anon_sym_RBRACE, + ACTIONS(2551), 1, + anon_sym_async, + ACTIONS(2553), 1, anon_sym_static, - STATE(1452), 1, + STATE(1468), 1, sym_comment, - STATE(1520), 1, + STATE(1534), 1, aux_sym_export_statement_repeat1, - STATE(1632), 1, + STATE(1646), 1, sym_decorator, - STATE(2060), 1, - sym__property_name, - STATE(2061), 1, - aux_sym_object_repeat1, - STATE(2064), 1, + STATE(2138), 1, aux_sym_object_pattern_repeat1, - STATE(2775), 1, + STATE(2139), 1, + aux_sym_object_repeat1, + STATE(2143), 1, + sym__property_name, + STATE(2767), 1, sym__destructuring_pattern, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2537), 2, + ACTIONS(2555), 2, anon_sym_get, anon_sym_set, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2525), 3, + ACTIONS(2547), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(2058), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2059), 3, + STATE(2150), 3, sym_spread_element, sym_method_definition, sym_pair, - [72949] = 28, + STATE(2155), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + [74057] = 28, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -120507,235 +122052,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(119), 1, aux_sym_method_definition_token1, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(2529), 1, + ACTIONS(2537), 1, anon_sym_LBRACK, - ACTIONS(2533), 1, - anon_sym_AT, ACTIONS(2541), 1, + anon_sym_AT, + ACTIONS(2559), 1, anon_sym_RBRACE, - ACTIONS(2543), 1, + ACTIONS(2561), 1, anon_sym_async, - ACTIONS(2545), 1, + ACTIONS(2563), 1, anon_sym_static, - STATE(1453), 1, + STATE(1469), 1, sym_comment, - STATE(1520), 1, + STATE(1534), 1, aux_sym_export_statement_repeat1, - STATE(1632), 1, + STATE(1646), 1, sym_decorator, - STATE(2060), 1, - sym__property_name, - STATE(2061), 1, + STATE(2085), 1, aux_sym_object_repeat1, - STATE(2064), 1, + STATE(2138), 1, aux_sym_object_pattern_repeat1, - STATE(2775), 1, + STATE(2143), 1, + sym__property_name, + STATE(2767), 1, sym__destructuring_pattern, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2547), 2, + ACTIONS(2565), 2, anon_sym_get, anon_sym_set, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2539), 3, + ACTIONS(2557), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(2058), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2059), 3, + STATE(2086), 3, sym_spread_element, sym_method_definition, sym_pair, - [73044] = 28, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_COMMA, - ACTIONS(109), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(1774), 1, - anon_sym_LBRACE, - ACTIONS(2529), 1, - anon_sym_LBRACK, - ACTIONS(2533), 1, - anon_sym_AT, - ACTIONS(2551), 1, - anon_sym_RBRACE, - ACTIONS(2553), 1, - anon_sym_async, - ACTIONS(2555), 1, - anon_sym_static, - STATE(1454), 1, - sym_comment, - STATE(1520), 1, - aux_sym_export_statement_repeat1, - STATE(1632), 1, - sym_decorator, - STATE(2060), 1, - sym__property_name, - STATE(2064), 1, - aux_sym_object_pattern_repeat1, - STATE(2125), 1, - aux_sym_object_repeat1, - STATE(2775), 1, - sym__destructuring_pattern, - ACTIONS(1312), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2557), 2, - anon_sym_get, - anon_sym_set, - STATE(1727), 2, - sym_object_pattern, - sym_array_pattern, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2549), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(2058), 3, + STATE(2155), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(2126), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [73139] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(868), 1, - anon_sym_EQ, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(2347), 1, - anon_sym_of, - ACTIONS(2355), 1, - anon_sym_in, - STATE(1455), 1, - sym_comment, - ACTIONS(866), 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(872), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [73194] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1899), 1, - anon_sym_EQ, - ACTIONS(2317), 1, - anon_sym_of, - ACTIONS(2326), 1, - anon_sym_in, - STATE(1456), 1, - sym_comment, - ACTIONS(1892), 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(1894), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [73249] = 8, + [74152] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1795), 1, + ACTIONS(1927), 1, anon_sym_EQ, - ACTIONS(1827), 1, + ACTIONS(2364), 1, anon_sym_in, - ACTIONS(1830), 1, + ACTIONS(2367), 1, anon_sym_of, - STATE(1457), 1, + STATE(1470), 1, sym_comment, - ACTIONS(1755), 11, + ACTIONS(1920), 11, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -120747,7 +122131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 21, + ACTIONS(1922), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -120769,7 +122153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73304] = 28, + [74207] = 28, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -120782,128 +122166,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(119), 1, aux_sym_method_definition_token1, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(2529), 1, + ACTIONS(2537), 1, anon_sym_LBRACK, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2561), 1, + ACTIONS(2569), 1, anon_sym_RBRACE, - ACTIONS(2563), 1, + ACTIONS(2571), 1, anon_sym_async, - ACTIONS(2565), 1, + ACTIONS(2573), 1, anon_sym_static, - STATE(1458), 1, + STATE(1471), 1, sym_comment, - STATE(1520), 1, + STATE(1534), 1, aux_sym_export_statement_repeat1, - STATE(1632), 1, + STATE(1646), 1, sym_decorator, - STATE(2060), 1, - sym__property_name, - STATE(2064), 1, - aux_sym_object_pattern_repeat1, - STATE(2125), 1, + STATE(2085), 1, aux_sym_object_repeat1, - STATE(2775), 1, + STATE(2138), 1, + aux_sym_object_pattern_repeat1, + STATE(2143), 1, + sym__property_name, + STATE(2767), 1, sym__destructuring_pattern, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2567), 2, + ACTIONS(2575), 2, anon_sym_get, anon_sym_set, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2559), 3, + ACTIONS(2567), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(2058), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2126), 3, + STATE(2086), 3, sym_spread_element, sym_method_definition, sym_pair, - [73399] = 28, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_COMMA, - ACTIONS(109), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(1774), 1, - anon_sym_LBRACE, - ACTIONS(2529), 1, - anon_sym_LBRACK, - ACTIONS(2533), 1, - anon_sym_AT, - ACTIONS(2571), 1, - anon_sym_RBRACE, - ACTIONS(2573), 1, - anon_sym_async, - ACTIONS(2575), 1, - anon_sym_static, - STATE(1459), 1, - sym_comment, - STATE(1520), 1, - aux_sym_export_statement_repeat1, - STATE(1632), 1, - sym_decorator, - STATE(2060), 1, - sym__property_name, - STATE(2064), 1, - aux_sym_object_pattern_repeat1, - STATE(2125), 1, - aux_sym_object_repeat1, - STATE(2775), 1, - sym__destructuring_pattern, - ACTIONS(1312), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2577), 2, - anon_sym_get, - anon_sym_set, - STATE(1727), 2, - sym_object_pattern, - sym_array_pattern, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2569), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(2058), 3, + STATE(2155), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(2126), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [73494] = 28, + [74302] = 28, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -120916,75 +122233,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(119), 1, aux_sym_method_definition_token1, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(2529), 1, + ACTIONS(2537), 1, anon_sym_LBRACK, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2581), 1, + ACTIONS(2579), 1, anon_sym_RBRACE, - ACTIONS(2583), 1, + ACTIONS(2581), 1, anon_sym_async, - ACTIONS(2585), 1, + ACTIONS(2583), 1, anon_sym_static, - STATE(1460), 1, + STATE(1472), 1, sym_comment, - STATE(1520), 1, + STATE(1534), 1, aux_sym_export_statement_repeat1, - STATE(1632), 1, + STATE(1646), 1, sym_decorator, - STATE(2060), 1, - sym__property_name, - STATE(2064), 1, - aux_sym_object_pattern_repeat1, - STATE(2125), 1, + STATE(2085), 1, aux_sym_object_repeat1, - STATE(2775), 1, + STATE(2138), 1, + aux_sym_object_pattern_repeat1, + STATE(2143), 1, + sym__property_name, + STATE(2767), 1, sym__destructuring_pattern, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2587), 2, + ACTIONS(2585), 2, anon_sym_get, anon_sym_set, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2579), 3, + ACTIONS(2577), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(2058), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2126), 3, + STATE(2086), 3, sym_spread_element, sym_method_definition, sym_pair, - [73589] = 8, + STATE(2155), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + [74397] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1917), 1, + ACTIONS(1870), 1, anon_sym_EQ, - ACTIONS(2319), 1, - anon_sym_in, - ACTIONS(2322), 1, - anon_sym_of, - STATE(1461), 1, + STATE(1473), 1, sym_comment, - ACTIONS(1910), 11, + ACTIONS(1763), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -120995,9 +122309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1912), 21, + ACTIONS(1765), 22, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -121017,64 +122332,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73644] = 6, + [74448] = 28, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1864), 1, - anon_sym_EQ, - STATE(1462), 1, - sym_comment, - ACTIONS(1755), 12, + ACTIONS(97), 1, 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(1757), 22, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(109), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(1802), 1, + anon_sym_LBRACE, + ACTIONS(2537), 1, 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, - [73695] = 6, + ACTIONS(2541), 1, + anon_sym_AT, + ACTIONS(2589), 1, + anon_sym_RBRACE, + ACTIONS(2591), 1, + anon_sym_async, + ACTIONS(2593), 1, + anon_sym_static, + STATE(1474), 1, + sym_comment, + STATE(1534), 1, + aux_sym_export_statement_repeat1, + STATE(1646), 1, + sym_decorator, + STATE(2138), 1, + aux_sym_object_pattern_repeat1, + STATE(2139), 1, + aux_sym_object_repeat1, + STATE(2143), 1, + sym__property_name, + STATE(2767), 1, + sym__destructuring_pattern, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2595), 2, + anon_sym_get, + anon_sym_set, + STATE(1760), 2, + sym_object_pattern, + sym_array_pattern, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2587), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(2150), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2155), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + [74543] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(852), 1, + anon_sym_EQ, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2013), 1, - sym_regex_flags, - STATE(1463), 1, + ACTIONS(2307), 1, + anon_sym_of, + ACTIONS(2397), 1, + anon_sym_in, + STATE(1475), 1, sym_comment, - ACTIONS(2009), 14, + ACTIONS(850), 11, anon_sym_STAR, - anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -121085,8 +122424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(2011), 20, + ACTIONS(856), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -121104,10 +122442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73746] = 28, + [74598] = 28, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -121120,61 +122459,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(119), 1, aux_sym_method_definition_token1, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(2529), 1, + ACTIONS(2537), 1, anon_sym_LBRACK, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2591), 1, + ACTIONS(2599), 1, anon_sym_RBRACE, - ACTIONS(2593), 1, + ACTIONS(2601), 1, anon_sym_async, - ACTIONS(2595), 1, + ACTIONS(2603), 1, anon_sym_static, - STATE(1464), 1, + STATE(1476), 1, sym_comment, - STATE(1520), 1, + STATE(1534), 1, aux_sym_export_statement_repeat1, - STATE(1632), 1, + STATE(1646), 1, sym_decorator, - STATE(2060), 1, - sym__property_name, - STATE(2064), 1, - aux_sym_object_pattern_repeat1, - STATE(2125), 1, + STATE(2085), 1, aux_sym_object_repeat1, - STATE(2775), 1, + STATE(2138), 1, + aux_sym_object_pattern_repeat1, + STATE(2143), 1, + sym__property_name, + STATE(2767), 1, sym__destructuring_pattern, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2597), 2, + ACTIONS(2605), 2, anon_sym_get, anon_sym_set, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2589), 3, + ACTIONS(2597), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(2058), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2126), 3, + STATE(2086), 3, sym_spread_element, sym_method_definition, sym_pair, - [73841] = 25, + STATE(2155), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + [74693] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -121185,1477 +122524,1531 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(119), 1, aux_sym_method_definition_token1, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(2529), 1, + ACTIONS(2537), 1, anon_sym_LBRACK, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2604), 1, + ACTIONS(2612), 1, anon_sym_async, - ACTIONS(2606), 1, + ACTIONS(2614), 1, anon_sym_static, - STATE(1465), 1, + STATE(1477), 1, sym_comment, - STATE(1520), 1, + STATE(1534), 1, aux_sym_export_statement_repeat1, - STATE(1632), 1, + STATE(1646), 1, sym_decorator, - STATE(2060), 1, + STATE(2143), 1, sym__property_name, - STATE(2775), 1, + STATE(2767), 1, sym__destructuring_pattern, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2601), 2, + ACTIONS(2609), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2608), 2, + ACTIONS(2616), 2, anon_sym_get, anon_sym_set, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2599), 3, + ACTIONS(2607), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(2236), 3, + STATE(2551), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(2249), 3, + STATE(2556), 3, sym_spread_element, sym_method_definition, sym_pair, - [73928] = 27, + [74780] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_RBRACE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - STATE(1466), 1, + STATE(1478), 1, sym_comment, - STATE(1486), 1, + STATE(1484), 1, aux_sym_class_body_repeat1, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74015] = 27, + [74867] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2634), 1, + ACTIONS(2642), 1, anon_sym_RBRACE, - STATE(1467), 1, + STATE(1479), 1, sym_comment, - STATE(1480), 1, + STATE(1486), 1, aux_sym_class_body_repeat1, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74102] = 27, + [74954] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2636), 1, + ACTIONS(2644), 1, anon_sym_RBRACE, - STATE(1468), 1, + STATE(1480), 1, sym_comment, - STATE(1484), 1, + STATE(1495), 1, aux_sym_class_body_repeat1, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, + STATE(1573), 1, + sym_method_definition, + STATE(1574), 1, sym_class_static_block, - STATE(1564), 1, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, + sym_decorator, + STATE(1789), 1, + sym__property_name, + STATE(1977), 1, + sym_glimmer_opening_tag, + STATE(2565), 1, + sym_field_definition, + ACTIONS(2634), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2640), 2, + anon_sym_get, + anon_sym_set, + STATE(1908), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2618), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75041] = 26, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2649), 1, + anon_sym_STAR, + ACTIONS(2652), 1, + anon_sym_RBRACE, + ACTIONS(2654), 1, + anon_sym_SEMI, + ACTIONS(2657), 1, + anon_sym_LBRACK, + ACTIONS(2660), 1, + anon_sym_LTtemplate_GT, + ACTIONS(2663), 1, + anon_sym_DQUOTE, + ACTIONS(2666), 1, + anon_sym_SQUOTE, + ACTIONS(2669), 1, + anon_sym_async, + ACTIONS(2675), 1, + anon_sym_AT, + ACTIONS(2678), 1, + anon_sym_static, + ACTIONS(2681), 1, + aux_sym_method_definition_token1, + STATE(1538), 1, + aux_sym_export_statement_repeat1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2672), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2684), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1481), 2, + sym_comment, + aux_sym_class_body_repeat1, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2646), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74189] = 27, + [75126] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, - aux_sym_method_definition_token1, ACTIONS(2638), 1, + aux_sym_method_definition_token1, + ACTIONS(2687), 1, anon_sym_RBRACE, - STATE(1469), 1, - sym_comment, - STATE(1470), 1, + STATE(1481), 1, aux_sym_class_body_repeat1, - STATE(1526), 1, + STATE(1482), 1, + sym_comment, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74276] = 27, + [75213] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2640), 1, + ACTIONS(2689), 1, anon_sym_RBRACE, - STATE(1470), 1, - sym_comment, - STATE(1471), 1, + STATE(1481), 1, aux_sym_class_body_repeat1, - STATE(1526), 1, + STATE(1483), 1, + sym_comment, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74363] = 26, + [75300] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2645), 1, + ACTIONS(59), 1, + anon_sym_LTtemplate_GT, + ACTIONS(2541), 1, + anon_sym_AT, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2648), 1, - anon_sym_RBRACE, - ACTIONS(2650), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2653), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2656), 1, - anon_sym_LTtemplate_GT, - ACTIONS(2659), 1, - anon_sym_async, - ACTIONS(2662), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2671), 1, - anon_sym_AT, - ACTIONS(2674), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2677), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - STATE(1526), 1, + ACTIONS(2691), 1, + anon_sym_RBRACE, + STATE(1481), 1, + aux_sym_class_body_repeat1, + STATE(1484), 1, + sym_comment, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2668), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2680), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1471), 2, - sym_comment, - aux_sym_class_body_repeat1, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2642), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74448] = 27, + [75387] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2683), 1, + ACTIONS(2693), 1, anon_sym_RBRACE, - STATE(1472), 1, - sym_comment, - STATE(1483), 1, + STATE(1482), 1, aux_sym_class_body_repeat1, - STATE(1526), 1, + STATE(1485), 1, + sym_comment, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74535] = 27, + [75474] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2685), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1473), 1, - sym_comment, - STATE(1479), 1, + STATE(1481), 1, aux_sym_class_body_repeat1, - STATE(1526), 1, + STATE(1486), 1, + sym_comment, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74622] = 27, + [75561] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2687), 1, + ACTIONS(2697), 1, anon_sym_RBRACE, - STATE(1471), 1, + STATE(1481), 1, aux_sym_class_body_repeat1, - STATE(1474), 1, + STATE(1487), 1, sym_comment, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74709] = 27, + [75648] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2689), 1, + ACTIONS(2699), 1, anon_sym_RBRACE, - STATE(1475), 1, + STATE(1488), 1, sym_comment, - STATE(1477), 1, + STATE(1489), 1, aux_sym_class_body_repeat1, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74796] = 27, + [75735] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2691), 1, + ACTIONS(2701), 1, anon_sym_RBRACE, - STATE(1471), 1, + STATE(1481), 1, aux_sym_class_body_repeat1, - STATE(1476), 1, + STATE(1489), 1, sym_comment, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74883] = 27, + [75822] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2693), 1, + ACTIONS(2703), 1, anon_sym_RBRACE, - STATE(1471), 1, + STATE(1483), 1, aux_sym_class_body_repeat1, - STATE(1477), 1, + STATE(1490), 1, sym_comment, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [74970] = 27, + [75909] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2695), 1, + ACTIONS(2705), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1487), 1, aux_sym_class_body_repeat1, - STATE(1478), 1, + STATE(1491), 1, sym_comment, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75057] = 27, + [75996] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2697), 1, + ACTIONS(2707), 1, anon_sym_RBRACE, - STATE(1471), 1, - aux_sym_class_body_repeat1, - STATE(1479), 1, + STATE(1492), 1, sym_comment, - STATE(1526), 1, + STATE(1496), 1, + aux_sym_class_body_repeat1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75144] = 27, + [76083] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2699), 1, + ACTIONS(2709), 1, anon_sym_RBRACE, - STATE(1471), 1, + STATE(1481), 1, aux_sym_class_body_repeat1, - STATE(1480), 1, + STATE(1493), 1, sym_comment, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75231] = 27, + [76170] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2701), 1, + ACTIONS(2711), 1, anon_sym_RBRACE, - STATE(1481), 1, - sym_comment, - STATE(1488), 1, + STATE(1493), 1, aux_sym_class_body_repeat1, - STATE(1526), 1, + STATE(1494), 1, + sym_comment, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75318] = 27, + [76257] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2703), 1, + ACTIONS(2713), 1, anon_sym_RBRACE, - STATE(1474), 1, + STATE(1481), 1, aux_sym_class_body_repeat1, - STATE(1482), 1, + STATE(1495), 1, sym_comment, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75405] = 27, + [76344] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2705), 1, + ACTIONS(2715), 1, anon_sym_RBRACE, - STATE(1471), 1, + STATE(1481), 1, aux_sym_class_body_repeat1, - STATE(1483), 1, + STATE(1496), 1, sym_comment, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75492] = 27, + [76431] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2707), 1, + ACTIONS(2717), 1, anon_sym_RBRACE, - STATE(1471), 1, - aux_sym_class_body_repeat1, - STATE(1484), 1, + STATE(1497), 1, sym_comment, - STATE(1526), 1, + STATE(1498), 1, + aux_sym_class_body_repeat1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75579] = 27, + [76518] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2709), 1, + ACTIONS(2719), 1, anon_sym_RBRACE, - STATE(1485), 1, - sym_comment, - STATE(1487), 1, + STATE(1481), 1, aux_sym_class_body_repeat1, - STATE(1526), 1, + STATE(1498), 1, + sym_comment, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75666] = 27, + [76605] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2711), 1, + ACTIONS(2721), 1, anon_sym_RBRACE, - STATE(1471), 1, - aux_sym_class_body_repeat1, - STATE(1486), 1, + STATE(1499), 1, sym_comment, - STATE(1526), 1, + STATE(1500), 1, + aux_sym_class_body_repeat1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75753] = 27, + [76692] = 27, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(2620), 1, anon_sym_STAR, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_SEMI, - ACTIONS(2618), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, + ACTIONS(2632), 1, + anon_sym_async, + ACTIONS(2636), 1, anon_sym_static, - ACTIONS(2630), 1, + ACTIONS(2638), 1, aux_sym_method_definition_token1, - ACTIONS(2713), 1, + ACTIONS(2723), 1, anon_sym_RBRACE, - STATE(1471), 1, + STATE(1481), 1, aux_sym_class_body_repeat1, - STATE(1487), 1, + STATE(1500), 1, sym_comment, - STATE(1526), 1, + STATE(1538), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, + STATE(1573), 1, sym_method_definition, - STATE(1632), 1, + STATE(1574), 1, + sym_class_static_block, + STATE(1579), 1, + sym_glimmer_template, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(1789), 1, sym__property_name, - STATE(1877), 1, + STATE(1977), 1, sym_glimmer_opening_tag, - STATE(2174), 1, + STATE(2565), 1, sym_field_definition, - ACTIONS(2626), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2640), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2618), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75840] = 27, + [76779] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(59), 1, - anon_sym_LTtemplate_GT, - ACTIONS(2533), 1, - anon_sym_AT, - ACTIONS(2612), 1, + ACTIONS(97), 1, anon_sym_STAR, - ACTIONS(2616), 1, - anon_sym_SEMI, - ACTIONS(2618), 1, - anon_sym_LBRACK, - ACTIONS(2620), 1, - anon_sym_async, - ACTIONS(2622), 1, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(1063), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2628), 1, - anon_sym_static, - ACTIONS(2630), 1, - aux_sym_method_definition_token1, - ACTIONS(2715), 1, + ACTIONS(2541), 1, + anon_sym_AT, + ACTIONS(2727), 1, + anon_sym_COMMA, + ACTIONS(2729), 1, anon_sym_RBRACE, - STATE(1471), 1, - aux_sym_class_body_repeat1, - STATE(1488), 1, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2733), 1, + anon_sym_async, + ACTIONS(2735), 1, + anon_sym_static, + STATE(1501), 1, sym_comment, - STATE(1526), 1, + STATE(1534), 1, aux_sym_export_statement_repeat1, - STATE(1559), 1, - sym_glimmer_template, - STATE(1561), 1, - sym_class_static_block, - STATE(1564), 1, - sym_method_definition, - STATE(1632), 1, + STATE(1646), 1, sym_decorator, - STATE(1765), 1, + STATE(2136), 1, sym__property_name, - STATE(1877), 1, - sym_glimmer_opening_tag, - STATE(2174), 1, - sym_field_definition, - ACTIONS(2626), 2, + STATE(2141), 1, + aux_sym_object_repeat1, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2632), 2, + ACTIONS(2737), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2725), 3, anon_sym_export, anon_sym_let, sym_identifier, - [75927] = 18, + STATE(2147), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [76856] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(892), 1, + ACTIONS(893), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(2529), 1, + ACTIONS(2537), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2721), 1, + ACTIONS(2743), 1, anon_sym_RBRACE, - STATE(1489), 1, + STATE(1502), 1, sym_comment, - STATE(2124), 1, + STATE(2084), 1, aux_sym_object_pattern_repeat1, - STATE(2775), 1, - sym__destructuring_pattern, - STATE(2807), 1, + STATE(2748), 1, sym__property_name, - ACTIONS(1312), 2, + STATE(2767), 1, + sym__destructuring_pattern, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - STATE(2127), 3, + STATE(2087), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - ACTIONS(2717), 7, + ACTIONS(2739), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -122663,7 +124056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [75993] = 21, + [76922] = 21, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -122672,89 +124065,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(119), 1, aux_sym_method_definition_token1, - ACTIONS(1069), 1, + ACTIONS(1063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2533), 1, + ACTIONS(2541), 1, anon_sym_AT, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2749), 1, anon_sym_async, - ACTIONS(2731), 1, + ACTIONS(2751), 1, anon_sym_static, - STATE(1490), 1, + STATE(1503), 1, sym_comment, - STATE(1520), 1, + STATE(1534), 1, aux_sym_export_statement_repeat1, - STATE(1632), 1, + STATE(1646), 1, sym_decorator, - STATE(2104), 1, + STATE(2136), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2725), 2, + ACTIONS(2747), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2733), 2, + ACTIONS(2753), 2, anon_sym_get, anon_sym_set, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2723), 3, + ACTIONS(2745), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(2249), 3, + STATE(2556), 3, sym_spread_element, sym_method_definition, sym_pair, - [76065] = 18, + [76994] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(892), 1, + ACTIONS(893), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(2529), 1, + ACTIONS(2537), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - ACTIONS(2737), 1, + ACTIONS(2757), 1, anon_sym_RBRACE, - STATE(1491), 1, + STATE(1504), 1, sym_comment, - STATE(2064), 1, + STATE(2138), 1, aux_sym_object_pattern_repeat1, - STATE(2775), 1, - sym__destructuring_pattern, - STATE(2807), 1, + STATE(2748), 1, sym__property_name, - ACTIONS(1312), 2, + STATE(2767), 1, + sym__destructuring_pattern, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - STATE(2058), 3, + STATE(2155), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - ACTIONS(2735), 7, + ACTIONS(2755), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -122762,44 +124155,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [76131] = 16, + [77060] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(892), 1, + ACTIONS(893), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(2529), 1, + ACTIONS(2537), 1, anon_sym_LBRACK, - STATE(1492), 1, + STATE(1505), 1, sym_comment, - STATE(2775), 1, - sym__destructuring_pattern, - STATE(2807), 1, + STATE(2748), 1, sym__property_name, - ACTIONS(1312), 2, + STATE(2767), 1, + sym__destructuring_pattern, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2741), 2, + ACTIONS(2761), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - STATE(2236), 3, + STATE(2551), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - ACTIONS(2739), 7, + ACTIONS(2759), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -122807,88 +124200,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [76192] = 18, + [77121] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2745), 1, + ACTIONS(2765), 1, anon_sym_RBRACE, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1493), 1, + STATE(1506), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 5, + ACTIONS(1352), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [76255] = 18, + [77186] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - ACTIONS(2751), 1, + ACTIONS(2771), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1507), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 5, @@ -122897,45 +124291,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [76318] = 19, + [77249] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1290), 1, - anon_sym_RBRACE, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, ACTIONS(1357), 1, anon_sym_async, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1495), 1, + ACTIONS(2771), 1, + anon_sym_RBRACE, + STATE(1508), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 4, @@ -122943,90 +124337,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, sym_identifier, anon_sym_static, - [76383] = 18, + [77314] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1350), 1, + ACTIONS(1332), 1, anon_sym_RBRACE, - ACTIONS(2727), 1, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1496), 1, + STATE(1509), 1, sym_comment, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - STATE(2114), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2223), 1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 5, + ACTIONS(1352), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [76446] = 19, + [77379] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1350), 1, + ACTIONS(1330), 1, anon_sym_RBRACE, ACTIONS(1357), 1, anon_sym_async, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1497), 1, + STATE(1510), 1, sym_comment, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - STATE(2114), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2223), 1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 4, @@ -123034,89 +124429,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, sym_identifier, anon_sym_static, - [76511] = 19, + [77444] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1357), 1, - anon_sym_async, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - ACTIONS(2751), 1, + ACTIONS(2773), 1, anon_sym_RBRACE, - STATE(1498), 1, + STATE(1511), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 4, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [76576] = 18, + [77507] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1290), 1, - anon_sym_RBRACE, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2765), 1, + anon_sym_RBRACE, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1499), 1, + STATE(1512), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 5, @@ -123125,43 +124519,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [76639] = 18, + [77570] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(1330), 1, + anon_sym_RBRACE, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - ACTIONS(2753), 1, - anon_sym_RBRACE, - STATE(1500), 1, + STATE(1513), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 5, @@ -123170,181 +124564,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [76702] = 18, + [77633] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1332), 1, - anon_sym_RBRACE, - ACTIONS(2727), 1, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1501), 1, + ACTIONS(2775), 1, + anon_sym_RBRACE, + STATE(1514), 1, sym_comment, - STATE(2010), 1, + STATE(2131), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 5, + ACTIONS(1352), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [76765] = 19, + [77698] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1332), 1, - anon_sym_RBRACE, - ACTIONS(1357), 1, - anon_sym_async, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1502), 1, + ACTIONS(2775), 1, + anon_sym_RBRACE, + STATE(1515), 1, sym_comment, - STATE(2010), 1, + STATE(2131), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 4, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [76830] = 18, + [77761] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - ACTIONS(2755), 1, + ACTIONS(2773), 1, anon_sym_RBRACE, - STATE(1503), 1, + STATE(1516), 1, sym_comment, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - STATE(2114), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2223), 1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 5, + ACTIONS(1352), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [76893] = 19, + [77826] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1304), 1, + anon_sym_RBRACE, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, ACTIONS(1357), 1, anon_sym_async, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - ACTIONS(2755), 1, - anon_sym_RBRACE, - STATE(1504), 1, + STATE(1517), 1, sym_comment, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - STATE(2114), 1, + STATE(2131), 1, aux_sym_object_repeat1, - STATE(2223), 1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 4, @@ -123352,130 +124747,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, sym_identifier, anon_sym_static, - [76958] = 19, + [77891] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1304), 1, + anon_sym_RBRACE, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1357), 1, - anon_sym_async, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2745), 1, - anon_sym_RBRACE, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1505), 1, + STATE(1518), 1, sym_comment, - STATE(2010), 1, + STATE(2131), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 4, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [77023] = 19, + [77954] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1357), 1, - anon_sym_async, - ACTIONS(2727), 1, + ACTIONS(1332), 1, + anon_sym_RBRACE, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - ACTIONS(2753), 1, - anon_sym_RBRACE, - STATE(1506), 1, + STATE(1519), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 4, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [77088] = 16, + [78017] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - ACTIONS(2753), 1, + ACTIONS(2773), 1, anon_sym_RBRACE, - STATE(1507), 1, + STATE(1520), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -123486,38 +124879,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [77146] = 16, + [78075] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1290), 1, - anon_sym_RBRACE, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2749), 1, + ACTIONS(2765), 1, + anon_sym_RBRACE, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1508), 1, + STATE(1521), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -123528,38 +124921,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [77204] = 16, + [78133] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1304), 1, + anon_sym_RBRACE, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1350), 1, - anon_sym_RBRACE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1509), 1, + STATE(1522), 1, sym_comment, - STATE(2113), 1, + STATE(2131), 1, + aux_sym_object_repeat1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2114), 1, + STATE(2546), 1, + sym__property_name, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2767), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [78191] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, + anon_sym_COMMA, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2769), 1, + anon_sym_EQ, + ACTIONS(2775), 1, + anon_sym_RBRACE, + STATE(1523), 1, + sym_comment, + STATE(2131), 1, aux_sym_object_repeat1, - STATE(2223), 1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -123570,38 +125005,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [77262] = 16, + [78249] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2626), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_DQUOTE, + ACTIONS(2630), 1, + anon_sym_SQUOTE, + ACTIONS(2777), 1, + anon_sym_STAR, + ACTIONS(2779), 1, + anon_sym_LBRACE, + ACTIONS(2781), 1, + anon_sym_async, + ACTIONS(2785), 1, + sym__automatic_semicolon, + STATE(1524), 1, + sym_comment, + STATE(1565), 1, + sym_statement_block, + STATE(1796), 1, + sym__property_name, + ACTIONS(2634), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2783), 2, + anon_sym_get, + anon_sym_set, + STATE(1908), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2767), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2618), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [78309] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - ACTIONS(2751), 1, + ACTIONS(2771), 1, anon_sym_RBRACE, - STATE(1510), 1, + STATE(1525), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -123612,38 +125090,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [77320] = 16, + [78367] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1332), 1, + ACTIONS(1330), 1, anon_sym_RBRACE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1511), 1, + STATE(1526), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -123654,38 +125132,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [77378] = 16, + [78425] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(1332), 1, + anon_sym_RBRACE, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - ACTIONS(2755), 1, - anon_sym_RBRACE, - STATE(1512), 1, + STATE(1527), 1, sym_comment, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - STATE(2114), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2223), 1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -123696,123 +125174,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [77436] = 17, + [78483] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2618), 1, - anon_sym_LBRACK, - ACTIONS(2622), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2759), 1, - anon_sym_LBRACE, - ACTIONS(2761), 1, + ACTIONS(1357), 1, anon_sym_async, - ACTIONS(2765), 1, - sym__automatic_semicolon, - STATE(1513), 1, + ACTIONS(2727), 1, + anon_sym_COMMA, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2763), 1, + anon_sym_STAR, + ACTIONS(2787), 1, + anon_sym_RBRACE, + STATE(1528), 1, sym_comment, - STATE(1553), 1, - sym_statement_block, - STATE(1763), 1, + STATE(2113), 1, + aux_sym_object_repeat1, + STATE(2546), 1, sym__property_name, - ACTIONS(2626), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2763), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - STATE(1961), 2, + ACTIONS(2767), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2610), 4, + ACTIONS(1352), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [77496] = 16, + [78542] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(99), 1, - anon_sym_COMMA, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, ACTIONS(2727), 1, + anon_sym_COMMA, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2745), 1, + ACTIONS(2763), 1, + anon_sym_STAR, + ACTIONS(2787), 1, anon_sym_RBRACE, - ACTIONS(2749), 1, - anon_sym_EQ, - STATE(1514), 1, + STATE(1529), 1, sym_comment, - STATE(2010), 1, - aux_sym_object_repeat1, STATE(2113), 1, - aux_sym_object_pattern_repeat1, - STATE(2223), 1, + aux_sym_object_repeat1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2747), 2, + ACTIONS(1359), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 7, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [77554] = 15, + [78599] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1515), 1, + STATE(1530), 1, sym_comment, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2767), 2, + ACTIONS(2789), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 5, @@ -123821,40 +125297,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [77609] = 16, + [78654] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, ACTIONS(1357), 1, anon_sym_async, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2749), 1, + ACTIONS(2769), 1, anon_sym_EQ, - STATE(1516), 1, + STATE(1531), 1, sym_comment, - STATE(2223), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2767), 2, + ACTIONS(2789), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 4, @@ -123862,278 +125338,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, sym_identifier, anon_sym_static, - [77666] = 21, + [78711] = 21, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(115), 1, anon_sym_AT, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2770), 1, + ACTIONS(2792), 1, anon_sym_export, - ACTIONS(2772), 1, + ACTIONS(2794), 1, anon_sym_STAR, - ACTIONS(2774), 1, + ACTIONS(2796), 1, anon_sym_class, - ACTIONS(2776), 1, + ACTIONS(2798), 1, anon_sym_async, - ACTIONS(2778), 1, + ACTIONS(2800), 1, anon_sym_static, - ACTIONS(2780), 1, + ACTIONS(2802), 1, aux_sym_method_definition_token1, - ACTIONS(2782), 1, + ACTIONS(2804), 1, anon_sym_get, - ACTIONS(2784), 1, + ACTIONS(2806), 1, anon_sym_set, - STATE(1517), 1, + STATE(1532), 1, sym_comment, - STATE(1567), 1, - aux_sym_export_statement_repeat1, STATE(1595), 1, + aux_sym_export_statement_repeat1, + STATE(1637), 1, sym_decorator, - STATE(2186), 1, + STATE(2490), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, ACTIONS(1352), 2, anon_sym_let, sym_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - [77733] = 15, + [78778] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2765), 1, - sym__automatic_semicolon, - ACTIONS(2786), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2788), 1, - anon_sym_get, - ACTIONS(2790), 1, - anon_sym_set, - STATE(1518), 1, + STATE(1533), 1, sym_comment, - STATE(2614), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + ACTIONS(1359), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2767), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2808), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(1352), 5, + ACTIONS(1352), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [77787] = 15, + [78832] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2541), 1, + anon_sym_AT, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2765), 1, - sym__automatic_semicolon, - ACTIONS(2792), 1, - anon_sym_STAR, ACTIONS(2794), 1, + anon_sym_STAR, + ACTIONS(2798), 1, + anon_sym_async, + ACTIONS(2800), 1, + anon_sym_static, + ACTIONS(2802), 1, + aux_sym_method_definition_token1, + ACTIONS(2804), 1, anon_sym_get, - ACTIONS(2796), 1, + ACTIONS(2806), 1, anon_sym_set, - STATE(1519), 1, + STATE(1534), 1, sym_comment, - STATE(2628), 1, + STATE(1597), 1, + aux_sym_export_statement_repeat1, + STATE(1646), 1, + sym_decorator, + STATE(2490), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(1352), 5, + ACTIONS(1352), 3, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, - anon_sym_static, - [77841] = 19, + [78894] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2533), 1, - anon_sym_AT, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2772), 1, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2776), 1, - anon_sym_async, - ACTIONS(2778), 1, - anon_sym_static, - ACTIONS(2780), 1, - aux_sym_method_definition_token1, - ACTIONS(2782), 1, - anon_sym_get, - ACTIONS(2784), 1, - anon_sym_set, - STATE(1520), 1, + STATE(1535), 1, sym_comment, - STATE(1586), 1, - aux_sym_export_statement_repeat1, - STATE(1632), 1, - sym_decorator, - STATE(2186), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + ACTIONS(1359), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2767), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2808), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 3, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, - [77903] = 14, + anon_sym_static, + [78946] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2765), 1, - sym__automatic_semicolon, - ACTIONS(2798), 1, - anon_sym_STAR, - STATE(1521), 1, + ACTIONS(2769), 1, + anon_sym_EQ, + STATE(1536), 1, sym_comment, - STATE(2154), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2800), 2, - anon_sym_get, - anon_sym_set, - STATE(2554), 2, + ACTIONS(2767), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2789), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(1352), 5, + ACTIONS(1352), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [77955] = 14, + anon_sym_get, + anon_sym_set, + [78996] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, ACTIONS(2727), 1, + anon_sym_COMMA, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, - anon_sym_STAR, - STATE(1522), 1, + ACTIONS(2787), 1, + anon_sym_RBRACE, + STATE(1537), 1, sym_comment, - STATE(2223), 1, + STATE(2113), 1, + aux_sym_object_repeat1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(1359), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2747), 2, + ACTIONS(2767), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2802), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 5, + ACTIONS(1352), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [78007] = 14, + anon_sym_get, + anon_sym_set, + [79048] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(2541), 1, + anon_sym_AT, + ACTIONS(2626), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - ACTIONS(2757), 1, + ACTIONS(2810), 1, anon_sym_STAR, - ACTIONS(2765), 1, - sym__automatic_semicolon, - STATE(1523), 1, + ACTIONS(2812), 1, + anon_sym_async, + ACTIONS(2814), 1, + anon_sym_static, + ACTIONS(2816), 1, + aux_sym_method_definition_token1, + ACTIONS(2818), 1, + anon_sym_get, + ACTIONS(2820), 1, + anon_sym_set, + STATE(1538), 1, sym_comment, - STATE(2601), 1, + STATE(1597), 1, + aux_sym_export_statement_repeat1, + STATE(1646), 1, + sym_decorator, + STATE(1791), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2804), 2, + STATE(1908), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2618), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [79110] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2785), 1, + sym__automatic_semicolon, + ACTIONS(2822), 1, + anon_sym_STAR, + ACTIONS(2824), 1, anon_sym_get, + ACTIONS(2826), 1, anon_sym_set, - STATE(2554), 2, + STATE(1539), 1, + sym_comment, + STATE(2659), 1, + sym__property_name, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, + ACTIONS(2767), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, @@ -124143,189 +125661,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [78059] = 13, + [79164] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(2626), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_EQ, - STATE(1524), 1, + ACTIONS(2785), 1, + sym__automatic_semicolon, + ACTIONS(2828), 1, + anon_sym_STAR, + ACTIONS(2830), 1, + anon_sym_async, + ACTIONS(2832), 1, + anon_sym_get, + ACTIONS(2834), 1, + anon_sym_set, + STATE(1540), 1, sym_comment, - STATE(2223), 1, + STATE(1827), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(2634), 2, sym_number, sym_private_property_identifier, - ACTIONS(2747), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2767), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2554), 2, + STATE(1908), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 7, + ACTIONS(2767), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2618), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [78109] = 15, + [79220] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1357), 1, - anon_sym_async, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2777), 1, anon_sym_STAR, - STATE(1525), 1, + ACTIONS(2785), 1, + sym__automatic_semicolon, + STATE(1541), 1, sym_comment, - STATE(2223), 1, + STATE(2646), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(1359), 2, + ACTIONS(2836), 2, anon_sym_get, anon_sym_set, - ACTIONS(2747), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2802), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 4, + ACTIONS(2767), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [78163] = 19, + [79272] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2533), 1, - anon_sym_AT, - ACTIONS(2618), 1, - anon_sym_LBRACK, - ACTIONS(2622), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2806), 1, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2785), 1, + sym__automatic_semicolon, + ACTIONS(2838), 1, anon_sym_STAR, - ACTIONS(2808), 1, - anon_sym_async, - ACTIONS(2810), 1, - anon_sym_static, - ACTIONS(2812), 1, - aux_sym_method_definition_token1, - ACTIONS(2814), 1, + ACTIONS(2840), 1, anon_sym_get, - ACTIONS(2816), 1, + ACTIONS(2842), 1, anon_sym_set, - STATE(1526), 1, + STATE(1542), 1, sym_comment, - STATE(1586), 1, - aux_sym_export_statement_repeat1, - STATE(1632), 1, - sym_decorator, - STATE(1757), 1, + STATE(2673), 1, sym__property_name, - ACTIONS(2626), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(1961), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2610), 3, + ACTIONS(2767), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, - [78225] = 16, + anon_sym_static, + [79326] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2618), 1, - anon_sym_LBRACK, - ACTIONS(2622), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2765), 1, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2785), 1, sym__automatic_semicolon, - ACTIONS(2818), 1, + ACTIONS(2844), 1, anon_sym_STAR, - ACTIONS(2820), 1, - anon_sym_async, - ACTIONS(2822), 1, - anon_sym_get, - ACTIONS(2824), 1, - anon_sym_set, - STATE(1527), 1, + STATE(1543), 1, sym_comment, - STATE(1784), 1, + STATE(2657), 1, sym__property_name, - ACTIONS(2626), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(1961), 2, + ACTIONS(2846), 2, + anon_sym_get, + anon_sym_set, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, + ACTIONS(2767), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(2610), 4, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [78281] = 12, + [79378] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2765), 1, + ACTIONS(2785), 1, sym__automatic_semicolon, - STATE(1528), 1, + STATE(1544), 1, sym_comment, - STATE(2601), 1, + STATE(2646), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, + ACTIONS(2767), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, @@ -124337,30 +125851,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [78328] = 12, + [79425] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2765), 1, + ACTIONS(2785), 1, sym__automatic_semicolon, - STATE(1529), 1, + STATE(1545), 1, sym_comment, - STATE(2616), 1, + STATE(2657), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, + ACTIONS(2767), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, @@ -124372,16 +125886,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [78375] = 5, + [79472] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2826), 1, + ACTIONS(2848), 1, sym__automatic_semicolon, - STATE(1530), 1, + STATE(1546), 1, sym_comment, - ACTIONS(874), 18, + ACTIONS(901), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124389,9 +125903,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124400,65 +125914,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78408] = 12, + [79505] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(2852), 1, + anon_sym_LPAREN, + ACTIONS(2854), 1, + anon_sym_DOT, + STATE(1547), 1, + sym_comment, + STATE(1615), 1, + sym_arguments, + ACTIONS(2850), 16, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - ACTIONS(2765), 1, - sym__automatic_semicolon, - STATE(1531), 1, - sym_comment, - STATE(2630), 1, - sym__property_name, - ACTIONS(1312), 2, + anon_sym_class, + anon_sym_async, sym_number, + sym_identifier, sym_private_property_identifier, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2747), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(1352), 7, + anon_sym_AT, + anon_sym_static, + aux_sym_method_definition_token1, + anon_sym_get, + anon_sym_set, + [79542] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2856), 1, + sym__automatic_semicolon, + STATE(1548), 1, + sym_comment, + ACTIONS(848), 18, anon_sym_export, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78455] = 12, + [79575] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2765), 1, + ACTIONS(2785), 1, sym__automatic_semicolon, - STATE(1532), 1, + STATE(1549), 1, sym_comment, - STATE(2629), 1, + STATE(2661), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, + ACTIONS(2767), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, @@ -124470,33 +126007,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [78502] = 12, + [79622] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2765), 1, - sym__automatic_semicolon, - STATE(1533), 1, + STATE(1550), 1, sym_comment, - STATE(2617), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + ACTIONS(2767), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2808), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, ACTIONS(1352), 7, anon_sym_export, anon_sym_let, @@ -124505,88 +126042,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [78549] = 5, + [79669] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2828), 1, - sym__automatic_semicolon, - STATE(1534), 1, - sym_comment, - ACTIONS(864), 18, - anon_sym_export, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_async, + ACTIONS(1316), 1, anon_sym_DQUOTE, + ACTIONS(1318), 1, anon_sym_SQUOTE, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2785), 1, + sym__automatic_semicolon, + STATE(1551), 1, + sym_comment, + STATE(2674), 1, + sym__property_name, + ACTIONS(1326), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - aux_sym_method_definition_token1, - anon_sym_get, - anon_sym_set, - [78582] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2832), 1, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2767), 3, anon_sym_LPAREN, - ACTIONS(2834), 1, - anon_sym_DOT, - STATE(1535), 1, - sym_comment, - STATE(1625), 1, - sym_arguments, - ACTIONS(2830), 16, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1352), 7, anon_sym_export, - anon_sym_STAR, anon_sym_let, - anon_sym_LBRACK, - anon_sym_class, anon_sym_async, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78619] = 12, + [79716] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2765), 1, + ACTIONS(2785), 1, sym__automatic_semicolon, - STATE(1536), 1, + STATE(1552), 1, sym_comment, - STATE(2154), 1, + STATE(2662), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(2747), 3, + ACTIONS(2767), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, @@ -124598,33 +126112,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [78666] = 12, + [79763] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1537), 1, + ACTIONS(2785), 1, + sym__automatic_semicolon, + STATE(1553), 1, sym_comment, - STATE(2223), 1, + STATE(2675), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2747), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2802), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, + ACTIONS(2767), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, ACTIONS(1352), 7, anon_sym_export, anon_sym_let, @@ -124633,14 +126147,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [78713] = 4, + [79810] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1538), 1, + STATE(1554), 1, sym_comment, - ACTIONS(2836), 18, + ACTIONS(2858), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124648,9 +126162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124659,14 +126173,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78743] = 4, + [79840] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1539), 1, + STATE(1555), 1, sym_comment, - ACTIONS(2838), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124674,9 +126188,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124685,14 +126199,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78773] = 4, + [79870] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1540), 1, + STATE(1556), 1, sym_comment, - ACTIONS(2840), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124700,9 +126214,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124711,14 +126225,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78803] = 4, + [79900] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1541), 1, + STATE(1557), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(2862), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124726,9 +126240,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124737,14 +126251,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78833] = 4, + [79930] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1542), 1, + STATE(1558), 1, sym_comment, - ACTIONS(2844), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124752,9 +126266,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124763,14 +126277,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78863] = 4, + [79960] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1543), 1, + STATE(1559), 1, sym_comment, - ACTIONS(2844), 18, + ACTIONS(901), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124778,9 +126292,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124789,14 +126303,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78893] = 4, + [79990] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1544), 1, + STATE(1560), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(897), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124804,9 +126318,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124815,14 +126329,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78923] = 4, + [80020] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1545), 1, + STATE(1561), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(2864), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124830,9 +126344,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124841,14 +126355,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78953] = 4, + [80050] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1546), 1, + STATE(1562), 1, sym_comment, - ACTIONS(2844), 18, + ACTIONS(2864), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124856,9 +126370,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124867,14 +126381,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [78983] = 4, + [80080] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1547), 1, + STATE(1563), 1, sym_comment, - ACTIONS(2844), 18, + ACTIONS(2864), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124882,9 +126396,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124893,14 +126407,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79013] = 4, + [80110] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1548), 1, + STATE(1564), 1, sym_comment, - ACTIONS(2844), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124908,9 +126422,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124919,14 +126433,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79043] = 4, + [80140] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1549), 1, + STATE(1565), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(2866), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124934,9 +126448,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124945,14 +126459,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79073] = 4, + [80170] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1550), 1, + STATE(1566), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(2868), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124960,9 +126474,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124971,14 +126485,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79103] = 4, + [80200] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1551), 1, + STATE(1567), 1, sym_comment, - ACTIONS(2055), 18, + ACTIONS(2864), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -124986,9 +126500,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -124997,14 +126511,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79133] = 4, + [80230] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1552), 1, + STATE(1568), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(2864), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125012,9 +126526,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125023,14 +126537,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79163] = 4, + [80260] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1553), 1, + STATE(1569), 1, sym_comment, - ACTIONS(2846), 18, + ACTIONS(2864), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125038,9 +126552,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125049,14 +126563,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79193] = 4, + [80290] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1554), 1, + STATE(1570), 1, sym_comment, - ACTIONS(2848), 18, + ACTIONS(2870), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125064,9 +126578,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125075,14 +126589,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79223] = 4, + [80320] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1555), 1, + STATE(1571), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125090,9 +126604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125101,14 +126615,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79253] = 4, + [80350] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1556), 1, + STATE(1572), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125116,9 +126630,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125127,24 +126641,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79283] = 4, + [80380] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1557), 1, + ACTIONS(2874), 1, + anon_sym_SEMI, + STATE(1573), 1, sym_comment, - ACTIONS(2047), 18, + ACTIONS(2872), 17, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125153,14 +126668,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79313] = 4, + [80412] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1558), 1, + STATE(1574), 1, sym_comment, - ACTIONS(2850), 18, + ACTIONS(2872), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125168,9 +126683,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125179,14 +126694,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79343] = 4, + [80442] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1559), 1, + STATE(1575), 1, sym_comment, - ACTIONS(2852), 18, + ACTIONS(2877), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125194,9 +126709,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125205,14 +126720,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79373] = 4, + [80472] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1560), 1, + STATE(1576), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125220,9 +126735,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125231,14 +126746,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79403] = 4, + [80502] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1561), 1, + STATE(1577), 1, sym_comment, - ACTIONS(2854), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125246,35 +126761,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - aux_sym_method_definition_token1, - anon_sym_get, - anon_sym_set, - [79433] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1562), 1, - sym_comment, - ACTIONS(2856), 18, - anon_sym_export, - anon_sym_STAR, - anon_sym_let, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_class, anon_sym_async, - anon_sym_DQUOTE, - anon_sym_SQUOTE, sym_number, sym_identifier, sym_private_property_identifier, @@ -125283,14 +126772,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79463] = 4, + [80532] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1563), 1, + STATE(1578), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125298,9 +126787,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125309,25 +126798,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79493] = 5, + [80562] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2858), 1, - anon_sym_SEMI, - STATE(1564), 1, + STATE(1579), 1, sym_comment, - ACTIONS(2854), 17, + ACTIONS(2879), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125336,14 +126824,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79525] = 4, + [80592] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1565), 1, + STATE(1580), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(2881), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125351,9 +126839,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125362,14 +126850,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79555] = 4, + [80622] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1566), 1, + STATE(1581), 1, sym_comment, - ACTIONS(2844), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125377,9 +126865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125388,55 +126876,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79585] = 6, + [80652] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2863), 1, - anon_sym_AT, - STATE(1595), 1, - sym_decorator, - STATE(1567), 2, + STATE(1582), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(2861), 15, + ACTIONS(1991), 18, anon_sym_export, anon_sym_STAR, + anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_class, - anon_sym_async, + anon_sym_LTtemplate_GT, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79619] = 7, + [80682] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2866), 1, + ACTIONS(2883), 1, anon_sym_LPAREN, - ACTIONS(2868), 1, + ACTIONS(2885), 1, anon_sym_DOT, - STATE(1568), 1, + STATE(1583), 1, sym_comment, - STATE(1641), 1, + STATE(1670), 1, sym_arguments, - ACTIONS(2830), 15, + ACTIONS(2850), 15, anon_sym_export, anon_sym_STAR, anon_sym_let, anon_sym_LBRACK, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125445,14 +126931,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79655] = 4, + [80718] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1569), 1, + STATE(1584), 1, sym_comment, - ACTIONS(2870), 18, + ACTIONS(2860), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125460,9 +126946,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125471,14 +126957,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79685] = 4, + [80748] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1570), 1, + STATE(1585), 1, sym_comment, - ACTIONS(2870), 18, + ACTIONS(2887), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125486,9 +126972,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125497,14 +126983,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79715] = 4, + [80778] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1571), 1, + STATE(1586), 1, sym_comment, - ACTIONS(2870), 18, + ACTIONS(2858), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125512,9 +126998,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125523,14 +127009,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79745] = 4, + [80808] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1572), 1, + STATE(1587), 1, sym_comment, - ACTIONS(2870), 18, + ACTIONS(2858), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125538,9 +127024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125549,14 +127035,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79775] = 4, + [80838] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1573), 1, + STATE(1588), 1, sym_comment, - ACTIONS(2870), 18, + ACTIONS(2049), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125564,9 +127050,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125575,14 +127061,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79805] = 4, + [80868] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1574), 1, + STATE(1589), 1, sym_comment, - ACTIONS(1925), 18, + ACTIONS(2045), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125590,9 +127076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125601,14 +127087,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79835] = 4, + [80898] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1575), 1, + STATE(1590), 1, sym_comment, - ACTIONS(2870), 18, + ACTIONS(2858), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125616,9 +127102,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125627,14 +127113,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79865] = 4, + [80928] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1576), 1, + STATE(1591), 1, sym_comment, - ACTIONS(2872), 18, + ACTIONS(2858), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125642,9 +127128,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125653,14 +127139,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79895] = 4, + [80958] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1577), 1, + STATE(1592), 1, sym_comment, - ACTIONS(939), 18, + ACTIONS(2889), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125668,9 +127154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125679,24 +127165,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79925] = 4, + [80988] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1578), 1, + STATE(1593), 1, sym_comment, - ACTIONS(874), 18, + ACTIONS(2891), 18, anon_sym_export, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_async, + anon_sym_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125705,14 +127191,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79955] = 4, + [81018] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1579), 1, + STATE(1594), 1, sym_comment, - ACTIONS(2874), 18, + ACTIONS(2858), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, @@ -125720,9 +127206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125731,182 +127217,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [79985] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN, - ACTIONS(2876), 1, - anon_sym_STAR, - ACTIONS(2878), 1, - anon_sym_async, - ACTIONS(2880), 1, - anon_sym_get, - ACTIONS(2882), 1, - anon_sym_set, - STATE(1580), 1, - sym_comment, - STATE(2192), 1, - sym__property_name, - ACTIONS(1312), 2, - sym_number, - sym_private_property_identifier, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1352), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [80036] = 14, + [81048] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_STAR, - ACTIONS(2886), 1, - anon_sym_get, - ACTIONS(2888), 1, - anon_sym_set, - STATE(1581), 1, - sym_comment, - STATE(2632), 1, - sym__property_name, - ACTIONS(1312), 2, - sym_number, - sym_private_property_identifier, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1352), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [80085] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1582), 1, + ACTIONS(2895), 1, + anon_sym_AT, + STATE(1637), 1, + sym_decorator, + STATE(1595), 2, sym_comment, - ACTIONS(2856), 17, + aux_sym_export_statement_repeat1, + ACTIONS(2893), 15, anon_sym_export, anon_sym_STAR, anon_sym_let, - anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, - anon_sym_AT, anon_sym_static, aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [80114] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN, - ACTIONS(2890), 1, - anon_sym_STAR, - ACTIONS(2892), 1, - anon_sym_get, - ACTIONS(2894), 1, - anon_sym_set, - STATE(1583), 1, - sym_comment, - STATE(2363), 1, - sym__property_name, - ACTIONS(1312), 2, - sym_number, - sym_private_property_identifier, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1352), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [80163] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN, - ACTIONS(2896), 1, - anon_sym_EQ_GT, - STATE(1584), 1, - sym_comment, - STATE(2246), 1, - sym__property_name, - ACTIONS(1312), 2, - sym_number, - sym_private_property_identifier, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1352), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [80208] = 14, + [81082] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, ACTIONS(2898), 1, anon_sym_STAR, @@ -125914,14 +127264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, ACTIONS(2902), 1, anon_sym_set, - STATE(1585), 1, + STATE(1596), 1, sym_comment, - STATE(2255), 1, + STATE(2534), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 5, @@ -125930,26 +127280,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [80257] = 6, + [81131] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2904), 1, anon_sym_AT, - STATE(1632), 1, + STATE(1646), 1, sym_decorator, - STATE(1586), 2, + STATE(1597), 2, sym_comment, aux_sym_export_statement_repeat1, - ACTIONS(2861), 14, + ACTIONS(2893), 14, anon_sym_export, anon_sym_STAR, anon_sym_let, anon_sym_LBRACK, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -125957,18 +127307,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [80290] = 14, + [81164] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, ACTIONS(2907), 1, anon_sym_STAR, @@ -125976,14 +127326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, ACTIONS(2911), 1, anon_sym_set, - STATE(1587), 1, + STATE(1598), 1, sym_comment, - STATE(2301), 1, + STATE(2677), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 5, @@ -125992,126 +127342,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [80339] = 13, + [81213] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, ACTIONS(2913), 1, - anon_sym_STAR, - STATE(1588), 1, - sym_comment, - STATE(2246), 1, - sym__property_name, - ACTIONS(1312), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2915), 2, - anon_sym_get, - anon_sym_set, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1352), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [80386] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1215), 1, - anon_sym_var, - ACTIONS(1229), 1, - anon_sym_class, - ACTIONS(1231), 1, - anon_sym_async, - ACTIONS(1233), 1, - anon_sym_function, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(2765), 1, - anon_sym_LPAREN, - ACTIONS(2917), 1, - anon_sym_default, - STATE(953), 1, - sym_declaration, - STATE(1589), 1, - sym_comment, - STATE(1873), 1, - aux_sym_export_statement_repeat1, - STATE(2051), 1, - sym_decorator, - ACTIONS(1217), 2, - anon_sym_let, - anon_sym_const, - STATE(923), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [80437] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN, - ACTIONS(2798), 1, - anon_sym_STAR, - STATE(1590), 1, + anon_sym_EQ_GT, + STATE(1599), 1, sym_comment, - STATE(2154), 1, + STATE(2228), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2800), 2, - anon_sym_get, - anon_sym_set, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 5, + ACTIONS(1352), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [80484] = 4, + anon_sym_get, + anon_sym_set, + [81258] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1591), 1, + STATE(1600), 1, sym_comment, - ACTIONS(2830), 16, + ACTIONS(2891), 17, anon_sym_export, anon_sym_STAR, anon_sym_let, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_class, - anon_sym_async, + anon_sym_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -126120,243 +127400,237 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [80512] = 11, + [81287] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1592), 1, + ACTIONS(2915), 1, + anon_sym_STAR, + STATE(1601), 1, sym_comment, - STATE(2359), 1, + STATE(2228), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + ACTIONS(2917), 2, + anon_sym_get, + anon_sym_set, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 7, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [80554] = 14, + [81334] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(1271), 1, + ACTIONS(1215), 1, anon_sym_var, - ACTIONS(1277), 1, + ACTIONS(1229), 1, anon_sym_class, - ACTIONS(1279), 1, + ACTIONS(1231), 1, anon_sym_async, - ACTIONS(1281), 1, + ACTIONS(1233), 1, anon_sym_function, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(2785), 1, + anon_sym_LPAREN, ACTIONS(2919), 1, anon_sym_default, - STATE(817), 1, + STATE(962), 1, sym_declaration, - STATE(1593), 1, + STATE(1602), 1, sym_comment, - STATE(1997), 1, + STATE(1963), 1, aux_sym_export_statement_repeat1, - STATE(2051), 1, + STATE(2178), 1, sym_decorator, - ACTIONS(1273), 2, + ACTIONS(1217), 2, anon_sym_let, anon_sym_const, - STATE(685), 5, + STATE(946), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [80602] = 11, + [81385] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1594), 1, + ACTIONS(2921), 1, + anon_sym_STAR, + ACTIONS(2923), 1, + anon_sym_get, + ACTIONS(2925), 1, + anon_sym_set, + STATE(1603), 1, sym_comment, - STATE(2458), 1, + STATE(2310), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 7, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [80644] = 4, + [81434] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1595), 1, - sym_comment, - ACTIONS(2921), 16, - anon_sym_export, - anon_sym_STAR, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_class, - anon_sym_async, + ACTIONS(1316), 1, anon_sym_DQUOTE, + ACTIONS(1318), 1, anon_sym_SQUOTE, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2767), 1, + anon_sym_LPAREN, + ACTIONS(2844), 1, + anon_sym_STAR, + STATE(1604), 1, + sym_comment, + STATE(2657), 1, + sym__property_name, + ACTIONS(1326), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - aux_sym_method_definition_token1, + ACTIONS(2846), 2, anon_sym_get, anon_sym_set, - [80672] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(1251), 1, - anon_sym_var, - ACTIONS(1259), 1, - anon_sym_class, - ACTIONS(1261), 1, - anon_sym_async, - ACTIONS(1263), 1, - anon_sym_function, - ACTIONS(2923), 1, - anon_sym_default, - STATE(742), 1, - sym_declaration, - STATE(1596), 1, - sym_comment, - STATE(2000), 1, - aux_sym_export_statement_repeat1, - STATE(2051), 1, - sym_decorator, - ACTIONS(1253), 2, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 5, + anon_sym_export, anon_sym_let, - anon_sym_const, - STATE(858), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [80720] = 11, + anon_sym_async, + sym_identifier, + anon_sym_static, + [81481] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1597), 1, + ACTIONS(2927), 1, + anon_sym_STAR, + ACTIONS(2929), 1, + anon_sym_async, + ACTIONS(2931), 1, + anon_sym_get, + ACTIONS(2933), 1, + anon_sym_set, + STATE(1605), 1, sym_comment, - STATE(2475), 1, + STATE(2348), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 7, + ACTIONS(1352), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [80762] = 11, + [81532] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1598), 1, + ACTIONS(2935), 1, + anon_sym_STAR, + ACTIONS(2937), 1, + anon_sym_get, + ACTIONS(2939), 1, + anon_sym_set, + STATE(1606), 1, sym_comment, - STATE(2638), 1, + STATE(2561), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 7, + ACTIONS(1352), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [80804] = 11, + [81581] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1599), 1, + STATE(1607), 1, sym_comment, - STATE(2353), 1, + STATE(2560), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126367,100 +127641,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [80846] = 14, + [81623] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2925), 1, - anon_sym_STAR, - ACTIONS(2927), 1, - anon_sym_async, - ACTIONS(2929), 1, - anon_sym_get, - ACTIONS(2931), 1, - anon_sym_set, - STATE(1600), 1, + ACTIONS(2767), 1, + anon_sym_LPAREN, + STATE(1608), 1, sym_comment, - STATE(2615), 1, + STATE(2683), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 4, + ACTIONS(1352), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [80894] = 14, + anon_sym_get, + anon_sym_set, + [81665] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2933), 1, - anon_sym_STAR, - ACTIONS(2935), 1, - anon_sym_async, - ACTIONS(2937), 1, - anon_sym_get, - ACTIONS(2939), 1, - anon_sym_set, - STATE(1601), 1, + ACTIONS(2767), 1, + anon_sym_LPAREN, + STATE(1609), 1, sym_comment, - STATE(2262), 1, + STATE(2384), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 4, + ACTIONS(1352), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [80942] = 13, + anon_sym_get, + anon_sym_set, + [81707] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(1357), 1, - anon_sym_async, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2743), 1, + ACTIONS(2777), 1, anon_sym_STAR, - STATE(1602), 1, + ACTIONS(2941), 1, + anon_sym_async, + STATE(1610), 1, sym_comment, - STATE(2223), 1, + STATE(2646), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(1359), 2, + ACTIONS(2836), 2, anon_sym_get, anon_sym_set, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 4, @@ -126468,27 +127736,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, sym_identifier, anon_sym_static, - [80988] = 11, + [81753] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(1338), 1, + anon_sym_var, + ACTIONS(1344), 1, + anon_sym_class, + ACTIONS(1346), 1, + anon_sym_async, + ACTIONS(1348), 1, + anon_sym_function, + ACTIONS(2943), 1, + anon_sym_default, + STATE(810), 1, + sym_declaration, + STATE(1611), 1, + sym_comment, + STATE(1940), 1, + aux_sym_export_statement_repeat1, + STATE(2178), 1, + sym_decorator, + ACTIONS(1340), 2, + anon_sym_let, + anon_sym_const, + STATE(849), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [81801] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1603), 1, + STATE(1612), 1, sym_comment, - STATE(2623), 1, + STATE(2361), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126499,58 +127801,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81030] = 11, + [81843] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1613), 1, + sym_comment, + ACTIONS(2850), 16, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + aux_sym_method_definition_token1, + anon_sym_get, + anon_sym_set, + [81871] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN, - STATE(1604), 1, + ACTIONS(2945), 1, + anon_sym_STAR, + ACTIONS(2947), 1, + anon_sym_async, + ACTIONS(2949), 1, + anon_sym_get, + ACTIONS(2951), 1, + anon_sym_set, + STATE(1614), 1, sym_comment, - STATE(2246), 1, + STATE(2353), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 7, + ACTIONS(1352), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [81919] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1615), 1, + sym_comment, + ACTIONS(2953), 16, anon_sym_export, + anon_sym_STAR, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, anon_sym_async, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [81072] = 11, + [81947] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1605), 1, + STATE(1616), 1, sym_comment, - STATE(2360), 1, + STATE(2522), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126561,27 +127914,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81114] = 11, + [81989] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1606), 1, + STATE(1617), 1, sym_comment, - STATE(2364), 1, + STATE(2559), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126592,58 +127945,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81156] = 11, + [82031] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN, - STATE(1607), 1, + ACTIONS(2763), 1, + anon_sym_STAR, + STATE(1618), 1, sym_comment, - STATE(2365), 1, + STATE(2546), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + ACTIONS(1359), 2, + anon_sym_get, + anon_sym_set, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 7, + ACTIONS(1352), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [81198] = 11, + [82077] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(1251), 1, + anon_sym_var, + ACTIONS(1259), 1, + anon_sym_class, + ACTIONS(1261), 1, + anon_sym_async, + ACTIONS(1263), 1, + anon_sym_function, + ACTIONS(2955), 1, + anon_sym_default, + STATE(1619), 1, + sym_comment, + STATE(2026), 1, + aux_sym_export_statement_repeat1, + STATE(2178), 1, + sym_decorator, + STATE(2624), 1, + sym_declaration, + ACTIONS(1253), 2, + anon_sym_let, + anon_sym_const, + STATE(2242), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [82125] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1608), 1, + STATE(1620), 1, sym_comment, - STATE(2639), 1, + STATE(2657), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126654,27 +128043,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81240] = 11, + [82167] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1609), 1, + STATE(1621), 1, sym_comment, - STATE(2372), 1, + STATE(2228), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126685,61 +128074,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81282] = 14, + [82209] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1215), 1, - anon_sym_var, - ACTIONS(1229), 1, + STATE(1622), 1, + sym_comment, + ACTIONS(2065), 16, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_class, - ACTIONS(1231), 1, anon_sym_async, - ACTIONS(1233), 1, - anon_sym_function, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1241), 1, + sym_number, + sym_identifier, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(2917), 1, - anon_sym_default, - STATE(953), 1, - sym_declaration, - STATE(1610), 1, - sym_comment, - STATE(1873), 1, - aux_sym_export_statement_repeat1, - STATE(2051), 1, - sym_decorator, - ACTIONS(1217), 2, - anon_sym_let, - anon_sym_const, - STATE(923), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [81330] = 11, + anon_sym_static, + aux_sym_method_definition_token1, + anon_sym_get, + anon_sym_set, + [82237] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1611), 1, + STATE(1623), 1, sym_comment, - STATE(2472), 1, + STATE(2523), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126750,27 +128129,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81372] = 11, + [82279] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1612), 1, + STATE(1624), 1, sym_comment, - STATE(2373), 1, + STATE(2575), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126781,22 +128160,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81414] = 4, + [82321] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1613), 1, + STATE(1625), 1, sym_comment, - ACTIONS(2101), 16, + ACTIONS(2147), 16, anon_sym_export, anon_sym_STAR, anon_sym_let, anon_sym_LBRACK, - anon_sym_class, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -126805,27 +128184,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [81442] = 11, + [82349] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1614), 1, + STATE(1626), 1, sym_comment, - STATE(2154), 1, + STATE(2332), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126836,27 +128215,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81484] = 11, + [82391] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2957), 1, + anon_sym_STAR, + ACTIONS(2959), 1, + anon_sym_async, + ACTIONS(2961), 1, + anon_sym_get, + ACTIONS(2963), 1, + anon_sym_set, + STATE(1627), 1, + sym_comment, + STATE(2660), 1, + sym__property_name, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [82439] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1615), 1, + STATE(1628), 1, sym_comment, - STATE(2634), 1, + STATE(2687), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126867,27 +128280,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81526] = 11, + [82481] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1616), 1, + STATE(1629), 1, sym_comment, - STATE(2626), 1, + STATE(2671), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126898,60 +128311,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81568] = 13, + [82523] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2757), 1, - anon_sym_STAR, - ACTIONS(2941), 1, - anon_sym_async, - STATE(1617), 1, + ACTIONS(2767), 1, + anon_sym_LPAREN, + STATE(1630), 1, sym_comment, - STATE(2601), 1, + STATE(2580), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - ACTIONS(2804), 2, - anon_sym_get, - anon_sym_set, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, - ACTIONS(1352), 4, + ACTIONS(1352), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [81614] = 11, + anon_sym_get, + anon_sym_set, + [82565] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1618), 1, + STATE(1631), 1, sym_comment, - STATE(2462), 1, + STATE(2686), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126962,27 +128373,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81656] = 11, + [82607] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1619), 1, + STATE(1632), 1, sym_comment, - STATE(2625), 1, + STATE(2678), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -126993,61 +128404,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81698] = 14, + [82649] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(1338), 1, + ACTIONS(1285), 1, anon_sym_var, - ACTIONS(1344), 1, + ACTIONS(1291), 1, anon_sym_class, - ACTIONS(1346), 1, + ACTIONS(1293), 1, anon_sym_async, - ACTIONS(1348), 1, + ACTIONS(1295), 1, anon_sym_function, - ACTIONS(2943), 1, + ACTIONS(2965), 1, anon_sym_default, - STATE(563), 1, + STATE(589), 1, sym_declaration, - STATE(1620), 1, + STATE(1633), 1, sym_comment, - STATE(2004), 1, + STATE(1959), 1, aux_sym_export_statement_repeat1, - STATE(2051), 1, + STATE(2178), 1, sym_decorator, - ACTIONS(1340), 2, + ACTIONS(1287), 2, anon_sym_let, anon_sym_const, - STATE(654), 5, + STATE(538), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [81746] = 11, + [82697] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1621), 1, + STATE(1634), 1, sym_comment, - STATE(2633), 1, + STATE(2289), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127058,27 +128469,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81788] = 11, + [82739] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1622), 1, + STATE(1635), 1, sym_comment, - STATE(2641), 1, + STATE(2327), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127089,87 +128500,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [81830] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [82781] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN, - STATE(1623), 1, - sym_comment, - STATE(2268), 1, - sym__property_name, - ACTIONS(1312), 2, - sym_number, - sym_private_property_identifier, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1352), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(1215), 1, + anon_sym_var, + ACTIONS(1229), 1, + anon_sym_class, + ACTIONS(1231), 1, anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [81872] = 14, - ACTIONS(5), 1, - sym_html_comment, + ACTIONS(1233), 1, + anon_sym_function, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(1320), 1, - anon_sym_var, - ACTIONS(1326), 1, - anon_sym_class, - ACTIONS(1328), 1, - anon_sym_async, - ACTIONS(1330), 1, - anon_sym_function, - ACTIONS(2945), 1, + ACTIONS(2919), 1, anon_sym_default, - STATE(1624), 1, + STATE(962), 1, + sym_declaration, + STATE(1636), 1, sym_comment, - STATE(1990), 1, + STATE(1963), 1, aux_sym_export_statement_repeat1, - STATE(2051), 1, + STATE(2178), 1, sym_decorator, - STATE(2679), 1, - sym_declaration, - ACTIONS(1322), 2, + ACTIONS(1217), 2, anon_sym_let, anon_sym_const, - STATE(2540), 5, + STATE(946), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [81920] = 4, + [82829] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1625), 1, + STATE(1637), 1, sym_comment, - ACTIONS(2947), 16, + ACTIONS(2967), 16, anon_sym_export, anon_sym_STAR, anon_sym_let, anon_sym_LBRACK, - anon_sym_class, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -127178,51 +128558,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [81948] = 4, + [82857] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1626), 1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2767), 1, + anon_sym_LPAREN, + STATE(1638), 1, sym_comment, - ACTIONS(2121), 16, + STATE(2679), 1, + sym__property_name, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 7, anon_sym_export, - anon_sym_STAR, anon_sym_let, - anon_sym_LBRACK, - anon_sym_class, anon_sym_async, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [81976] = 11, + [82899] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1627), 1, + STATE(1639), 1, sym_comment, - STATE(2642), 1, + STATE(2684), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127233,27 +128620,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82018] = 11, + [82941] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2767), 1, anon_sym_LPAREN, - STATE(1628), 1, + STATE(1640), 1, sym_comment, - STATE(2267), 1, + STATE(2571), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127264,72 +128651,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82060] = 4, + [82983] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1629), 1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2767), 1, + anon_sym_LPAREN, + STATE(1641), 1, sym_comment, - ACTIONS(2131), 16, + STATE(2290), 1, + sym__property_name, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 7, anon_sym_export, - anon_sym_STAR, anon_sym_let, - anon_sym_LBRACK, - anon_sym_class, anon_sym_async, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [82088] = 4, + [83025] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(1269), 1, + anon_sym_var, + ACTIONS(1275), 1, + anon_sym_class, + ACTIONS(1277), 1, + anon_sym_async, + ACTIONS(1279), 1, + anon_sym_function, + ACTIONS(2969), 1, + anon_sym_default, + STATE(751), 1, + sym_declaration, + STATE(1642), 1, + sym_comment, + STATE(1918), 1, + aux_sym_export_statement_repeat1, + STATE(2178), 1, + sym_decorator, + ACTIONS(1271), 2, + anon_sym_let, + anon_sym_const, + STATE(734), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [83073] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1630), 1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, + anon_sym_LBRACK, + ACTIONS(2767), 1, + anon_sym_LPAREN, + STATE(1643), 1, sym_comment, - ACTIONS(2131), 15, + STATE(2668), 1, + sym__property_name, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 7, anon_sym_export, - anon_sym_STAR, anon_sym_let, - anon_sym_LBRACK, anon_sym_async, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [82115] = 10, + [83115] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1631), 1, + ACTIONS(2767), 1, + anon_sym_LPAREN, + STATE(1644), 1, sym_comment, - STATE(2624), 1, + STATE(2670), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127340,21 +128778,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82154] = 4, + [83157] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1632), 1, + STATE(1645), 1, sym_comment, - ACTIONS(2921), 15, + ACTIONS(2137), 16, anon_sym_export, anon_sym_STAR, anon_sym_let, anon_sym_LBRACK, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -127363,50 +128802,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [82181] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - STATE(1633), 1, - sym_comment, - STATE(2457), 1, - sym__property_name, - ACTIONS(1312), 2, - sym_number, - sym_private_property_identifier, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1352), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [82220] = 4, + [83185] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1634), 1, + STATE(1646), 1, sym_comment, - ACTIONS(2101), 15, + ACTIONS(2967), 15, anon_sym_export, anon_sym_STAR, anon_sym_let, anon_sym_LBRACK, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -127415,25 +128825,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [82247] = 10, + [83212] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1635), 1, + STATE(1647), 1, sym_comment, - STATE(2223), 1, + STATE(2657), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127444,25 +128854,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82286] = 10, + [83251] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1636), 1, + STATE(1648), 1, sym_comment, - STATE(2601), 1, + STATE(2682), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127473,48 +128883,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82325] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1637), 1, - sym_comment, - ACTIONS(2949), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [82352] = 10, + [83290] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1638), 1, + STATE(1649), 1, sym_comment, - STATE(2631), 1, + STATE(2685), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127525,25 +128912,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82391] = 10, + [83329] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + STATE(1650), 1, + sym_comment, + ACTIONS(2850), 15, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + anon_sym_async, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + aux_sym_method_definition_token1, + anon_sym_get, + anon_sym_set, + [83356] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1639), 1, + STATE(1651), 1, sym_comment, - STATE(2627), 1, + STATE(2291), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127554,14 +128964,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82430] = 4, + [83395] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1640), 1, + STATE(1652), 1, + sym_comment, + ACTIONS(2971), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [83422] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1653), 1, sym_comment, - ACTIONS(2951), 15, + ACTIONS(2973), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127577,48 +129010,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [82457] = 4, + [83449] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1641), 1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, + anon_sym_LBRACK, + STATE(1654), 1, sym_comment, - ACTIONS(2947), 15, + STATE(2546), 1, + sym__property_name, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 7, anon_sym_export, - anon_sym_STAR, anon_sym_let, - anon_sym_LBRACK, anon_sym_async, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [82484] = 10, + [83488] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1642), 1, + STATE(1655), 1, sym_comment, - STATE(2623), 1, + STATE(2580), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127629,14 +129068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82523] = 4, + [83527] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1643), 1, + STATE(1656), 1, sym_comment, - ACTIONS(2953), 15, + ACTIONS(2975), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127652,25 +129091,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [82550] = 10, + [83554] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1644), 1, + STATE(1657), 1, sym_comment, - STATE(2353), 1, + STATE(2228), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127681,21 +129120,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82589] = 4, + [83593] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1645), 1, + STATE(1658), 1, sym_comment, - ACTIONS(2121), 15, + ACTIONS(2065), 15, anon_sym_export, anon_sym_STAR, anon_sym_let, anon_sym_LBRACK, - anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, sym_number, sym_identifier, sym_private_property_identifier, @@ -127704,48 +129143,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [82616] = 4, + [83620] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1646), 1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, + anon_sym_LBRACK, + STATE(1659), 1, sym_comment, - ACTIONS(2830), 15, + STATE(2333), 1, + sym__property_name, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 7, anon_sym_export, - anon_sym_STAR, anon_sym_let, - anon_sym_LBRACK, anon_sym_async, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [82643] = 10, + [83659] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1647), 1, + STATE(1660), 1, sym_comment, - STATE(2254), 1, + STATE(2668), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127756,25 +129201,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82682] = 10, + [83698] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1648), 1, + STATE(1661), 1, sym_comment, - STATE(2640), 1, + STATE(2576), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127785,48 +129230,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82721] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1649), 1, - sym_comment, - ACTIONS(2955), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [82748] = 10, + [83737] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1650), 1, + STATE(1662), 1, sym_comment, - STATE(2246), 1, + STATE(2669), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127837,25 +129259,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82787] = 10, + [83776] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1663), 1, sym_comment, - STATE(2355), 1, + STATE(2658), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127866,25 +129288,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82826] = 10, + [83815] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1652), 1, + STATE(1664), 1, sym_comment, - STATE(2154), 1, + STATE(2552), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127895,14 +129317,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82865] = 4, + [83854] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1665), 1, + sym_comment, + ACTIONS(2137), 15, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + aux_sym_method_definition_token1, + anon_sym_get, + anon_sym_set, + [83881] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1653), 1, + STATE(1666), 1, sym_comment, - ACTIONS(2957), 15, + ACTIONS(2977), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127918,25 +129363,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [82892] = 10, + [83908] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + STATE(1667), 1, + sym_comment, + ACTIONS(2147), 15, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + anon_sym_async, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + aux_sym_method_definition_token1, + anon_sym_get, + anon_sym_set, + [83935] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1654), 1, + STATE(1668), 1, sym_comment, - STATE(2468), 1, + STATE(2268), 1, + sym__property_name, + ACTIONS(1326), 2, + sym_number, + sym_private_property_identifier, + STATE(2582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [83974] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(2731), 1, + anon_sym_LBRACK, + STATE(1669), 1, + sym_comment, + STATE(2567), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -127947,54 +129444,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [82931] = 10, + [84013] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(2727), 1, - anon_sym_LBRACK, - STATE(1655), 1, + STATE(1670), 1, sym_comment, - STATE(2637), 1, - sym__property_name, - ACTIONS(1312), 2, - sym_number, - sym_private_property_identifier, - STATE(2554), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1352), 7, + ACTIONS(2953), 15, anon_sym_export, + anon_sym_STAR, anon_sym_let, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [82970] = 10, + [84040] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1671), 1, sym_comment, - STATE(2362), 1, + STATE(2676), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -128005,25 +129496,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [83009] = 10, + [84079] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1657), 1, + STATE(1672), 1, sym_comment, - STATE(2613), 1, + STATE(2646), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -128034,25 +129525,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [83048] = 10, + [84118] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(2727), 1, + ACTIONS(2731), 1, anon_sym_LBRACK, - STATE(1658), 1, + STATE(1673), 1, sym_comment, - STATE(2370), 1, + STATE(2672), 1, sym__property_name, - ACTIONS(1312), 2, + ACTIONS(1326), 2, sym_number, sym_private_property_identifier, - STATE(2554), 2, + STATE(2582), 2, sym_string, sym_computed_property_name, ACTIONS(1352), 7, @@ -128063,1464 +129554,1500 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [83087] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [84157] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2622), 1, - anon_sym_DQUOTE, - ACTIONS(2624), 1, - anon_sym_SQUOTE, - ACTIONS(2959), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_STAR, - ACTIONS(2963), 1, - anon_sym_LBRACE, - STATE(1659), 1, - sym_comment, - STATE(2319), 1, - sym_string, - STATE(2659), 1, - sym_import_clause, - STATE(2686), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(2965), 4, - anon_sym_LPAREN, - anon_sym_DOT, - sym_optional_chain, - anon_sym_BQUOTE, - [83128] = 12, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2622), 1, - anon_sym_DQUOTE, - ACTIONS(2624), 1, - anon_sym_SQUOTE, - ACTIONS(2959), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_STAR, - ACTIONS(2963), 1, - anon_sym_LBRACE, - STATE(1660), 1, + STATE(1674), 1, sym_comment, - STATE(2432), 1, - sym_string, - STATE(2499), 1, - sym_import_clause, - STATE(2686), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(2965), 4, - anon_sym_LPAREN, - anon_sym_DOT, - sym_optional_chain, - anon_sym_BQUOTE, - [83169] = 12, + ACTIONS(2979), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [84184] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2959), 1, + ACTIONS(2981), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2983), 1, anon_sym_STAR, - ACTIONS(2963), 1, + ACTIONS(2985), 1, anon_sym_LBRACE, - STATE(1661), 1, + STATE(1675), 1, sym_comment, - STATE(2201), 1, + STATE(1960), 1, sym_string, - STATE(2661), 1, + STATE(2568), 1, sym_import_clause, - STATE(2686), 2, + STATE(2765), 2, sym_namespace_import, sym_named_imports, - ACTIONS(2965), 4, + ACTIONS(2987), 4, anon_sym_LPAREN, anon_sym_DOT, sym_optional_chain, anon_sym_BQUOTE, - [83210] = 12, + [84225] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2959), 1, + ACTIONS(2981), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2983), 1, anon_sym_STAR, - ACTIONS(2963), 1, + ACTIONS(2985), 1, anon_sym_LBRACE, - STATE(1662), 1, + STATE(1676), 1, sym_comment, - STATE(2187), 1, + STATE(1905), 1, sym_string, - STATE(2586), 1, + STATE(2569), 1, sym_import_clause, - STATE(2686), 2, + STATE(2765), 2, sym_namespace_import, sym_named_imports, - ACTIONS(2965), 4, + ACTIONS(2987), 4, anon_sym_LPAREN, anon_sym_DOT, sym_optional_chain, anon_sym_BQUOTE, - [83251] = 12, + [84266] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2622), 1, + ACTIONS(2628), 1, anon_sym_DQUOTE, - ACTIONS(2624), 1, + ACTIONS(2630), 1, anon_sym_SQUOTE, - ACTIONS(2959), 1, + ACTIONS(2981), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2983), 1, anon_sym_STAR, - ACTIONS(2963), 1, + ACTIONS(2985), 1, anon_sym_LBRACE, - STATE(1663), 1, + STATE(1677), 1, sym_comment, - STATE(2545), 1, + STATE(1907), 1, sym_string, - STATE(2547), 1, + STATE(2706), 1, sym_import_clause, - STATE(2686), 2, + STATE(2765), 2, sym_namespace_import, sym_named_imports, - ACTIONS(2965), 4, + ACTIONS(2987), 4, anon_sym_LPAREN, anon_sym_DOT, sym_optional_chain, anon_sym_BQUOTE, - [83292] = 11, + [84307] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2967), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(2993), 1, + sym_html_character_reference, + ACTIONS(2995), 1, anon_sym_LT, - ACTIONS(2973), 1, + ACTIONS(2997), 1, anon_sym_LT_SLASH, - STATE(1664), 1, + STATE(1312), 1, + sym_jsx_closing_element, + STATE(1678), 1, sym_comment, - STATE(1671), 1, - sym_jsx_opening_element, - STATE(1675), 1, + STATE(1680), 1, aux_sym_jsx_element_repeat1, - STATE(1854), 1, - sym_jsx_closing_element, - ACTIONS(2969), 2, + STATE(1681), 1, + sym_jsx_opening_element, + ACTIONS(2991), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1859), 4, + STATE(1767), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [83330] = 11, + [84348] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2967), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(2993), 1, + sym_html_character_reference, + ACTIONS(2995), 1, anon_sym_LT, - ACTIONS(2973), 1, + ACTIONS(2999), 1, anon_sym_LT_SLASH, - STATE(1664), 1, - aux_sym_jsx_element_repeat1, - STATE(1665), 1, + STATE(1137), 1, + sym_jsx_closing_element, + STATE(1679), 1, sym_comment, - STATE(1671), 1, + STATE(1681), 1, sym_jsx_opening_element, - STATE(1800), 1, - sym_jsx_closing_element, - ACTIONS(2969), 2, + STATE(1686), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(2991), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1859), 4, + STATE(1767), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [83368] = 11, + [84389] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2967), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(2993), 1, + sym_html_character_reference, + ACTIONS(2995), 1, anon_sym_LT, - ACTIONS(2975), 1, + ACTIONS(2997), 1, anon_sym_LT_SLASH, - STATE(1088), 1, + STATE(1283), 1, sym_jsx_closing_element, - STATE(1666), 1, + STATE(1680), 1, sym_comment, - STATE(1671), 1, + STATE(1681), 1, sym_jsx_opening_element, - STATE(1675), 1, + STATE(1688), 1, aux_sym_jsx_element_repeat1, - ACTIONS(2969), 2, + ACTIONS(2991), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1859), 4, + STATE(1767), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [83406] = 11, + [84430] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2967), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(2993), 1, + sym_html_character_reference, + ACTIONS(2995), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3001), 1, anon_sym_LT_SLASH, - STATE(1364), 1, - sym_jsx_closing_element, - STATE(1667), 1, - sym_comment, - STATE(1671), 1, - sym_jsx_opening_element, - STATE(1675), 1, + STATE(1687), 1, aux_sym_jsx_element_repeat1, - ACTIONS(2969), 2, + STATE(1810), 1, + sym_jsx_closing_element, + ACTIONS(2991), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1859), 4, + STATE(1681), 2, + sym_jsx_opening_element, + sym_comment, + STATE(1767), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [83444] = 11, + [84469] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2967), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(2993), 1, + sym_html_character_reference, + ACTIONS(2995), 1, anon_sym_LT, - ACTIONS(2979), 1, + ACTIONS(3003), 1, anon_sym_LT_SLASH, - STATE(1668), 1, - sym_comment, - STATE(1671), 1, + STATE(1681), 1, sym_jsx_opening_element, - STATE(1675), 1, + STATE(1682), 1, + sym_comment, + STATE(1688), 1, aux_sym_jsx_element_repeat1, - STATE(1815), 1, + STATE(1891), 1, sym_jsx_closing_element, - ACTIONS(2969), 2, + ACTIONS(2991), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1859), 4, + STATE(1767), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [83482] = 11, + [84510] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2967), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(2993), 1, + sym_html_character_reference, + ACTIONS(2995), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3003), 1, anon_sym_LT_SLASH, - STATE(1268), 1, - sym_jsx_closing_element, - STATE(1667), 1, + STATE(1681), 1, + sym_jsx_opening_element, + STATE(1682), 1, aux_sym_jsx_element_repeat1, - STATE(1669), 1, + STATE(1683), 1, sym_comment, - STATE(1671), 1, - sym_jsx_opening_element, - ACTIONS(2969), 2, + STATE(1852), 1, + sym_jsx_closing_element, + ACTIONS(2991), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1859), 4, + STATE(1767), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [83520] = 11, + [84551] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2628), 1, + anon_sym_DQUOTE, + ACTIONS(2630), 1, + anon_sym_SQUOTE, + ACTIONS(2981), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + anon_sym_LBRACE, + STATE(1684), 1, + sym_comment, + STATE(1893), 1, + sym_string, + STATE(2631), 1, + sym_import_clause, + STATE(2765), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(2987), 4, + anon_sym_LPAREN, + anon_sym_DOT, + sym_optional_chain, + anon_sym_BQUOTE, + [84592] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2628), 1, + anon_sym_DQUOTE, + ACTIONS(2630), 1, + anon_sym_SQUOTE, + ACTIONS(2981), 1, + sym_identifier, + ACTIONS(2983), 1, + anon_sym_STAR, + ACTIONS(2985), 1, + anon_sym_LBRACE, + STATE(1685), 1, + sym_comment, + STATE(1978), 1, + sym_string, + STATE(2701), 1, + sym_import_clause, + STATE(2765), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(2987), 4, + anon_sym_LPAREN, + anon_sym_DOT, + sym_optional_chain, + anon_sym_BQUOTE, + [84633] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2967), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(2993), 1, + sym_html_character_reference, + ACTIONS(2995), 1, anon_sym_LT, - ACTIONS(2975), 1, + ACTIONS(2999), 1, anon_sym_LT_SLASH, - STATE(1129), 1, + STATE(1116), 1, sym_jsx_closing_element, - STATE(1666), 1, - aux_sym_jsx_element_repeat1, - STATE(1670), 1, - sym_comment, - STATE(1671), 1, + STATE(1681), 1, sym_jsx_opening_element, - ACTIONS(2969), 2, + STATE(1686), 1, + sym_comment, + STATE(1688), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(2991), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1859), 4, + STATE(1767), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [83558] = 10, + [84674] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2967), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(2993), 1, + sym_html_character_reference, + ACTIONS(2995), 1, anon_sym_LT, - ACTIONS(2979), 1, + ACTIONS(3001), 1, anon_sym_LT_SLASH, - STATE(1668), 1, + STATE(1681), 1, + sym_jsx_opening_element, + STATE(1687), 1, + sym_comment, + STATE(1688), 1, aux_sym_jsx_element_repeat1, - STATE(1847), 1, + STATE(1797), 1, sym_jsx_closing_element, - ACTIONS(2969), 2, + ACTIONS(2991), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1671), 2, + STATE(1767), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [84715] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3005), 1, + anon_sym_LBRACE, + ACTIONS(3011), 1, + sym_html_character_reference, + ACTIONS(3014), 1, + anon_sym_LT, + ACTIONS(3017), 1, + anon_sym_LT_SLASH, + STATE(1681), 1, sym_jsx_opening_element, + ACTIONS(3008), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(1688), 2, sym_comment, - STATE(1859), 4, + aux_sym_jsx_element_repeat1, + STATE(1767), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [83594] = 12, + [84751] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, + ACTIONS(3023), 1, anon_sym_COLON, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2989), 1, + ACTIONS(3027), 1, anon_sym_DOT, - ACTIONS(2991), 1, + ACTIONS(3029), 1, anon_sym_SLASH_GT, - STATE(1672), 1, + STATE(1689), 1, sym_comment, - STATE(1703), 1, + STATE(1716), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [83633] = 12, + [84790] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, + ACTIONS(3023), 1, anon_sym_COLON, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2989), 1, + ACTIONS(3027), 1, anon_sym_DOT, - ACTIONS(2993), 1, + ACTIONS(3031), 1, anon_sym_SLASH_GT, - STATE(1673), 1, + STATE(1690), 1, sym_comment, - STATE(1696), 1, + STATE(1703), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [83672] = 12, + [84829] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, + ACTIONS(3023), 1, anon_sym_COLON, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2989), 1, + ACTIONS(3027), 1, anon_sym_DOT, - ACTIONS(2995), 1, + ACTIONS(3033), 1, anon_sym_SLASH_GT, - STATE(1674), 1, - sym_comment, STATE(1691), 1, + sym_comment, + STATE(1712), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [83711] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2997), 1, - anon_sym_LBRACE, - ACTIONS(3003), 1, - anon_sym_LT, - ACTIONS(3006), 1, - anon_sym_LT_SLASH, - STATE(1671), 1, - sym_jsx_opening_element, - ACTIONS(3000), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(1675), 2, - sym_comment, - aux_sym_jsx_element_repeat1, - STATE(1859), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [83744] = 12, + [84868] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, + ACTIONS(3023), 1, anon_sym_COLON, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2989), 1, + ACTIONS(3027), 1, anon_sym_DOT, - ACTIONS(3008), 1, + ACTIONS(3035), 1, anon_sym_SLASH_GT, - STATE(1676), 1, + STATE(1692), 1, sym_comment, - STATE(1694), 1, + STATE(1722), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [83783] = 11, + [84907] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2987), 1, + ACTIONS(3023), 1, + anon_sym_COLON, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2989), 1, - anon_sym_DOT, - ACTIONS(2993), 1, + ACTIONS(3033), 1, anon_sym_SLASH_GT, - STATE(1677), 1, + STATE(1693), 1, sym_comment, - STATE(1686), 1, + STATE(1713), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [83819] = 11, + [84943] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, - anon_sym_COLON, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2991), 1, + ACTIONS(3027), 1, + anon_sym_DOT, + ACTIONS(3035), 1, anon_sym_SLASH_GT, - STATE(1678), 1, + STATE(1694), 1, sym_comment, - STATE(1697), 1, + STATE(1714), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [83855] = 11, + [84979] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, + ACTIONS(3023), 1, anon_sym_COLON, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(3008), 1, + ACTIONS(3031), 1, anon_sym_SLASH_GT, - STATE(1679), 1, + STATE(1695), 1, sym_comment, - STATE(1699), 1, + STATE(1702), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [83891] = 11, + [85015] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, + ACTIONS(3023), 1, anon_sym_COLON, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2993), 1, + ACTIONS(3035), 1, anon_sym_SLASH_GT, - STATE(1680), 1, + STATE(1696), 1, sym_comment, - STATE(1690), 1, + STATE(1704), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [83927] = 11, + [85051] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2989), 1, + ACTIONS(3027), 1, anon_sym_DOT, - ACTIONS(3008), 1, + ACTIONS(3033), 1, anon_sym_SLASH_GT, - STATE(1681), 1, + STATE(1697), 1, sym_comment, - STATE(1692), 1, + STATE(1711), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [83963] = 11, + [85087] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2989), 1, + ACTIONS(3027), 1, anon_sym_DOT, - ACTIONS(2995), 1, + ACTIONS(3029), 1, anon_sym_SLASH_GT, - STATE(1682), 1, + STATE(1698), 1, sym_comment, - STATE(1705), 1, + STATE(1718), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [83999] = 11, + [85123] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, + ACTIONS(3023), 1, anon_sym_COLON, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2995), 1, + ACTIONS(3029), 1, anon_sym_SLASH_GT, - STATE(1683), 1, + STATE(1699), 1, sym_comment, - STATE(1687), 1, + STATE(1715), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84035] = 11, + [85159] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2989), 1, + ACTIONS(3027), 1, anon_sym_DOT, - ACTIONS(2991), 1, + ACTIONS(3031), 1, anon_sym_SLASH_GT, - STATE(1684), 1, + STATE(1700), 1, sym_comment, - STATE(1688), 1, + STATE(1705), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84071] = 10, + [85195] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3037), 1, + anon_sym_LBRACE, + ACTIONS(3039), 1, + anon_sym_LT, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3043), 1, + anon_sym_SQUOTE, + STATE(1683), 1, + sym_jsx_opening_element, + STATE(1701), 1, + sym_comment, + STATE(1845), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [85226] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2987), 1, + ACTIONS(3045), 1, anon_sym_GT, - ACTIONS(3008), 1, + ACTIONS(3047), 1, anon_sym_SLASH_GT, - STATE(1685), 1, + STATE(1702), 1, sym_comment, - STATE(1693), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84104] = 10, + [85259] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3010), 1, + ACTIONS(3049), 1, anon_sym_GT, - ACTIONS(3012), 1, + ACTIONS(3051), 1, anon_sym_SLASH_GT, - STATE(1686), 1, + STATE(1703), 1, sym_comment, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84137] = 10, + [85292] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3014), 1, + ACTIONS(3045), 1, anon_sym_GT, - ACTIONS(3016), 1, + ACTIONS(3053), 1, anon_sym_SLASH_GT, - STATE(1687), 1, + STATE(1704), 1, sym_comment, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84170] = 10, + [85325] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3010), 1, + ACTIONS(3055), 1, anon_sym_GT, - ACTIONS(3018), 1, + ACTIONS(3057), 1, anon_sym_SLASH_GT, - STATE(1688), 1, + STATE(1705), 1, sym_comment, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84203] = 10, + [85358] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2987), 1, + ACTIONS(3059), 1, anon_sym_GT, - ACTIONS(2995), 1, + ACTIONS(3061), 1, anon_sym_SLASH_GT, - STATE(1689), 1, + STATE(1706), 1, sym_comment, - STATE(1704), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84236] = 10, + [85391] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3014), 1, + ACTIONS(3059), 1, anon_sym_GT, - ACTIONS(3020), 1, + ACTIONS(3063), 1, anon_sym_SLASH_GT, - STATE(1690), 1, + STATE(1707), 1, sym_comment, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84269] = 10, + [85424] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3037), 1, + anon_sym_LBRACE, + ACTIONS(3039), 1, + anon_sym_LT, + ACTIONS(3041), 1, + anon_sym_DQUOTE, + ACTIONS(3043), 1, + anon_sym_SQUOTE, + STATE(1683), 1, + sym_jsx_opening_element, + STATE(1708), 1, + sym_comment, + STATE(1855), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [85455] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3068), 1, anon_sym_LBRACE, - ACTIONS(3022), 1, + STATE(1779), 1, + sym_jsx_namespace_name, + ACTIONS(3065), 2, + sym_jsx_identifier, + sym_identifier, + ACTIONS(3071), 2, anon_sym_GT, - ACTIONS(3024), 1, anon_sym_SLASH_GT, - STATE(1691), 1, + STATE(1709), 2, sym_comment, - STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, - sym_jsx_namespace_name, - ACTIONS(2981), 2, - sym_jsx_identifier, - sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84302] = 10, + [85484] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3010), 1, + ACTIONS(3059), 1, anon_sym_GT, - ACTIONS(3026), 1, + ACTIONS(3073), 1, anon_sym_SLASH_GT, - STATE(1692), 1, - sym_comment, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1710), 1, + sym_comment, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84335] = 10, + [85517] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3055), 1, anon_sym_GT, - ACTIONS(3030), 1, + ACTIONS(3075), 1, anon_sym_SLASH_GT, - STATE(1693), 1, - sym_comment, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1711), 1, + sym_comment, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84368] = 10, + [85550] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3022), 1, + ACTIONS(3049), 1, anon_sym_GT, - ACTIONS(3032), 1, + ACTIONS(3077), 1, anon_sym_SLASH_GT, - STATE(1694), 1, - sym_comment, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1712), 1, + sym_comment, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84401] = 10, + [85583] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2987), 1, + ACTIONS(3045), 1, anon_sym_GT, - ACTIONS(2991), 1, + ACTIONS(3079), 1, anon_sym_SLASH_GT, - STATE(1695), 1, - sym_comment, - STATE(1698), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1713), 1, + sym_comment, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84434] = 10, + [85616] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_GT, - ACTIONS(3034), 1, + ACTIONS(3081), 1, anon_sym_SLASH_GT, - STATE(1696), 1, - sym_comment, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1714), 1, + sym_comment, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84467] = 10, + [85649] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3014), 1, + ACTIONS(3045), 1, anon_sym_GT, - ACTIONS(3036), 1, + ACTIONS(3083), 1, anon_sym_SLASH_GT, - STATE(1697), 1, - sym_comment, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1715), 1, + sym_comment, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84500] = 10, + [85682] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3049), 1, anon_sym_GT, - ACTIONS(3038), 1, + ACTIONS(3085), 1, anon_sym_SLASH_GT, - STATE(1698), 1, - sym_comment, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1716), 1, + sym_comment, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84533] = 10, + [85715] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3014), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(3040), 1, + ACTIONS(3035), 1, anon_sym_SLASH_GT, - STATE(1699), 1, - sym_comment, - STATE(1700), 1, + STATE(1710), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1758), 1, + STATE(1717), 1, + sym_comment, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84566] = 8, + [85748] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3045), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - STATE(1758), 1, - sym_jsx_namespace_name, - ACTIONS(3042), 2, - sym_jsx_identifier, - sym_identifier, - ACTIONS(3048), 2, + ACTIONS(3055), 1, anon_sym_GT, + ACTIONS(3087), 1, anon_sym_SLASH_GT, - STATE(1700), 2, - sym_comment, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1841), 2, + STATE(1718), 1, + sym_comment, + STATE(1779), 1, + sym_jsx_namespace_name, + ACTIONS(3019), 2, + sym_jsx_identifier, + sym_identifier, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84595] = 10, + [85781] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3059), 1, anon_sym_GT, - ACTIONS(3050), 1, + ACTIONS(3089), 1, anon_sym_SLASH_GT, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1701), 1, + STATE(1719), 1, sym_comment, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84628] = 10, + [85814] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(2987), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(2993), 1, + ACTIONS(3033), 1, anon_sym_SLASH_GT, - STATE(1701), 1, + STATE(1707), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1702), 1, + STATE(1720), 1, sym_comment, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84661] = 10, + [85847] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3022), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(3052), 1, + ACTIONS(3029), 1, anon_sym_SLASH_GT, - STATE(1700), 1, + STATE(1719), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1703), 1, + STATE(1721), 1, sym_comment, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84694] = 10, + [85880] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3049), 1, anon_sym_GT, - ACTIONS(3054), 1, + ACTIONS(3091), 1, anon_sym_SLASH_GT, - STATE(1700), 1, + STATE(1709), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1704), 1, + STATE(1722), 1, sym_comment, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84727] = 10, + [85913] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2983), 1, + ACTIONS(3021), 1, anon_sym_LBRACE, - ACTIONS(3010), 1, + ACTIONS(3025), 1, anon_sym_GT, - ACTIONS(3056), 1, + ACTIONS(3031), 1, anon_sym_SLASH_GT, - STATE(1700), 1, + STATE(1706), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1705), 1, + STATE(1723), 1, sym_comment, - STATE(1758), 1, + STATE(1779), 1, sym_jsx_namespace_name, - ACTIONS(2981), 2, + ACTIONS(3019), 2, sym_jsx_identifier, sym_identifier, - STATE(1841), 2, + STATE(1863), 2, sym_jsx_expression, sym_jsx_attribute, - [84760] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3058), 1, - anon_sym_LBRACE, - ACTIONS(3060), 1, - anon_sym_LT, - ACTIONS(3062), 1, - anon_sym_DQUOTE, - ACTIONS(3064), 1, - anon_sym_SQUOTE, - STATE(1665), 1, - sym_jsx_opening_element, - STATE(1706), 1, - sym_comment, - STATE(1807), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [84791] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3058), 1, - anon_sym_LBRACE, - ACTIONS(3060), 1, - anon_sym_LT, - ACTIONS(3062), 1, - anon_sym_DQUOTE, - ACTIONS(3064), 1, - anon_sym_SQUOTE, - STATE(1665), 1, - sym_jsx_opening_element, - STATE(1707), 1, - sym_comment, - STATE(1823), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [84822] = 11, + [85946] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(3066), 1, + ACTIONS(3093), 1, sym_identifier, - ACTIONS(3068), 1, + ACTIONS(3095), 1, anon_sym_COMMA, - ACTIONS(3070), 1, + ACTIONS(3097), 1, anon_sym_RBRACE, - STATE(1708), 1, + STATE(1724), 1, sym_comment, - STATE(1883), 1, + STATE(1953), 1, sym_string, - STATE(2140), 1, + STATE(2179), 1, sym_import_specifier, - STATE(2804), 1, + STATE(2749), 1, sym__module_export_name, - [84856] = 11, + [85980] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(3072), 1, + ACTIONS(3099), 1, sym_identifier, - ACTIONS(3074), 1, + ACTIONS(3101), 1, anon_sym_COMMA, - ACTIONS(3076), 1, + ACTIONS(3103), 1, anon_sym_RBRACE, - STATE(1709), 1, + STATE(1725), 1, sym_comment, - STATE(1883), 1, + STATE(1953), 1, sym_string, - STATE(2150), 1, - sym__module_export_name, - STATE(2151), 1, + STATE(2096), 1, sym_export_specifier, - [84890] = 9, + STATE(2097), 1, + sym__module_export_name, + [86014] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(3078), 1, + ACTIONS(3105), 1, sym_identifier, - STATE(1710), 1, + STATE(1726), 1, sym_comment, - STATE(1818), 1, + STATE(1756), 1, sym__destructuring_pattern, - STATE(1889), 1, + STATE(1980), 1, sym_variable_declarator, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [84919] = 9, + [86043] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1213), 1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(3099), 1, + sym_identifier, + ACTIONS(3107), 1, anon_sym_RBRACE, + STATE(1727), 1, + sym_comment, + STATE(1953), 1, + sym_string, + STATE(2097), 1, + sym__module_export_name, + STATE(2621), 1, + sym_export_specifier, + [86074] = 9, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3080), 1, + ACTIONS(1245), 1, + anon_sym_RBRACE, + ACTIONS(3109), 1, anon_sym_COMMA, - ACTIONS(3082), 1, + ACTIONS(3111), 1, anon_sym_EQ, - STATE(1711), 1, + STATE(1728), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2765), 2, + ACTIONS(2785), 2, anon_sym_LPAREN, anon_sym_COLON, - [84948] = 5, + [86103] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(2285), 1, - sym__automatic_semicolon, - STATE(1712), 1, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, + sym_identifier, + STATE(1729), 1, sym_comment, - ACTIONS(932), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [84969] = 10, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1916), 1, + sym_variable_declarator, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + [86132] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(3072), 1, + ACTIONS(3093), 1, sym_identifier, - ACTIONS(3084), 1, + ACTIONS(3115), 1, anon_sym_RBRACE, - STATE(1713), 1, + STATE(1730), 1, sym_comment, - STATE(1883), 1, + STATE(1953), 1, sym_string, - STATE(2150), 1, + STATE(2497), 1, + sym_import_specifier, + STATE(2749), 1, sym__module_export_name, - STATE(2338), 1, - sym_export_specifier, - [85000] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - ACTIONS(3078), 1, - sym_identifier, - STATE(1714), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1939), 1, - sym_variable_declarator, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - [85029] = 9, + [86163] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(3078), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(1715), 1, + STATE(1731), 1, sym_comment, - STATE(1818), 1, + STATE(1890), 1, sym__destructuring_pattern, - STATE(2092), 1, + STATE(1915), 1, sym_variable_declarator, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [85058] = 9, + [86192] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(3078), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(1716), 1, + STATE(1732), 1, sym_comment, - STATE(1818), 1, + STATE(1890), 1, sym__destructuring_pattern, - STATE(1940), 1, + STATE(1955), 1, sym_variable_declarator, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [85087] = 4, + [86221] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1717), 1, - sym_comment, - ACTIONS(3086), 7, - anon_sym_COMMA, + ACTIONS(1213), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [85106] = 4, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1718), 1, - sym_comment, - ACTIONS(3088), 7, + ACTIONS(3109), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(3111), 1, anon_sym_EQ, - anon_sym_RBRACK, - [85125] = 9, + STATE(1733), 1, + sym_comment, + STATE(2131), 1, + aux_sym_object_repeat1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2785), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [86250] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1245), 1, - anon_sym_RBRACE, - ACTIONS(3080), 1, + ACTIONS(3109), 1, anon_sym_COMMA, - ACTIONS(3082), 1, + ACTIONS(3111), 1, anon_sym_EQ, - STATE(1719), 1, + ACTIONS(3117), 1, + anon_sym_RBRACE, + STATE(1734), 1, sym_comment, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - STATE(2114), 1, + STATE(2039), 1, aux_sym_object_repeat1, - ACTIONS(2765), 2, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2785), 2, anon_sym_LPAREN, anon_sym_COLON, - [85154] = 4, + [86279] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1720), 1, + STATE(1735), 1, sym_comment, - ACTIONS(3090), 7, + ACTIONS(3119), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -129528,169 +131055,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [85173] = 9, + [86298] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3080), 1, + ACTIONS(1243), 1, + anon_sym_RBRACE, + ACTIONS(3109), 1, anon_sym_COMMA, - ACTIONS(3082), 1, + ACTIONS(3111), 1, anon_sym_EQ, - ACTIONS(3092), 1, - anon_sym_RBRACE, - STATE(1721), 1, + STATE(1736), 1, sym_comment, - STATE(2010), 1, + STATE(2039), 1, aux_sym_object_repeat1, - STATE(2113), 1, + STATE(2132), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2765), 2, + ACTIONS(2785), 2, anon_sym_LPAREN, anon_sym_COLON, - [85202] = 9, + [86327] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(3094), 1, + ACTIONS(3121), 1, sym_identifier, - STATE(1722), 1, + STATE(1737), 1, sym_comment, - STATE(1739), 1, + STATE(1759), 1, sym__destructuring_pattern, - STATE(1920), 1, + STATE(1979), 1, sym_variable_declarator, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [85231] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [86356] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - ACTIONS(3078), 1, - sym_identifier, - STATE(1723), 1, - sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1952), 1, - sym_variable_declarator, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - [85260] = 9, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1407), 1, - anon_sym_LBRACE, - ACTIONS(1409), 1, - anon_sym_LBRACK, - ACTIONS(3078), 1, - sym_identifier, - STATE(1724), 1, + ACTIONS(3109), 1, + anon_sym_COMMA, + ACTIONS(3111), 1, + anon_sym_EQ, + ACTIONS(3123), 1, + anon_sym_RBRACE, + STATE(1738), 1, sym_comment, - STATE(1818), 1, - sym__destructuring_pattern, - STATE(1890), 1, - sym_variable_declarator, - STATE(1776), 2, - sym_object_pattern, - sym_array_pattern, - [85289] = 9, + STATE(2131), 1, + aux_sym_object_repeat1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2785), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [86385] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(3078), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(1725), 1, + STATE(1739), 1, sym_comment, - STATE(1818), 1, + STATE(1890), 1, sym__destructuring_pattern, - STATE(1953), 1, + STATE(1967), 1, sym_variable_declarator, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [85318] = 9, + [86414] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(3096), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(1726), 1, + STATE(1740), 1, sym_comment, - STATE(1742), 1, + STATE(1890), 1, sym__destructuring_pattern, - STATE(1921), 1, + STATE(1966), 1, sym_variable_declarator, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [85347] = 4, + [86443] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1727), 1, + ACTIONS(2288), 1, + sym__automatic_semicolon, + STATE(1741), 1, sym_comment, - ACTIONS(3098), 7, + ACTIONS(905), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [85366] = 9, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [86464] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(3078), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(1728), 1, + STATE(1742), 1, sym_comment, - STATE(1818), 1, + STATE(1890), 1, sym__destructuring_pattern, - STATE(1960), 1, + STATE(1913), 1, sym_variable_declarator, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [85395] = 4, + [86493] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1729), 1, + STATE(1743), 1, sym_comment, - ACTIONS(3100), 7, + ACTIONS(3125), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -129698,155 +131206,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [85414] = 9, + [86512] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(3078), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(1730), 1, + STATE(1744), 1, sym_comment, - STATE(1818), 1, + STATE(1890), 1, sym__destructuring_pattern, - STATE(1930), 1, + STATE(2068), 1, sym_variable_declarator, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [85443] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3080), 1, - anon_sym_COMMA, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3102), 1, - anon_sym_RBRACE, - STATE(1731), 1, - sym_comment, - STATE(2010), 1, - aux_sym_object_repeat1, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2765), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [85472] = 10, + [86541] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(3066), 1, + ACTIONS(3093), 1, sym_identifier, - ACTIONS(3104), 1, + ACTIONS(3127), 1, anon_sym_RBRACE, - STATE(1732), 1, + STATE(1745), 1, sym_comment, - STATE(1883), 1, + STATE(1953), 1, sym_string, - STATE(2390), 1, + STATE(2497), 1, sym_import_specifier, - STATE(2804), 1, + STATE(2749), 1, sym__module_export_name, - [85503] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1243), 1, - anon_sym_RBRACE, - ACTIONS(3080), 1, - anon_sym_COMMA, - ACTIONS(3082), 1, - anon_sym_EQ, - STATE(1733), 1, - sym_comment, - STATE(2010), 1, - aux_sym_object_repeat1, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2765), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [85532] = 9, + [86572] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(3078), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(1734), 1, + STATE(1746), 1, sym_comment, - STATE(1818), 1, + STATE(1890), 1, sym__destructuring_pattern, - STATE(1929), 1, + STATE(1949), 1, sym_variable_declarator, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [85561] = 9, + [86601] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1407), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(1409), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - ACTIONS(3078), 1, + ACTIONS(3113), 1, sym_identifier, - STATE(1735), 1, + STATE(1747), 1, sym_comment, - STATE(1818), 1, + STATE(1890), 1, sym__destructuring_pattern, - STATE(1959), 1, + STATE(1914), 1, sym_variable_declarator, - STATE(1776), 2, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [85590] = 9, + [86630] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3080), 1, + STATE(1748), 1, + sym_comment, + ACTIONS(3129), 7, anon_sym_COMMA, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3106), 1, anon_sym_RBRACE, - STATE(1736), 1, - sym_comment, - STATE(2010), 1, - aux_sym_object_repeat1, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2765), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [85619] = 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [86649] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1737), 1, + STATE(1749), 1, sym_comment, - ACTIONS(3108), 7, + ACTIONS(3131), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -129854,12843 +131317,13304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [85638] = 9, + [86668] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3023), 1, + anon_sym_COLON, + ACTIONS(3135), 1, + anon_sym_EQ, + STATE(1750), 1, + sym_comment, + ACTIONS(3133), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [86691] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3080), 1, + ACTIONS(3109), 1, anon_sym_COMMA, - ACTIONS(3082), 1, + ACTIONS(3111), 1, anon_sym_EQ, - ACTIONS(3110), 1, + ACTIONS(3137), 1, anon_sym_RBRACE, - STATE(1738), 1, + STATE(1751), 1, sym_comment, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - STATE(2114), 1, + STATE(2039), 1, aux_sym_object_repeat1, - ACTIONS(2765), 2, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2785), 2, anon_sym_LPAREN, anon_sym_COLON, - [85667] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3116), 1, - anon_sym_EQ, - STATE(1739), 1, - sym_comment, - STATE(1860), 1, - sym__initializer, - ACTIONS(3114), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(3112), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [85692] = 10, + [86720] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, + ACTIONS(1316), 1, anon_sym_DQUOTE, - ACTIONS(1310), 1, + ACTIONS(1318), 1, anon_sym_SQUOTE, - ACTIONS(3072), 1, + ACTIONS(3099), 1, sym_identifier, - ACTIONS(3118), 1, + ACTIONS(3139), 1, anon_sym_RBRACE, - STATE(1740), 1, + STATE(1752), 1, sym_comment, - STATE(1883), 1, + STATE(1953), 1, sym_string, - STATE(2150), 1, + STATE(2097), 1, sym__module_export_name, - STATE(2338), 1, + STATE(2621), 1, sym_export_specifier, - [85723] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [86751] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2985), 1, - anon_sym_COLON, - ACTIONS(3122), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3109), 1, + anon_sym_COMMA, + ACTIONS(3111), 1, anon_sym_EQ, - STATE(1741), 1, + ACTIONS(3141), 1, + anon_sym_RBRACE, + STATE(1753), 1, sym_comment, - ACTIONS(3120), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [85746] = 7, + STATE(2039), 1, + aux_sym_object_repeat1, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2785), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [86780] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3124), 1, - anon_sym_EQ, - STATE(1742), 1, + ACTIONS(1384), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_LBRACK, + ACTIONS(3113), 1, + sym_identifier, + STATE(1754), 1, sym_comment, - STATE(2145), 1, - sym__initializer, - ACTIONS(3114), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(3112), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [85771] = 5, + STATE(1890), 1, + sym__destructuring_pattern, + STATE(1911), 1, + sym_variable_declarator, + STATE(1773), 2, + sym_object_pattern, + sym_array_pattern, + [86809] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3126), 1, + ACTIONS(3143), 1, sym__automatic_semicolon, - STATE(1743), 1, + STATE(1755), 1, sym_comment, - ACTIONS(876), 6, + ACTIONS(903), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, anon_sym_while, anon_sym_catch, anon_sym_finally, - [85792] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(3066), 1, - sym_identifier, - ACTIONS(3128), 1, - anon_sym_RBRACE, - STATE(1744), 1, - sym_comment, - STATE(1883), 1, - sym_string, - STATE(2390), 1, - sym_import_specifier, - STATE(2804), 1, - sym__module_export_name, - [85823] = 8, + [86830] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_RBRACE, - ACTIONS(3134), 1, - anon_sym_case, - STATE(1745), 1, + ACTIONS(3149), 1, + anon_sym_EQ, + STATE(1756), 1, sym_comment, - STATE(1780), 1, - aux_sym_switch_body_repeat1, - STATE(2099), 2, - sym_switch_case, - sym_switch_default, - [85849] = 7, + STATE(2184), 1, + sym__initializer, + ACTIONS(3147), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(3145), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [86855] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3136), 1, - anon_sym_default, - ACTIONS(3139), 1, - anon_sym_RBRACE, - ACTIONS(3141), 1, - anon_sym_case, - STATE(1746), 2, + STATE(1757), 1, sym_comment, - aux_sym_switch_body_repeat1, - STATE(2099), 2, - sym_switch_case, - sym_switch_default, - [85873] = 8, + ACTIONS(3151), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [86874] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1774), 1, + ACTIONS(1384), 1, anon_sym_LBRACE, - ACTIONS(3144), 1, - sym_identifier, - ACTIONS(3146), 1, + ACTIONS(1386), 1, anon_sym_LBRACK, - STATE(1747), 1, + ACTIONS(3113), 1, + sym_identifier, + STATE(1758), 1, sym_comment, - STATE(2751), 1, + STATE(1890), 1, sym__destructuring_pattern, - STATE(1727), 2, + STATE(1912), 1, + sym_variable_declarator, + STATE(1773), 2, sym_object_pattern, sym_array_pattern, - [85899] = 8, + [86903] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3134), 1, - anon_sym_case, - ACTIONS(3148), 1, - anon_sym_RBRACE, - STATE(1748), 1, + ACTIONS(3153), 1, + anon_sym_EQ, + STATE(1759), 1, sym_comment, - STATE(1764), 1, - aux_sym_switch_body_repeat1, - STATE(2099), 2, - sym_switch_case, - sym_switch_default, - [85925] = 8, + STATE(1862), 1, + sym__initializer, + ACTIONS(3147), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(3145), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [86928] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3134), 1, - anon_sym_case, - ACTIONS(3150), 1, - anon_sym_RBRACE, - STATE(1749), 1, + STATE(1760), 1, sym_comment, - STATE(1789), 1, - aux_sym_switch_body_repeat1, - STATE(2099), 2, - sym_switch_case, - sym_switch_default, - [85951] = 4, + ACTIONS(3155), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [86947] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1750), 1, + STATE(1761), 1, sym_comment, - ACTIONS(876), 6, + ACTIONS(903), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, anon_sym_while, anon_sym_catch, anon_sym_finally, - [85969] = 8, + [86965] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1870), 1, + ACTIONS(1880), 1, anon_sym_LPAREN, - ACTIONS(1874), 1, + ACTIONS(1884), 1, anon_sym_DOT, - ACTIONS(1880), 1, + ACTIONS(1890), 1, anon_sym_BQUOTE, - ACTIONS(3152), 1, + ACTIONS(3157), 1, sym_optional_chain, - STATE(1751), 1, + STATE(1762), 1, sym_comment, - STATE(1142), 2, + STATE(1147), 2, sym_template_string, sym_arguments, - [85995] = 4, + [86991] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1752), 1, + STATE(1763), 1, sym_comment, - ACTIONS(2161), 6, - anon_sym_as, + ACTIONS(3125), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [86013] = 8, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [87009] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1764), 1, + sym_comment, + ACTIONS(2151), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87027] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1765), 1, + sym_comment, + ACTIONS(3129), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [87045] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3156), 1, + ACTIONS(3161), 1, anon_sym_BQUOTE, - ACTIONS(3158), 1, + ACTIONS(3163), 1, anon_sym_DOLLAR_LBRACE, - STATE(1753), 1, + STATE(1766), 1, sym_comment, - STATE(1759), 1, + STATE(1795), 1, aux_sym_template_string_repeat1, - STATE(1893), 1, + STATE(1895), 1, sym_template_substitution, - ACTIONS(3154), 2, + ACTIONS(3159), 2, sym__template_chars, sym_escape_sequence, - [86039] = 8, + [87071] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1767), 1, + sym_comment, + ACTIONS(3165), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87089] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3167), 1, + anon_sym_default, + ACTIONS(3169), 1, + anon_sym_RBRACE, + ACTIONS(3171), 1, + anon_sym_case, + STATE(1768), 1, + sym_comment, + STATE(1770), 1, + aux_sym_switch_body_repeat1, + STATE(2065), 2, + sym_switch_case, + sym_switch_default, + [87115] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3130), 1, + ACTIONS(3167), 1, anon_sym_default, - ACTIONS(3134), 1, + ACTIONS(3171), 1, anon_sym_case, - ACTIONS(3160), 1, + ACTIONS(3173), 1, anon_sym_RBRACE, - STATE(1746), 1, + STATE(1769), 1, + sym_comment, + STATE(1778), 1, aux_sym_switch_body_repeat1, - STATE(1754), 1, + STATE(2065), 2, + sym_switch_case, + sym_switch_default, + [87141] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3167), 1, + anon_sym_default, + ACTIONS(3171), 1, + anon_sym_case, + ACTIONS(3175), 1, + anon_sym_RBRACE, + STATE(1770), 1, sym_comment, - STATE(2099), 2, + STATE(1778), 1, + aux_sym_switch_body_repeat1, + STATE(2065), 2, sym_switch_case, sym_switch_default, - [86065] = 4, + [87167] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1771), 1, + sym_comment, + ACTIONS(3177), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87185] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1802), 1, + anon_sym_LBRACE, + ACTIONS(3179), 1, + sym_identifier, + ACTIONS(3181), 1, + anon_sym_LBRACK, + STATE(1772), 1, + sym_comment, + STATE(2804), 1, + sym__destructuring_pattern, + STATE(1760), 2, + sym_object_pattern, + sym_array_pattern, + [87211] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1755), 1, + STATE(1773), 1, sym_comment, - ACTIONS(2322), 6, + ACTIONS(3155), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [86083] = 8, + [87229] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1774), 1, - anon_sym_LBRACE, - ACTIONS(3146), 1, - anon_sym_LBRACK, - ACTIONS(3162), 1, - sym_identifier, - STATE(1756), 1, + STATE(1774), 1, sym_comment, - STATE(2735), 1, - sym__destructuring_pattern, - STATE(1727), 2, - sym_object_pattern, - sym_array_pattern, - [86109] = 8, + ACTIONS(3183), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3124), 1, - anon_sym_EQ, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(1757), 1, + STATE(1775), 1, sym_comment, - STATE(2431), 1, - sym__initializer, - STATE(2555), 1, - sym_formal_parameters, - ACTIONS(3166), 2, + ACTIONS(3151), 6, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [86135] = 5, + anon_sym_EQ, + [87265] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3170), 1, - anon_sym_EQ, - STATE(1758), 1, + STATE(1776), 1, sym_comment, - ACTIONS(3168), 5, + ACTIONS(3185), 6, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, + anon_sym_DOT, anon_sym_SLASH_GT, sym_identifier, - [86155] = 8, + [87283] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3158), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3172), 1, - anon_sym_BQUOTE, - STATE(1759), 1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(3093), 1, + sym_identifier, + STATE(1777), 1, sym_comment, - STATE(1795), 1, - aux_sym_template_string_repeat1, - STATE(1893), 1, - sym_template_substitution, - ACTIONS(3154), 2, - sym__template_chars, - sym_escape_sequence, - [86181] = 8, + STATE(1953), 1, + sym_string, + STATE(2497), 1, + sym_import_specifier, + STATE(2749), 1, + sym__module_export_name, + [87311] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3130), 1, + ACTIONS(3187), 1, anon_sym_default, - ACTIONS(3134), 1, - anon_sym_case, - ACTIONS(3174), 1, + ACTIONS(3190), 1, anon_sym_RBRACE, - STATE(1754), 1, - aux_sym_switch_body_repeat1, - STATE(1760), 1, + ACTIONS(3192), 1, + anon_sym_case, + STATE(1778), 2, sym_comment, - STATE(2099), 2, + aux_sym_switch_body_repeat1, + STATE(2065), 2, sym_switch_case, sym_switch_default, - [86207] = 4, + [87335] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(3197), 1, + anon_sym_EQ, + STATE(1779), 1, + sym_comment, + ACTIONS(3195), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [87355] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(1761), 1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1780), 1, sym_comment, - ACTIONS(3088), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [86225] = 6, + ACTIONS(3199), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87373] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2291), 1, + ACTIONS(2299), 1, anon_sym_COMMA, - STATE(1762), 1, - sym_comment, STATE(1781), 1, + sym_comment, + STATE(1822), 1, aux_sym_sequence_expression_repeat1, - ACTIONS(3176), 4, + ACTIONS(3201), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [86247] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + [87395] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(3124), 1, - anon_sym_EQ, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(1763), 1, - sym_comment, - STATE(2371), 1, - sym__initializer, - STATE(2677), 1, - sym_formal_parameters, - ACTIONS(3178), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [86273] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3134), 1, - anon_sym_case, - ACTIONS(3180), 1, - anon_sym_RBRACE, - STATE(1746), 1, - aux_sym_switch_body_repeat1, - STATE(1764), 1, + STATE(1782), 1, sym_comment, - STATE(2099), 2, - sym_switch_case, - sym_switch_default, - [86299] = 8, + ACTIONS(2089), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87413] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3124), 1, - anon_sym_EQ, - ACTIONS(3164), 1, + ACTIONS(3205), 1, anon_sym_LPAREN, - STATE(1765), 1, + ACTIONS(3207), 1, + anon_sym_DOT, + STATE(1783), 1, sym_comment, - STATE(2177), 1, - sym_formal_parameters, - STATE(2322), 1, - sym__initializer, - ACTIONS(3182), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [86325] = 4, + STATE(2055), 1, + sym_arguments, + ACTIONS(3203), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [87437] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1766), 1, + STATE(1784), 1, sym_comment, - ACTIONS(3184), 6, + ACTIONS(2089), 6, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - sym_identifier, - [86343] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87455] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(3158), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3186), 1, - anon_sym_BQUOTE, - STATE(1767), 1, - sym_comment, - STATE(1794), 1, - aux_sym_template_string_repeat1, - STATE(1893), 1, - sym_template_substitution, - ACTIONS(3154), 2, - sym__template_chars, - sym_escape_sequence, - [86369] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1768), 1, + STATE(1785), 1, sym_comment, - ACTIONS(2347), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [86387] = 8, + ACTIONS(2089), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87473] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(3146), 1, + ACTIONS(3181), 1, anon_sym_LBRACK, - ACTIONS(3188), 1, + ACTIONS(3209), 1, sym_identifier, - STATE(1769), 1, + STATE(1786), 1, sym_comment, - STATE(2708), 1, + STATE(2753), 1, sym__destructuring_pattern, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - [86413] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1770), 1, - sym_comment, - ACTIONS(941), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [86431] = 8, + [87499] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3190), 1, - anon_sym_catch, - ACTIONS(3192), 1, - anon_sym_finally, - STATE(1771), 1, + ACTIONS(3163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3211), 1, + anon_sym_BQUOTE, + STATE(1787), 1, sym_comment, - STATE(1991), 1, - sym_catch_clause, - STATE(2654), 1, - sym_finally_clause, - ACTIONS(1451), 2, - anon_sym_else, - anon_sym_while, - [86457] = 4, + STATE(1790), 1, + aux_sym_template_string_repeat1, + STATE(1895), 1, + sym_template_substitution, + ACTIONS(3159), 2, + sym__template_chars, + sym_escape_sequence, + [87525] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1772), 1, + STATE(1788), 1, sym_comment, - ACTIONS(3090), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [86475] = 4, + ACTIONS(2089), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87543] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1773), 1, + ACTIONS(3149), 1, + anon_sym_EQ, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(1789), 1, sym_comment, - ACTIONS(3100), 6, + STATE(2417), 1, + sym_formal_parameters, + STATE(2710), 1, + sym__initializer, + ACTIONS(3215), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_EQ, - [86493] = 7, + [87569] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3196), 1, - anon_sym_LPAREN, - ACTIONS(3198), 1, - anon_sym_DOT, - STATE(1774), 1, - sym_comment, - STATE(2115), 1, - sym_arguments, - ACTIONS(3194), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [86517] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1775), 1, + ACTIONS(3163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3217), 1, + anon_sym_BQUOTE, + STATE(1790), 1, sym_comment, - ACTIONS(3200), 6, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [86535] = 4, + STATE(1805), 1, + aux_sym_template_string_repeat1, + STATE(1895), 1, + sym_template_substitution, + ACTIONS(3159), 2, + sym__template_chars, + sym_escape_sequence, + [87595] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1776), 1, + ACTIONS(3149), 1, + anon_sym_EQ, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(1791), 1, sym_comment, - ACTIONS(3098), 6, + STATE(2365), 1, + sym_formal_parameters, + STATE(2373), 1, + sym__initializer, + ACTIONS(3219), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_EQ, - [86553] = 8, + [87621] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1774), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - ACTIONS(3146), 1, + ACTIONS(3181), 1, anon_sym_LBRACK, - ACTIONS(3202), 1, + ACTIONS(3221), 1, sym_identifier, - STATE(1777), 1, + STATE(1792), 1, sym_comment, - STATE(2696), 1, + STATE(2796), 1, sym__destructuring_pattern, - STATE(1727), 2, + STATE(1760), 2, sym_object_pattern, sym_array_pattern, - [86579] = 8, + [87647] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1774), 1, - anon_sym_LBRACE, - ACTIONS(3146), 1, - anon_sym_LBRACK, - ACTIONS(3204), 1, - sym_identifier, - STATE(1778), 1, - sym_comment, - STATE(2731), 1, - sym__destructuring_pattern, - STATE(1727), 2, - sym_object_pattern, - sym_array_pattern, - [86605] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1779), 1, + STATE(1793), 1, sym_comment, - ACTIONS(3086), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [86623] = 8, + ACTIONS(3223), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87665] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3130), 1, + ACTIONS(3167), 1, anon_sym_default, - ACTIONS(3134), 1, + ACTIONS(3171), 1, anon_sym_case, - ACTIONS(3206), 1, + ACTIONS(3225), 1, anon_sym_RBRACE, - STATE(1746), 1, + STATE(1778), 1, aux_sym_switch_body_repeat1, - STATE(1780), 1, + STATE(1794), 1, sym_comment, - STATE(2099), 2, + STATE(2065), 2, sym_switch_case, sym_switch_default, - [86649] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3208), 1, - anon_sym_COMMA, - STATE(1781), 2, - sym_comment, - aux_sym_sequence_expression_repeat1, - ACTIONS(2071), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [86669] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1782), 1, - sym_comment, - ACTIONS(2317), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [86687] = 4, + [87691] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1783), 1, + ACTIONS(3163), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3227), 1, + anon_sym_BQUOTE, + STATE(1795), 1, sym_comment, - ACTIONS(2037), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [86705] = 8, + STATE(1805), 1, + aux_sym_template_string_repeat1, + STATE(1895), 1, + sym_template_substitution, + ACTIONS(3159), 2, + sym__template_chars, + sym_escape_sequence, + [87717] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3124), 1, + ACTIONS(3149), 1, anon_sym_EQ, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(1784), 1, + STATE(1796), 1, sym_comment, - STATE(2505), 1, - sym__initializer, - STATE(2556), 1, + STATE(2366), 1, sym_formal_parameters, - ACTIONS(3211), 2, + STATE(2377), 1, + sym__initializer, + ACTIONS(3229), 2, sym__automatic_semicolon, anon_sym_SEMI, - [86731] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1999), 1, - anon_sym_LPAREN, - ACTIONS(2003), 1, - anon_sym_DOT, - ACTIONS(2007), 1, - anon_sym_BQUOTE, - ACTIONS(3213), 1, - sym_optional_chain, - STATE(1785), 1, - sym_comment, - STATE(1303), 2, - sym_template_string, - sym_arguments, - [86757] = 9, + [87743] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(3066), 1, - sym_identifier, - STATE(1786), 1, + STATE(1797), 1, sym_comment, - STATE(1883), 1, - sym_string, - STATE(2390), 1, - sym_import_specifier, - STATE(2804), 1, - sym__module_export_name, - [86785] = 9, + ACTIONS(1999), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87761] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(3072), 1, - sym_identifier, - STATE(1787), 1, + STATE(1798), 1, sym_comment, - STATE(1883), 1, - sym_string, - STATE(2150), 1, - sym__module_export_name, - STATE(2338), 1, - sym_export_specifier, - [86813] = 8, + ACTIONS(1995), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87779] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3130), 1, + ACTIONS(3167), 1, anon_sym_default, - ACTIONS(3134), 1, + ACTIONS(3171), 1, anon_sym_case, - ACTIONS(3215), 1, + ACTIONS(3231), 1, anon_sym_RBRACE, - STATE(1746), 1, - aux_sym_switch_body_repeat1, - STATE(1788), 1, + STATE(1799), 1, sym_comment, - STATE(2099), 2, + STATE(1808), 1, + aux_sym_switch_body_repeat1, + STATE(2065), 2, sym_switch_case, sym_switch_default, - [86839] = 8, + [87805] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3134), 1, - anon_sym_case, - ACTIONS(3217), 1, - anon_sym_RBRACE, - STATE(1746), 1, - aux_sym_switch_body_repeat1, - STATE(1789), 1, + STATE(1800), 1, sym_comment, - STATE(2099), 2, - sym_switch_case, - sym_switch_default, - [86865] = 8, + ACTIONS(2061), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87823] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1774), 1, + STATE(1801), 1, + sym_comment, + ACTIONS(3233), 6, anon_sym_LBRACE, - ACTIONS(3146), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, + anon_sym_EQ, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, sym_identifier, - STATE(1790), 1, + [87841] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1802), 1, sym_comment, - STATE(1935), 1, - sym__destructuring_pattern, - STATE(1727), 2, - sym_object_pattern, - sym_array_pattern, - [86891] = 8, + ACTIONS(2099), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [87859] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1774), 1, - anon_sym_LBRACE, - ACTIONS(3146), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - sym_identifier, - STATE(1791), 1, + STATE(1803), 1, sym_comment, - STATE(2417), 1, - sym__destructuring_pattern, - STATE(1727), 2, - sym_object_pattern, - sym_array_pattern, - [86917] = 8, + ACTIONS(3199), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [87877] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3130), 1, + ACTIONS(3167), 1, anon_sym_default, - ACTIONS(3134), 1, + ACTIONS(3171), 1, anon_sym_case, - ACTIONS(3223), 1, + ACTIONS(3235), 1, anon_sym_RBRACE, - STATE(1788), 1, - aux_sym_switch_body_repeat1, - STATE(1792), 1, + STATE(1804), 1, sym_comment, - STATE(2099), 2, + STATE(1813), 1, + aux_sym_switch_body_repeat1, + STATE(2065), 2, sym_switch_case, sym_switch_default, - [86943] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1793), 1, - sym_comment, - ACTIONS(3108), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [86961] = 8, + [87903] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3158), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3225), 1, + ACTIONS(3240), 1, anon_sym_BQUOTE, - STATE(1794), 1, - sym_comment, - STATE(1795), 1, - aux_sym_template_string_repeat1, - STATE(1893), 1, + ACTIONS(3242), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1895), 1, sym_template_substitution, - ACTIONS(3154), 2, + ACTIONS(3237), 2, sym__template_chars, sym_escape_sequence, - [86987] = 7, + STATE(1805), 2, + sym_comment, + aux_sym_template_string_repeat1, + [87927] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3230), 1, - anon_sym_BQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1893), 1, - sym_template_substitution, - ACTIONS(3227), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1795), 2, + STATE(1806), 1, sym_comment, - aux_sym_template_string_repeat1, - [87011] = 8, + ACTIONS(1963), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [87945] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2765), 1, - anon_sym_COLON, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3235), 1, - anon_sym_COMMA, - ACTIONS(3237), 1, + ACTIONS(3167), 1, + anon_sym_default, + ACTIONS(3171), 1, + anon_sym_case, + ACTIONS(3245), 1, anon_sym_RBRACE, - STATE(1796), 1, + STATE(1794), 1, + aux_sym_switch_body_repeat1, + STATE(1807), 1, sym_comment, - STATE(2113), 1, - aux_sym_object_pattern_repeat1, - [87036] = 6, + STATE(2065), 2, + sym_switch_case, + sym_switch_default, + [87971] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3082), 1, - anon_sym_EQ, - STATE(1797), 1, - sym_comment, - ACTIONS(2765), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(3239), 2, - anon_sym_COMMA, + ACTIONS(3167), 1, + anon_sym_default, + ACTIONS(3171), 1, + anon_sym_case, + ACTIONS(3247), 1, anon_sym_RBRACE, - [87057] = 8, + STATE(1778), 1, + aux_sym_switch_body_repeat1, + STATE(1808), 1, + sym_comment, + STATE(2065), 2, + sym_switch_case, + sym_switch_default, + [87997] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3242), 1, - sym_identifier, - ACTIONS(3244), 1, - anon_sym_GT, - ACTIONS(3246), 1, - sym_jsx_identifier, - STATE(1682), 1, - sym_nested_identifier, - STATE(1689), 1, - sym_jsx_namespace_name, - STATE(1798), 1, + STATE(1809), 1, sym_comment, - [87082] = 8, + ACTIONS(3199), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [88015] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3248), 1, - sym_identifier, - ACTIONS(3250), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - anon_sym_extends, - STATE(1298), 1, - sym_class_body, - STATE(1799), 1, + STATE(1810), 1, sym_comment, - STATE(2318), 1, - sym_class_heritage, - [87107] = 4, - ACTIONS(3), 1, + ACTIONS(2037), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [88033] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(3249), 1, + anon_sym_catch, + ACTIONS(3251), 1, + anon_sym_finally, + STATE(1811), 1, + sym_comment, + STATE(2002), 1, + sym_catch_clause, + STATE(2612), 1, + sym_finally_clause, + ACTIONS(1450), 2, + anon_sym_else, + anon_sym_while, + [88059] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(1800), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1812), 1, sym_comment, - ACTIONS(2039), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [87124] = 8, + ACTIONS(899), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [88077] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3254), 1, - anon_sym_export, - ACTIONS(3256), 1, - anon_sym_class, - STATE(1801), 1, + ACTIONS(3167), 1, + anon_sym_default, + ACTIONS(3171), 1, + anon_sym_case, + ACTIONS(3253), 1, + anon_sym_RBRACE, + STATE(1778), 1, + aux_sym_switch_body_repeat1, + STATE(1813), 1, sym_comment, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(2051), 1, - sym_decorator, - [87149] = 8, + STATE(2065), 2, + sym_switch_case, + sym_switch_default, + [88103] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - anon_sym_extends, - ACTIONS(3258), 1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(3099), 1, sym_identifier, - STATE(1354), 1, - sym_class_body, - STATE(1802), 1, + STATE(1814), 1, sym_comment, - STATE(2230), 1, - sym_class_heritage, - [87174] = 4, + STATE(1953), 1, + sym_string, + STATE(2097), 1, + sym__module_export_name, + STATE(2621), 1, + sym_export_specifier, + [88131] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1803), 1, + STATE(1815), 1, sym_comment, - ACTIONS(2017), 5, + ACTIONS(3255), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, + sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [87191] = 8, + [88149] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2765), 1, - anon_sym_COLON, - ACTIONS(3082), 1, - anon_sym_EQ, - ACTIONS(3235), 1, - anon_sym_COMMA, - ACTIONS(3260), 1, - anon_sym_RBRACE, - STATE(1804), 1, + STATE(1816), 1, sym_comment, - STATE(2011), 1, - aux_sym_object_pattern_repeat1, - [87216] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3131), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [88167] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - anon_sym_extends, - ACTIONS(3262), 1, - sym_identifier, - STATE(1354), 1, - sym_class_body, - STATE(1805), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1817), 1, sym_comment, - STATE(2230), 1, - sym_class_heritage, - [87241] = 4, - ACTIONS(3), 1, + ACTIONS(3119), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [88185] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(3167), 1, + anon_sym_default, + ACTIONS(3171), 1, + anon_sym_case, + ACTIONS(3257), 1, + anon_sym_RBRACE, + STATE(1769), 1, + aux_sym_switch_body_repeat1, + STATE(1818), 1, + sym_comment, + STATE(2065), 2, + sym_switch_case, + sym_switch_default, + [88211] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(1806), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1977), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_DOT, + ACTIONS(1985), 1, + anon_sym_BQUOTE, + ACTIONS(3259), 1, + sym_optional_chain, + STATE(1819), 1, sym_comment, - ACTIONS(2035), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [87258] = 4, + STATE(1277), 2, + sym_template_string, + sym_arguments, + [88237] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1807), 1, + STATE(1820), 1, sym_comment, - ACTIONS(3264), 5, + ACTIONS(3261), 6, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [87275] = 4, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [88255] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1808), 1, + STATE(1821), 1, sym_comment, - ACTIONS(1839), 5, + ACTIONS(2343), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [88273] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3263), 1, anon_sym_COMMA, + STATE(1822), 2, + sym_comment, + aux_sym_sequence_expression_repeat1, + ACTIONS(1967), 4, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_EQ, + anon_sym_COLON, anon_sym_RBRACK, - [87292] = 4, + [88293] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1809), 1, - sym_comment, - ACTIONS(3266), 5, + ACTIONS(1802), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + ACTIONS(3181), 1, + anon_sym_LBRACK, + ACTIONS(3266), 1, sym_identifier, - [87309] = 8, + STATE(1823), 1, + sym_comment, + STATE(2780), 1, + sym__destructuring_pattern, + STATE(1760), 2, + sym_object_pattern, + sym_array_pattern, + [88319] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3252), 1, - anon_sym_extends, + ACTIONS(1802), 1, + anon_sym_LBRACE, + ACTIONS(3181), 1, + anon_sym_LBRACK, ACTIONS(3268), 1, sym_identifier, - ACTIONS(3270), 1, - anon_sym_LBRACE, - STATE(1165), 1, - sym_class_body, - STATE(1810), 1, + STATE(1824), 1, sym_comment, - STATE(2260), 1, - sym_class_heritage, - [87334] = 4, + STATE(2441), 1, + sym__destructuring_pattern, + STATE(1760), 2, + sym_object_pattern, + sym_array_pattern, + [88345] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1825), 1, + sym_comment, + ACTIONS(2307), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [88363] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1811), 1, + STATE(1826), 1, sym_comment, - ACTIONS(1929), 5, + ACTIONS(3199), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, + sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [87351] = 4, + [88381] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3149), 1, + anon_sym_EQ, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(1827), 1, + sym_comment, + STATE(2308), 1, + sym_formal_parameters, + STATE(2525), 1, + sym__initializer, + ACTIONS(3270), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [88407] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1812), 1, - sym_comment, - ACTIONS(3272), 5, + ACTIONS(1802), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [87368] = 8, + ACTIONS(3181), 1, + anon_sym_LBRACK, + ACTIONS(3272), 1, + sym_identifier, + STATE(1828), 1, + sym_comment, + STATE(2740), 1, + sym__destructuring_pattern, + STATE(1760), 2, + sym_object_pattern, + sym_array_pattern, + [88433] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1829), 1, + sym_comment, + ACTIONS(2367), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [88451] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3244), 1, - anon_sym_GT, + ACTIONS(1802), 1, + anon_sym_LBRACE, + ACTIONS(3181), 1, + anon_sym_LBRACK, ACTIONS(3274), 1, sym_identifier, + STATE(1830), 1, + sym_comment, + STATE(1999), 1, + sym__destructuring_pattern, + STATE(1760), 2, + sym_object_pattern, + sym_array_pattern, + [88477] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2785), 1, + anon_sym_COLON, + ACTIONS(3111), 1, + anon_sym_EQ, ACTIONS(3276), 1, - sym_jsx_identifier, - STATE(1677), 1, - sym_nested_identifier, - STATE(1702), 1, - sym_jsx_namespace_name, - STATE(1813), 1, + anon_sym_COMMA, + ACTIONS(3278), 1, + anon_sym_RBRACE, + STATE(1831), 1, sym_comment, - [87393] = 8, + STATE(2132), 1, + aux_sym_object_pattern_repeat1, + [88502] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, + ACTIONS(3280), 1, + sym_identifier, + ACTIONS(3282), 1, anon_sym_LBRACE, - ACTIONS(3252), 1, + ACTIONS(3284), 1, anon_sym_extends, - ACTIONS(3278), 1, - sym_identifier, - STATE(1298), 1, + STATE(1328), 1, sym_class_body, - STATE(1814), 1, + STATE(1832), 1, sym_comment, - STATE(2318), 1, + STATE(2199), 1, sym_class_heritage, - [87418] = 4, + [88527] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1815), 1, + ACTIONS(3286), 1, + sym_identifier, + ACTIONS(3288), 1, + anon_sym_GT, + ACTIONS(3290), 1, + sym_jsx_identifier, + STATE(1694), 1, + sym_nested_identifier, + STATE(1717), 1, + sym_jsx_namespace_name, + STATE(1833), 1, sym_comment, - ACTIONS(1933), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [87435] = 8, + [88552] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, + ACTIONS(3294), 1, anon_sym_AT, - ACTIONS(3280), 1, + STATE(2178), 1, + sym_decorator, + ACTIONS(3292), 2, anon_sym_export, - ACTIONS(3282), 1, anon_sym_class, - STATE(1816), 1, + STATE(1834), 2, sym_comment, - STATE(1865), 1, aux_sym_export_statement_repeat1, - STATE(2051), 1, - sym_decorator, - [87460] = 4, + [88573] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1817), 1, + STATE(1835), 1, sym_comment, - ACTIONS(2159), 5, + ACTIONS(3255), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [87477] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3124), 1, - anon_sym_EQ, - STATE(1818), 1, - sym_comment, - STATE(2145), 1, - sym__initializer, - ACTIONS(3112), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [87498] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3284), 1, - sym_identifier, - ACTIONS(3286), 1, - anon_sym_GT, - ACTIONS(3288), 1, - sym_jsx_identifier, - STATE(1819), 1, - sym_comment, - STATE(2228), 1, - sym_nested_identifier, - STATE(2778), 1, - sym_jsx_namespace_name, - [87523] = 8, + [88590] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3290), 1, + ACTIONS(3297), 1, sym_identifier, - ACTIONS(3292), 1, + ACTIONS(3299), 1, anon_sym_GT, - ACTIONS(3294), 1, + ACTIONS(3301), 1, sym_jsx_identifier, - STATE(1820), 1, + STATE(1836), 1, sym_comment, - STATE(2334), 1, + STATE(2428), 1, sym_nested_identifier, - STATE(2745), 1, + STATE(2803), 1, sym_jsx_namespace_name, - [87548] = 5, + [88615] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3296), 1, + ACTIONS(3303), 1, anon_sym_EQ, - STATE(1821), 1, + STATE(1837), 1, sym_comment, - ACTIONS(1835), 4, + ACTIONS(1825), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [87567] = 8, + [88634] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, + ACTIONS(3282), 1, anon_sym_LBRACE, - ACTIONS(3252), 1, + ACTIONS(3284), 1, anon_sym_extends, - ACTIONS(3298), 1, + ACTIONS(3306), 1, sym_identifier, - STATE(1354), 1, + STATE(1381), 1, sym_class_body, - STATE(1822), 1, + STATE(1838), 1, sym_comment, - STATE(2230), 1, + STATE(2231), 1, sym_class_heritage, - [87592] = 4, + [88659] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1823), 1, - sym_comment, - ACTIONS(3300), 5, + ACTIONS(3282), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [87609] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3302), 1, - sym_identifier, - ACTIONS(3304), 1, - anon_sym_LPAREN, - ACTIONS(3306), 1, - anon_sym_LBRACK, + ACTIONS(3284), 1, + anon_sym_extends, ACTIONS(3308), 1, - sym_private_property_identifier, - STATE(1131), 1, - sym_arguments, - STATE(1824), 1, + sym_identifier, + STATE(1381), 1, + sym_class_body, + STATE(1839), 1, sym_comment, - [87634] = 8, + STATE(2231), 1, + sym_class_heritage, + [88684] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - anon_sym_extends, ACTIONS(3310), 1, sym_identifier, - STATE(1354), 1, - sym_class_body, - STATE(1825), 1, + ACTIONS(3312), 1, + anon_sym_GT, + ACTIONS(3314), 1, + sym_jsx_identifier, + STATE(1840), 1, sym_comment, - STATE(2230), 1, - sym_class_heritage, - [87659] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(2382), 1, + sym_nested_identifier, + STATE(2825), 1, + sym_jsx_namespace_name, + [88709] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(1826), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1841), 1, sym_comment, - ACTIONS(3272), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [87676] = 5, + ACTIONS(2099), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [88726] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3312), 1, + ACTIONS(2785), 1, + anon_sym_COLON, + ACTIONS(3111), 1, anon_sym_EQ, - STATE(1827), 1, - sym_comment, - ACTIONS(1839), 4, + ACTIONS(3276), 1, anon_sym_COMMA, + ACTIONS(3316), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [87695] = 4, + STATE(1842), 1, + sym_comment, + STATE(2040), 1, + aux_sym_object_pattern_repeat1, + [88751] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1828), 1, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(3099), 1, + sym_identifier, + STATE(1843), 1, sym_comment, - ACTIONS(3272), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [87712] = 8, + STATE(1953), 1, + sym_string, + STATE(2851), 1, + sym__module_export_name, + [88776] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - anon_sym_extends, - ACTIONS(3315), 1, + ACTIONS(3318), 1, sym_identifier, - STATE(1298), 1, - sym_class_body, - STATE(1829), 1, + ACTIONS(3320), 1, + anon_sym_LPAREN, + ACTIONS(3322), 1, + anon_sym_LBRACK, + ACTIONS(3324), 1, + sym_private_property_identifier, + STATE(1113), 1, + sym_arguments, + STATE(1844), 1, sym_comment, - STATE(2318), 1, - sym_class_heritage, - [87737] = 8, + [88801] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1845), 1, + sym_comment, + ACTIONS(3326), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [88818] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(3317), 1, + ACTIONS(3328), 1, anon_sym_export, - ACTIONS(3319), 1, + ACTIONS(3330), 1, anon_sym_class, - STATE(1830), 1, - sym_comment, - STATE(1865), 1, + STATE(1834), 1, aux_sym_export_statement_repeat1, - STATE(2051), 1, + STATE(1846), 1, + sym_comment, + STATE(2178), 1, sym_decorator, - [87762] = 8, + [88843] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, + ACTIONS(3282), 1, anon_sym_LBRACE, - ACTIONS(3252), 1, + ACTIONS(3284), 1, anon_sym_extends, - ACTIONS(3321), 1, + ACTIONS(3332), 1, sym_identifier, - STATE(1298), 1, + STATE(1328), 1, sym_class_body, - STATE(1831), 1, + STATE(1847), 1, sym_comment, - STATE(2318), 1, + STATE(2199), 1, sym_class_heritage, - [87787] = 8, + [88868] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1848), 1, + sym_comment, + ACTIONS(1825), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [88885] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3244), 1, + STATE(1849), 1, + sym_comment, + ACTIONS(3334), 5, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(3323), 1, - sym_identifier, - ACTIONS(3325), 1, sym_jsx_identifier, - STATE(1681), 1, - sym_nested_identifier, - STATE(1685), 1, - sym_jsx_namespace_name, - STATE(1832), 1, - sym_comment, - [87812] = 8, + anon_sym_SLASH_GT, + sym_identifier, + [88902] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, - anon_sym_LBRACE, - ACTIONS(3252), 1, - anon_sym_extends, - ACTIONS(3327), 1, + ACTIONS(3288), 1, + anon_sym_GT, + ACTIONS(3336), 1, sym_identifier, - STATE(1354), 1, - sym_class_body, - STATE(1833), 1, + ACTIONS(3338), 1, + sym_jsx_identifier, + STATE(1700), 1, + sym_nested_identifier, + STATE(1723), 1, + sym_jsx_namespace_name, + STATE(1850), 1, sym_comment, - STATE(2230), 1, - sym_class_heritage, - [87837] = 8, + [88927] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, + ACTIONS(3282), 1, anon_sym_LBRACE, - ACTIONS(3252), 1, + ACTIONS(3284), 1, anon_sym_extends, - ACTIONS(3329), 1, + ACTIONS(3340), 1, sym_identifier, - STATE(1298), 1, + STATE(1381), 1, sym_class_body, - STATE(1834), 1, + STATE(1851), 1, sym_comment, - STATE(2318), 1, + STATE(2231), 1, sym_class_heritage, - [87862] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1835), 1, - sym_comment, - ACTIONS(3272), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [87879] = 4, + [88952] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1836), 1, + STATE(1852), 1, sym_comment, - ACTIONS(2105), 5, + ACTIONS(2037), 5, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [87896] = 5, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [88969] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3331), 1, + ACTIONS(3342), 1, anon_sym_EQ, - STATE(1837), 1, + STATE(1853), 1, sym_comment, - ACTIONS(1839), 4, + ACTIONS(1825), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [87915] = 4, + [88988] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1838), 1, - sym_comment, - ACTIONS(3266), 5, + ACTIONS(3284), 1, + anon_sym_extends, + ACTIONS(3345), 1, + sym_identifier, + ACTIONS(3347), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [87932] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3334), 1, - anon_sym_export, - ACTIONS(3336), 1, - anon_sym_class, - STATE(1839), 1, - sym_comment, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(2051), 1, - sym_decorator, - [87957] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1840), 1, + STATE(1162), 1, + sym_class_body, + STATE(1854), 1, sym_comment, - ACTIONS(2059), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [87974] = 4, + STATE(2454), 1, + sym_class_heritage, + [89013] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1841), 1, + STATE(1855), 1, sym_comment, - ACTIONS(3338), 5, + ACTIONS(3349), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [87991] = 4, + [89030] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1842), 1, - sym_comment, - ACTIONS(2059), 5, + ACTIONS(3282), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [88008] = 4, + ACTIONS(3284), 1, + anon_sym_extends, + ACTIONS(3351), 1, + sym_identifier, + STATE(1381), 1, + sym_class_body, + STATE(1856), 1, + sym_comment, + STATE(2231), 1, + sym_class_heritage, + [89055] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1843), 1, + STATE(1857), 1, sym_comment, - ACTIONS(2017), 5, + ACTIONS(2151), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [88025] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [89072] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(1844), 1, - sym_comment, - ACTIONS(2059), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [88042] = 4, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(1845), 1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3353), 1, + anon_sym_export, + ACTIONS(3355), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1858), 1, sym_comment, - ACTIONS(3340), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [88059] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(2178), 1, + sym_decorator, + [89097] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3342), 1, - sym_identifier, - ACTIONS(3344), 1, - anon_sym_LPAREN, - ACTIONS(3346), 1, - anon_sym_LBRACK, - ACTIONS(3348), 1, - sym_private_property_identifier, - STATE(1369), 1, - sym_arguments, - STATE(1846), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3357), 1, + anon_sym_export, + ACTIONS(3359), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1859), 1, sym_comment, - [88084] = 4, + STATE(2178), 1, + sym_decorator, + [89122] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1847), 1, + STATE(1860), 1, sym_comment, - ACTIONS(2039), 5, + ACTIONS(2061), 5, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [88101] = 4, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [89139] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1848), 1, - sym_comment, - ACTIONS(3350), 5, + ACTIONS(3282), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [88118] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3244), 1, - anon_sym_GT, - ACTIONS(3352), 1, + ACTIONS(3284), 1, + anon_sym_extends, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3354), 1, - sym_jsx_identifier, - STATE(1684), 1, - sym_nested_identifier, - STATE(1695), 1, - sym_jsx_namespace_name, - STATE(1849), 1, + STATE(1328), 1, + sym_class_body, + STATE(1861), 1, sym_comment, - [88143] = 8, + STATE(2199), 1, + sym_class_heritage, + [89164] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3356), 1, - anon_sym_export, - ACTIONS(3358), 1, - anon_sym_class, - STATE(1850), 1, + ACTIONS(3365), 1, + anon_sym_in, + ACTIONS(3367), 1, + anon_sym_of, + STATE(1862), 1, sym_comment, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(2051), 1, - sym_decorator, - [88168] = 4, + ACTIONS(3363), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [89185] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1851), 1, + STATE(1863), 1, sym_comment, - ACTIONS(2059), 5, + ACTIONS(3369), 5, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [88185] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(3072), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, sym_identifier, - STATE(1852), 1, - sym_comment, - STATE(1883), 1, - sym_string, - STATE(2340), 1, - sym__module_export_name, - [88210] = 4, + [89202] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1853), 1, + STATE(1864), 1, sym_comment, - ACTIONS(1929), 5, + ACTIONS(3371), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [88227] = 4, + [89219] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1854), 1, + STATE(1865), 1, sym_comment, - ACTIONS(1933), 5, + ACTIONS(3261), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [88244] = 8, + [89236] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, + ACTIONS(3282), 1, anon_sym_LBRACE, - ACTIONS(3252), 1, + ACTIONS(3284), 1, anon_sym_extends, - ACTIONS(3360), 1, + ACTIONS(3373), 1, sym_identifier, - STATE(1298), 1, + STATE(1328), 1, sym_class_body, - STATE(1855), 1, + STATE(1866), 1, sym_comment, - STATE(2318), 1, + STATE(2199), 1, sym_class_heritage, - [88269] = 4, + [89261] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1856), 1, + STATE(1867), 1, sym_comment, - ACTIONS(3362), 5, + ACTIONS(2089), 5, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [88286] = 4, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [89278] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1857), 1, + ACTIONS(3375), 1, + anon_sym_EQ, + STATE(1868), 1, sym_comment, - ACTIONS(3364), 5, - anon_sym_export, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_class, - anon_sym_AT, - [88303] = 4, + ACTIONS(1860), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [89297] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1858), 1, + STATE(1869), 1, sym_comment, - ACTIONS(3366), 5, + ACTIONS(2089), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [88320] = 4, + [89314] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1859), 1, + STATE(1870), 1, sym_comment, - ACTIONS(3368), 5, + ACTIONS(2089), 5, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [88337] = 6, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [89331] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1871), 1, + sym_comment, + ACTIONS(2089), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [89348] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3372), 1, - anon_sym_in, - ACTIONS(3374), 1, - anon_sym_of, - STATE(1860), 1, - sym_comment, - ACTIONS(3370), 3, - sym__automatic_semicolon, + ACTIONS(3377), 1, anon_sym_COMMA, - anon_sym_SEMI, - [88358] = 4, + ACTIONS(3379), 1, + anon_sym_RBRACE, + STATE(1872), 1, + sym_comment, + STATE(2113), 1, + aux_sym_object_repeat1, + ACTIONS(2785), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [89371] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1861), 1, - sym_comment, - ACTIONS(2105), 5, + ACTIONS(3282), 1, anon_sym_LBRACE, + ACTIONS(3284), 1, + anon_sym_extends, + ACTIONS(3381), 1, + sym_identifier, + STATE(1381), 1, + sym_class_body, + STATE(1873), 1, + sym_comment, + STATE(2231), 1, + sym_class_heritage, + [89396] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3288), 1, anon_sym_GT, + ACTIONS(3383), 1, + sym_identifier, + ACTIONS(3385), 1, sym_jsx_identifier, - anon_sym_SLASH_GT, + STATE(1697), 1, + sym_nested_identifier, + STATE(1720), 1, + sym_jsx_namespace_name, + STATE(1874), 1, + sym_comment, + [89421] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1316), 1, + anon_sym_DQUOTE, + ACTIONS(1318), 1, + anon_sym_SQUOTE, + ACTIONS(3099), 1, sym_identifier, - [88375] = 8, + STATE(1875), 1, + sym_comment, + STATE(1953), 1, + sym_string, + STATE(2595), 1, + sym__module_export_name, + [89446] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1876), 1, + sym_comment, + ACTIONS(3387), 5, + anon_sym_export, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_class, + anon_sym_AT, + [89463] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3252), 1, - anon_sym_extends, - ACTIONS(3270), 1, + ACTIONS(3282), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3284), 1, + anon_sym_extends, + ACTIONS(3389), 1, sym_identifier, - STATE(1093), 1, + STATE(1328), 1, sym_class_body, - STATE(1862), 1, + STATE(1877), 1, sym_comment, - STATE(2343), 1, + STATE(2199), 1, sym_class_heritage, - [88400] = 4, + [89488] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1863), 1, + ACTIONS(3391), 1, + sym_identifier, + ACTIONS(3393), 1, + anon_sym_GT, + ACTIONS(3395), 1, + sym_jsx_identifier, + STATE(1878), 1, sym_comment, - ACTIONS(3366), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [88417] = 8, + STATE(2309), 1, + sym_nested_identifier, + STATE(2828), 1, + sym_jsx_namespace_name, + [89513] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3250), 1, + ACTIONS(3282), 1, anon_sym_LBRACE, - ACTIONS(3252), 1, + ACTIONS(3284), 1, anon_sym_extends, - ACTIONS(3378), 1, + ACTIONS(3397), 1, sym_identifier, - STATE(1354), 1, + STATE(1328), 1, sym_class_body, - STATE(1864), 1, + STATE(1879), 1, sym_comment, - STATE(2230), 1, + STATE(2199), 1, sym_class_heritage, - [88442] = 6, + [89538] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3382), 1, + ACTIONS(1241), 1, anon_sym_AT, - STATE(2051), 1, - sym_decorator, - ACTIONS(3380), 2, + ACTIONS(3399), 1, anon_sym_export, + ACTIONS(3401), 1, anon_sym_class, - STATE(1865), 2, - sym_comment, + STATE(1834), 1, aux_sym_export_statement_repeat1, - [88463] = 8, + STATE(1880), 1, + sym_comment, + STATE(2178), 1, + sym_decorator, + [89563] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1308), 1, - anon_sym_DQUOTE, - ACTIONS(1310), 1, - anon_sym_SQUOTE, - ACTIONS(3072), 1, + ACTIONS(3288), 1, + anon_sym_GT, + ACTIONS(3403), 1, sym_identifier, - STATE(1866), 1, + ACTIONS(3405), 1, + sym_jsx_identifier, + STATE(1698), 1, + sym_nested_identifier, + STATE(1721), 1, + sym_jsx_namespace_name, + STATE(1881), 1, sym_comment, - STATE(1883), 1, - sym_string, - STATE(2685), 1, - sym__module_export_name, - [88488] = 4, + [89588] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3111), 1, + anon_sym_EQ, + STATE(1882), 1, + sym_comment, + ACTIONS(2785), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(3407), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [89609] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1867), 1, - sym_comment, - ACTIONS(2059), 5, + ACTIONS(3284), 1, + anon_sym_extends, + ACTIONS(3347), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + ACTIONS(3410), 1, sym_identifier, - [88505] = 4, + STATE(1120), 1, + sym_class_body, + STATE(1883), 1, + sym_comment, + STATE(2379), 1, + sym_class_heritage, + [89634] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1868), 1, - sym_comment, - ACTIONS(2059), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + ACTIONS(3412), 1, sym_identifier, - [88522] = 4, - ACTIONS(3), 1, + ACTIONS(3414), 1, + anon_sym_LPAREN, + ACTIONS(3416), 1, + anon_sym_LBRACK, + ACTIONS(3418), 1, + sym_private_property_identifier, + STATE(1274), 1, + sym_arguments, + STATE(1884), 1, + sym_comment, + [89659] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3420), 1, + anon_sym_export, + ACTIONS(3422), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1885), 1, + sym_comment, + STATE(2178), 1, + sym_decorator, + [89684] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(1869), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1886), 1, sym_comment, - ACTIONS(2059), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [88539] = 4, + ACTIONS(1963), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [89701] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(1870), 1, + STATE(1887), 1, sym_comment, - ACTIONS(2059), 5, + ACTIONS(1995), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [88556] = 8, + [89718] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3385), 1, + ACTIONS(3282), 1, + anon_sym_LBRACE, + ACTIONS(3284), 1, + anon_sym_extends, + ACTIONS(3424), 1, sym_identifier, - ACTIONS(3387), 1, - anon_sym_GT, - ACTIONS(3389), 1, - sym_jsx_identifier, - STATE(1871), 1, + STATE(1381), 1, + sym_class_body, + STATE(1888), 1, sym_comment, - STATE(2265), 1, - sym_nested_identifier, - STATE(2771), 1, - sym_jsx_namespace_name, - [88581] = 8, + STATE(2231), 1, + sym_class_heritage, + [89743] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3391), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3428), 1, anon_sym_GT, - ACTIONS(3395), 1, + ACTIONS(3430), 1, sym_jsx_identifier, - STATE(1872), 1, + STATE(1889), 1, sym_comment, - STATE(2382), 1, + STATE(2196), 1, sym_nested_identifier, - STATE(2740), 1, + STATE(2850), 1, sym_jsx_namespace_name, - [88606] = 7, + [89768] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3397), 1, - anon_sym_class, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(1873), 1, + ACTIONS(3149), 1, + anon_sym_EQ, + STATE(1890), 1, sym_comment, - STATE(2051), 1, - sym_decorator, - [88628] = 7, + STATE(2184), 1, + sym__initializer, + ACTIONS(3145), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [89789] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3399), 1, - sym__glimmer_template_content, - ACTIONS(3401), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1371), 1, - sym_glimmer_closing_tag, - STATE(1874), 1, + STATE(1891), 1, sym_comment, - STATE(2111), 1, - aux_sym_glimmer_template_repeat1, - [88650] = 7, + ACTIONS(1999), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [89806] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3403), 1, + ACTIONS(3432), 1, + anon_sym_SQUOTE, + STATE(1892), 1, + sym_comment, + STATE(1995), 1, + aux_sym_string_repeat2, + ACTIONS(3434), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [89826] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, + anon_sym_with, + STATE(1893), 1, + sym_comment, + STATE(2416), 1, + sym_import_attribute, + ACTIONS(3438), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [89846] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3440), 1, sym_identifier, - ACTIONS(3405), 1, + ACTIONS(3442), 1, anon_sym_STAR, - ACTIONS(3407), 1, + ACTIONS(3444), 1, anon_sym_LPAREN, - STATE(1875), 1, + STATE(1894), 1, sym_comment, - STATE(2221), 1, + STATE(2193), 1, sym_formal_parameters, - [88672] = 7, + [89868] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1895), 1, + sym_comment, + ACTIONS(3446), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [89884] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3409), 1, + ACTIONS(3448), 1, anon_sym_LBRACE, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - STATE(1109), 1, + STATE(720), 1, sym_class_body, - STATE(1876), 1, + STATE(1896), 1, sym_comment, - STATE(2305), 1, + STATE(2587), 1, sym_class_heritage, - [88694] = 7, + [89906] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2785), 1, + anon_sym_COLON, + ACTIONS(3111), 1, + anon_sym_EQ, + STATE(1897), 1, + sym_comment, + ACTIONS(3452), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [89926] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3454), 1, + anon_sym_COMMA, + ACTIONS(3456), 1, + anon_sym_EQ, + ACTIONS(3458), 1, + anon_sym_RBRACK, + STATE(1898), 1, + sym_comment, + STATE(2083), 1, + aux_sym_array_pattern_repeat1, + [89948] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2218), 1, + anon_sym_COMMA, + STATE(1899), 1, + sym_comment, + STATE(1988), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(3201), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [89968] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1900), 1, + sym_comment, + ACTIONS(2785), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(3460), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [89986] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3462), 1, + anon_sym_EQ, + STATE(1901), 1, + sym_comment, + ACTIONS(1860), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [90004] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3399), 1, + ACTIONS(3464), 1, sym__glimmer_template_content, - ACTIONS(3413), 1, + ACTIONS(3466), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(1557), 1, + STATE(1289), 1, sym_glimmer_closing_tag, - STATE(1877), 1, + STATE(1902), 1, sym_comment, - STATE(1988), 1, + STATE(2079), 1, aux_sym_glimmer_template_repeat1, - [88716] = 6, + [90026] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1878), 1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3422), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1903), 1, sym_comment, - STATE(1913), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3417), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [88736] = 6, + STATE(2178), 1, + sym_decorator, + [90048] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3468), 1, + anon_sym_LBRACE, + STATE(1144), 1, + sym_class_body, + STATE(1904), 1, + sym_comment, + STATE(2455), 1, + sym_class_heritage, + [90070] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1879), 1, + ACTIONS(3436), 1, + anon_sym_with, + STATE(1905), 1, sym_comment, - STATE(1913), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3419), 2, + STATE(2615), 1, + sym_import_attribute, + ACTIONS(3470), 2, sym__automatic_semicolon, anon_sym_SEMI, - [88756] = 6, + [90090] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3421), 1, - anon_sym_DQUOTE, - STATE(1880), 1, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + sym_identifier, + ACTIONS(3474), 1, + anon_sym_STAR, + STATE(1906), 1, sym_comment, - STATE(1899), 1, - aux_sym_string_repeat1, - ACTIONS(3423), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [88776] = 7, + STATE(2399), 1, + sym_formal_parameters, + [90112] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3358), 1, - anon_sym_class, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(1881), 1, + ACTIONS(3436), 1, + anon_sym_with, + STATE(1907), 1, sym_comment, - STATE(2051), 1, - sym_decorator, - [88798] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(2284), 1, + sym_import_attribute, + ACTIONS(3476), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90132] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3421), 1, - anon_sym_SQUOTE, - STATE(1882), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1908), 1, sym_comment, - STATE(1901), 1, - aux_sym_string_repeat2, - ACTIONS(3425), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [88818] = 4, + ACTIONS(2413), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [90148] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1883), 1, - sym_comment, - ACTIONS(3427), 4, - anon_sym_as, + ACTIONS(3478), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [88834] = 5, + STATE(1909), 1, + sym_comment, + STATE(2000), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3480), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90168] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3429), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(2299), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(1884), 2, + STATE(1910), 1, sym_comment, - aux_sym_array_repeat1, - [88852] = 5, + STATE(2000), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3482), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90188] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1885), 1, - sym_comment, - ACTIONS(2765), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(3432), 2, + ACTIONS(3478), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [88870] = 7, + STATE(1909), 1, + aux_sym_variable_declaration_repeat1, + STATE(1911), 1, + sym_comment, + ACTIONS(3484), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90208] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3434), 1, - anon_sym_LBRACE, - STATE(828), 1, - sym_class_body, - STATE(1886), 1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(1910), 1, + aux_sym_variable_declaration_repeat1, + STATE(1912), 1, sym_comment, - STATE(2237), 1, - sym_class_heritage, - [88892] = 6, + ACTIONS(3486), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90228] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2236), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1887), 1, + STATE(1913), 1, sym_comment, - STATE(1895), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(3176), 2, + STATE(2023), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3488), 2, sym__automatic_semicolon, anon_sym_SEMI, - [88912] = 6, + [90248] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - STATE(1888), 1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(1914), 1, sym_comment, - STATE(2239), 1, - sym__from_clause, - ACTIONS(3438), 2, + STATE(2033), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3490), 2, sym__automatic_semicolon, anon_sym_SEMI, - [88932] = 6, + [90268] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1889), 1, + STATE(1915), 1, sym_comment, - STATE(1904), 1, + STATE(1934), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3440), 2, + ACTIONS(3492), 2, sym__automatic_semicolon, anon_sym_SEMI, - [88952] = 6, + [90288] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1890), 1, + STATE(1916), 1, sym_comment, - STATE(1905), 1, + STATE(1936), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3442), 2, + ACTIONS(3494), 2, sym__automatic_semicolon, anon_sym_SEMI, - [88972] = 5, + [90308] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3446), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - STATE(1891), 2, + anon_sym_LPAREN, + ACTIONS(3496), 1, + sym_identifier, + ACTIONS(3498), 1, + anon_sym_STAR, + STATE(1917), 1, sym_comment, - aux_sym_string_repeat1, - [88990] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(2470), 1, + sym_formal_parameters, + [90330] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3449), 1, - anon_sym_SQUOTE, - ACTIONS(3451), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - STATE(1892), 2, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3500), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1918), 1, sym_comment, - aux_sym_string_repeat2, - [89008] = 4, + STATE(2178), 1, + sym_decorator, + [90352] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1893), 1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(494), 1, + sym_class_body, + STATE(1919), 1, sym_comment, - ACTIONS(3454), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [89024] = 6, + STATE(2538), 1, + sym_class_heritage, + [90374] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3456), 1, - anon_sym_STAR, - ACTIONS(3458), 1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3504), 1, anon_sym_LBRACE, - STATE(1894), 1, + STATE(163), 1, + sym_class_body, + STATE(1920), 1, sym_comment, - STATE(2762), 2, - sym_namespace_import, - sym_named_imports, - [89044] = 5, + STATE(2535), 1, + sym_class_heritage, + [90396] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3460), 1, - anon_sym_COMMA, - ACTIONS(2071), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1895), 2, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3506), 1, + sym_identifier, + ACTIONS(3508), 1, + anon_sym_STAR, + STATE(1921), 1, sym_comment, - aux_sym_sequence_expression_repeat1, - [89062] = 6, + STATE(2193), 1, + sym_formal_parameters, + [90418] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3463), 1, + ACTIONS(3510), 1, anon_sym_DQUOTE, - STATE(1896), 1, + STATE(1922), 1, sym_comment, - STATE(1967), 1, + STATE(1984), 1, aux_sym_string_repeat1, - ACTIONS(3423), 2, + ACTIONS(3512), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [89082] = 6, + [90438] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3463), 1, + ACTIONS(3510), 1, anon_sym_SQUOTE, - STATE(1897), 1, + STATE(1923), 1, sym_comment, - STATE(1968), 1, + STATE(1990), 1, aux_sym_string_repeat2, - ACTIONS(3425), 2, + ACTIONS(3434), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [89102] = 7, + [90458] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + sym_identifier, + ACTIONS(3516), 1, + anon_sym_STAR, + STATE(1924), 1, + sym_comment, + STATE(2193), 1, + sym_formal_parameters, + [90480] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - ACTIONS(3465), 1, + ACTIONS(3518), 1, anon_sym_LBRACE, STATE(182), 1, sym_class_body, - STATE(1898), 1, + STATE(1925), 1, sym_comment, - STATE(2256), 1, + STATE(2300), 1, sym_class_heritage, - [89124] = 6, - ACTIONS(3), 1, + [90502] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(1926), 1, + sym_comment, + STATE(2000), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3520), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90522] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3467), 1, - anon_sym_DQUOTE, - STATE(1891), 1, - aux_sym_string_repeat1, - STATE(1899), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(1927), 1, sym_comment, - ACTIONS(3423), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [89144] = 7, + STATE(2000), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3522), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90542] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - ACTIONS(3469), 1, + ACTIONS(3524), 1, anon_sym_LBRACE, - STATE(219), 1, + STATE(564), 1, sym_class_body, - STATE(1900), 1, + STATE(1928), 1, sym_comment, - STATE(2336), 1, + STATE(2313), 1, sym_class_heritage, - [89166] = 6, - ACTIONS(3), 1, + [90564] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, + anon_sym_with, + ACTIONS(3526), 1, + anon_sym_SEMI, + ACTIONS(3528), 1, + sym__automatic_semicolon, + STATE(1929), 1, + sym_comment, + STATE(2528), 1, + sym_import_attribute, + [90586] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(485), 1, + sym_class_body, + STATE(1930), 1, + sym_comment, + STATE(2191), 1, + sym_class_heritage, + [90608] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3467), 1, - anon_sym_SQUOTE, - STATE(1892), 1, - aux_sym_string_repeat2, - STATE(1901), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3448), 1, + anon_sym_LBRACE, + ACTIONS(3450), 1, + anon_sym_extends, + STATE(724), 1, + sym_class_body, + STATE(1931), 1, sym_comment, - ACTIONS(3425), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [89186] = 6, + STATE(2192), 1, + sym_class_heritage, + [90630] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3471), 1, - anon_sym_SQUOTE, - STATE(1892), 1, - aux_sym_string_repeat2, - STATE(1902), 1, + ACTIONS(3432), 1, + anon_sym_DQUOTE, + STATE(1932), 1, sym_comment, - ACTIONS(3425), 2, - sym_unescaped_single_string_fragment, + STATE(1994), 1, + aux_sym_string_repeat1, + ACTIONS(3512), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [89206] = 7, + [90650] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3473), 1, - anon_sym_LBRACE, - STATE(532), 1, - sym_class_body, - STATE(1903), 1, + ACTIONS(3436), 1, + anon_sym_with, + ACTIONS(3530), 1, + anon_sym_SEMI, + ACTIONS(3532), 1, + sym__automatic_semicolon, + STATE(1933), 1, sym_comment, - STATE(2269), 1, - sym_class_heritage, - [89228] = 6, + STATE(2316), 1, + sym_import_attribute, + [90672] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1904), 1, + STATE(1934), 1, sym_comment, - STATE(1913), 1, + STATE(2000), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3475), 2, + ACTIONS(3534), 2, sym__automatic_semicolon, anon_sym_SEMI, - [89248] = 6, + [90692] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3536), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1935), 1, + sym_comment, + STATE(2178), 1, + sym_decorator, + [90714] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1905), 1, + STATE(1936), 1, sym_comment, - STATE(1913), 1, + STATE(2000), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3477), 2, + ACTIONS(3538), 2, sym__automatic_semicolon, anon_sym_SEMI, - [89268] = 7, + [90734] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - ACTIONS(3434), 1, + ACTIONS(3504), 1, anon_sym_LBRACE, - STATE(711), 1, + STATE(166), 1, sym_class_body, - STATE(1906), 1, + STATE(1937), 1, sym_comment, - STATE(2348), 1, + STATE(2517), 1, sym_class_heritage, - [89290] = 7, + [90756] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3401), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1938), 1, + sym_comment, + STATE(2178), 1, + sym_decorator, + [90778] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3399), 1, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3540), 1, + sym_identifier, + ACTIONS(3542), 1, + anon_sym_STAR, + STATE(1939), 1, + sym_comment, + STATE(2470), 1, + sym_formal_parameters, + [90800] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3544), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1940), 1, + sym_comment, + STATE(2178), 1, + sym_decorator, + [90822] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3546), 1, + anon_sym_SQUOTE, + STATE(1941), 1, + sym_comment, + STATE(2008), 1, + aux_sym_string_repeat2, + ACTIONS(3434), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [90842] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1942), 1, + sym_comment, + ACTIONS(2343), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [90858] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1943), 1, + sym_comment, + ACTIONS(2307), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [90874] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3464), 1, sym__glimmer_template_content, - ACTIONS(3479), 1, + ACTIONS(3548), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(1132), 1, + STATE(1139), 1, sym_glimmer_closing_tag, - STATE(1907), 1, + STATE(1944), 1, sym_comment, - STATE(1964), 1, + STATE(1983), 1, aux_sym_glimmer_template_repeat1, - [89312] = 6, + [90896] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3550), 1, + sym_identifier, + ACTIONS(3552), 1, + anon_sym_STAR, + STATE(1945), 1, + sym_comment, + STATE(2193), 1, + sym_formal_parameters, + [90918] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2765), 1, - anon_sym_COLON, - ACTIONS(3082), 1, - anon_sym_EQ, - STATE(1908), 1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3518), 1, + anon_sym_LBRACE, + STATE(198), 1, + sym_class_body, + STATE(1946), 1, sym_comment, - ACTIONS(3481), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [89332] = 6, + STATE(2323), 1, + sym_class_heritage, + [90940] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1909), 1, + STATE(1947), 1, sym_comment, - STATE(1913), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3483), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [89352] = 6, - ACTIONS(3), 1, + ACTIONS(3554), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [90956] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, aux_sym_comment_token1, + STATE(1948), 1, + sym_comment, + ACTIONS(3556), 4, + anon_sym_LPAREN, + anon_sym_DOT, + sym_optional_chain, + anon_sym_BQUOTE, + [90972] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3471), 1, - anon_sym_DQUOTE, - STATE(1891), 1, - aux_sym_string_repeat1, - STATE(1910), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(1926), 1, + aux_sym_variable_declaration_repeat1, + STATE(1949), 1, sym_comment, - ACTIONS(3423), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [89372] = 7, + ACTIONS(3558), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90992] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - ACTIONS(3465), 1, + ACTIONS(3524), 1, anon_sym_LBRACE, - STATE(196), 1, + STATE(552), 1, sym_class_body, - STATE(1911), 1, + STATE(1950), 1, + sym_comment, + STATE(2326), 1, + sym_class_heritage, + [91014] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3560), 1, + anon_sym_from, + STATE(1951), 1, + sym_comment, + STATE(2418), 1, + sym__from_clause, + ACTIONS(3562), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [91034] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3464), 1, + sym__glimmer_template_content, + ACTIONS(3564), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(1582), 1, + sym_glimmer_closing_tag, + STATE(1952), 1, sym_comment, - STATE(2278), 1, - sym_class_heritage, - [89394] = 7, + STATE(2079), 1, + aux_sym_glimmer_template_repeat1, + [91056] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3473), 1, - anon_sym_LBRACE, - STATE(585), 1, - sym_class_body, - STATE(1912), 1, + STATE(1953), 1, sym_comment, - STATE(2281), 1, - sym_class_heritage, - [89416] = 5, + ACTIONS(3566), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [91072] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3485), 1, - anon_sym_COMMA, - ACTIONS(3488), 2, + ACTIONS(3560), 1, + anon_sym_from, + STATE(1954), 1, + sym_comment, + STATE(2280), 1, + sym__from_clause, + ACTIONS(3568), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1913), 2, - sym_comment, - aux_sym_variable_declaration_repeat1, - [89434] = 6, + [91092] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - STATE(1914), 1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(1927), 1, + aux_sym_variable_declaration_repeat1, + STATE(1955), 1, sym_comment, - STATE(2170), 1, - sym__from_clause, - ACTIONS(3490), 2, + ACTIONS(3570), 2, sym__automatic_semicolon, anon_sym_SEMI, - [89454] = 6, + [91112] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3492), 1, + ACTIONS(3572), 1, anon_sym_DQUOTE, - STATE(1915), 1, + STATE(1956), 1, sym_comment, - STATE(1925), 1, + STATE(2004), 1, aux_sym_string_repeat1, - ACTIONS(3423), 2, + ACTIONS(3512), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [89474] = 6, + [91132] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3359), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1957), 1, + sym_comment, + STATE(2178), 1, + sym_decorator, + [91154] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3492), 1, + ACTIONS(3572), 1, anon_sym_SQUOTE, - STATE(1916), 1, + STATE(1958), 1, sym_comment, - STATE(1926), 1, + STATE(2007), 1, aux_sym_string_repeat2, - ACTIONS(3425), 2, + ACTIONS(3434), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [89494] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [91174] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3494), 1, - sym_identifier, - ACTIONS(3496), 1, - anon_sym_STAR, - STATE(1917), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3574), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1959), 1, sym_comment, - STATE(2200), 1, - sym_formal_parameters, - [89516] = 6, + STATE(2178), 1, + sym_decorator, + [91196] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(3436), 1, - anon_sym_from, - STATE(1918), 1, + anon_sym_with, + STATE(1960), 1, sym_comment, - STATE(2357), 1, - sym__from_clause, - ACTIONS(3498), 2, + STATE(2505), 1, + sym_import_attribute, + ACTIONS(3576), 2, sym__automatic_semicolon, anon_sym_SEMI, - [89536] = 7, + [91216] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3409), 1, - anon_sym_LBRACE, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - STATE(1099), 1, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(1370), 1, sym_class_body, - STATE(1919), 1, + STATE(1961), 1, sym_comment, - STATE(2424), 1, + STATE(2293), 1, sym_class_heritage, - [89558] = 6, + [91238] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3580), 1, + sym_identifier, + ACTIONS(3582), 1, + anon_sym_STAR, + STATE(1962), 1, + sym_comment, + STATE(2470), 1, + sym_formal_parameters, + [91260] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1920), 1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3584), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1963), 1, sym_comment, - STATE(1928), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3500), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [89578] = 6, + STATE(2178), 1, + sym_decorator, + [91282] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1909), 1, - aux_sym_variable_declaration_repeat1, - STATE(1921), 1, + ACTIONS(3560), 1, + anon_sym_from, + STATE(1964), 1, sym_comment, - ACTIONS(3502), 2, + STATE(2402), 1, + sym__from_clause, + ACTIONS(3586), 2, sym__automatic_semicolon, anon_sym_SEMI, - [89598] = 7, + [91302] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(208), 1, - sym_class_body, - STATE(1922), 1, + ACTIONS(3588), 1, + anon_sym_COMMA, + ACTIONS(2369), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(1965), 2, sym_comment, - STATE(2193), 1, - sym_class_heritage, - [89620] = 4, + aux_sym_array_repeat1, + [91320] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1923), 1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(1966), 1, sym_comment, - ACTIONS(3504), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [89636] = 7, + STATE(2031), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [91340] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3506), 1, - anon_sym_LBRACE, - STATE(186), 1, - sym_class_body, - STATE(1924), 1, - sym_comment, - STATE(2374), 1, - sym_class_heritage, - [89658] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3508), 1, - anon_sym_DQUOTE, - STATE(1891), 1, - aux_sym_string_repeat1, - STATE(1925), 1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(1967), 1, sym_comment, - ACTIONS(3423), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [89678] = 6, + STATE(2032), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3593), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [91360] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3508), 1, + ACTIONS(3595), 1, + sym_html_character_reference, + ACTIONS(3598), 1, anon_sym_SQUOTE, - STATE(1892), 1, - aux_sym_string_repeat2, - STATE(1926), 1, - sym_comment, - ACTIONS(3425), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [89698] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(631), 1, - sym_class_body, - STATE(1927), 1, + ACTIONS(3600), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1968), 2, sym_comment, - STATE(2386), 1, - sym_class_heritage, - [89720] = 6, + aux_sym__jsx_string_repeat2, + [91380] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_variable_declaration_repeat1, - STATE(1928), 1, + ACTIONS(3560), 1, + anon_sym_from, + STATE(1969), 1, sym_comment, - ACTIONS(3512), 2, + STATE(2503), 1, + sym__from_clause, + ACTIONS(3603), 2, sym__automatic_semicolon, anon_sym_SEMI, - [89740] = 6, + [91400] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1929), 1, + ACTIONS(3546), 1, + anon_sym_DQUOTE, + STATE(1970), 1, sym_comment, - STATE(1993), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3514), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [89760] = 6, + STATE(1996), 1, + aux_sym_string_repeat1, + ACTIONS(3512), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [91420] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1930), 1, + STATE(1971), 1, sym_comment, - STATE(1994), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3516), 2, + ACTIONS(2785), 4, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [89780] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + anon_sym_EQ, + [91436] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(1931), 1, - sym_comment, - ACTIONS(3518), 4, - anon_sym_LPAREN, - anon_sym_DOT, - sym_optional_chain, - anon_sym_BQUOTE, - [89796] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3506), 1, - anon_sym_LBRACE, - STATE(177), 1, - sym_class_body, - STATE(1932), 1, + ACTIONS(3605), 1, + sym_html_character_reference, + ACTIONS(3608), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1972), 2, sym_comment, - STATE(2395), 1, - sym_class_heritage, - [89818] = 7, + aux_sym__jsx_string_repeat1, + [91456] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(651), 1, - sym_class_body, - STATE(1933), 1, + STATE(1973), 1, sym_comment, - STATE(2398), 1, - sym_class_heritage, - [89840] = 7, + ACTIONS(2367), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [91472] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3520), 1, - anon_sym_COMMA, - ACTIONS(3522), 1, - anon_sym_EQ, - ACTIONS(3524), 1, - anon_sym_RBRACK, - STATE(1934), 1, + ACTIONS(3560), 1, + anon_sym_from, + STATE(1974), 1, sym_comment, - STATE(2133), 1, - aux_sym_array_pattern_repeat1, - [89862] = 6, + STATE(2529), 1, + sym__from_clause, + ACTIONS(3613), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [91492] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3526), 1, - anon_sym_EQ, - STATE(1935), 1, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3615), 1, + sym_identifier, + ACTIONS(3617), 1, + anon_sym_STAR, + STATE(1975), 1, sym_comment, - STATE(2500), 1, - sym__initializer, - ACTIONS(3114), 2, - anon_sym_in, - anon_sym_of, - [89882] = 6, + STATE(2470), 1, + sym_formal_parameters, + [91514] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3528), 1, - anon_sym_DQUOTE, - STATE(1936), 1, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3619), 1, + sym_identifier, + ACTIONS(3621), 1, + anon_sym_STAR, + STATE(1976), 1, sym_comment, - STATE(1942), 1, - aux_sym_string_repeat1, - ACTIONS(3423), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [89902] = 6, + STATE(2437), 1, + sym_formal_parameters, + [91536] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3528), 1, - anon_sym_SQUOTE, - STATE(1937), 1, + ACTIONS(3464), 1, + sym__glimmer_template_content, + ACTIONS(3564), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(1589), 1, + sym_glimmer_closing_tag, + STATE(1952), 1, + aux_sym_glimmer_template_repeat1, + STATE(1977), 1, sym_comment, - STATE(1943), 1, - aux_sym_string_repeat2, - ACTIONS(3425), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [89922] = 6, + [91558] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(3436), 1, - anon_sym_from, - STATE(1938), 1, + anon_sym_with, + STATE(1978), 1, sym_comment, - STATE(2460), 1, - sym__from_clause, - ACTIONS(3530), 2, + STATE(2404), 1, + sym_import_attribute, + ACTIONS(3623), 2, sym__automatic_semicolon, anon_sym_SEMI, - [89942] = 6, + [91578] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1939), 1, + STATE(1979), 1, sym_comment, - STATE(1945), 1, + STATE(2027), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3532), 2, + ACTIONS(3625), 2, sym__automatic_semicolon, anon_sym_SEMI, - [89962] = 6, + [91598] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1940), 1, + STATE(1980), 1, sym_comment, - STATE(1946), 1, + STATE(2024), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3534), 2, + ACTIONS(3627), 2, sym__automatic_semicolon, anon_sym_SEMI, - [89982] = 7, + [91618] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3330), 1, + anon_sym_class, + STATE(1834), 1, + aux_sym_export_statement_repeat1, + STATE(1981), 1, + sym_comment, + STATE(2178), 1, + sym_decorator, + [91640] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3450), 1, anon_sym_extends, - ACTIONS(3536), 1, + ACTIONS(3629), 1, anon_sym_LBRACE, - STATE(153), 1, - sym_class_body, - STATE(1941), 1, + STATE(1982), 1, sym_comment, - STATE(2473), 1, + STATE(2070), 1, + sym_class_body, + STATE(2321), 1, sym_class_heritage, - [90004] = 6, + [91662] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3538), 1, - anon_sym_DQUOTE, - STATE(1891), 1, - aux_sym_string_repeat1, - STATE(1942), 1, + ACTIONS(3464), 1, + sym__glimmer_template_content, + ACTIONS(3548), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(1114), 1, + sym_glimmer_closing_tag, + STATE(1983), 1, sym_comment, - ACTIONS(3423), 2, + STATE(2079), 1, + aux_sym_glimmer_template_repeat1, + [91684] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3631), 1, + anon_sym_DQUOTE, + ACTIONS(3633), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [90024] = 6, + STATE(1984), 2, + sym_comment, + aux_sym_string_repeat1, + [91702] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3538), 1, + ACTIONS(3636), 1, + sym_html_character_reference, + ACTIONS(3638), 1, anon_sym_SQUOTE, - STATE(1892), 1, - aux_sym_string_repeat2, - STATE(1943), 1, + ACTIONS(3640), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1985), 1, sym_comment, - ACTIONS(3425), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [90044] = 7, + STATE(2030), 1, + aux_sym__jsx_string_repeat2, + [91724] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(522), 1, - sym_class_body, - STATE(1944), 1, + ACTIONS(3642), 1, + anon_sym_SQUOTE, + STATE(1923), 1, + aux_sym_string_repeat2, + STATE(1986), 1, sym_comment, - STATE(2481), 1, - sym_class_heritage, - [90066] = 6, + ACTIONS(3434), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [91744] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, + ACTIONS(3454), 1, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_variable_declaration_repeat1, - STATE(1945), 1, + ACTIONS(3456), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_RBRACK, + STATE(1987), 1, sym_comment, - ACTIONS(3542), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [90086] = 6, + STATE(2052), 1, + aux_sym_array_pattern_repeat1, + [91766] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, + ACTIONS(3646), 1, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_variable_declaration_repeat1, - STATE(1946), 1, - sym_comment, - ACTIONS(3544), 2, + ACTIONS(1967), 2, sym__automatic_semicolon, anon_sym_SEMI, - [90106] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3536), 1, - anon_sym_LBRACE, - STATE(152), 1, - sym_class_body, - STATE(1947), 1, + STATE(1988), 2, sym_comment, - STATE(2490), 1, - sym_class_heritage, - [90128] = 7, + aux_sym_sequence_expression_repeat1, + [91784] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - ACTIONS(3540), 1, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(482), 1, + STATE(1384), 1, sym_class_body, - STATE(1948), 1, + STATE(1989), 1, sym_comment, - STATE(2493), 1, + STATE(2344), 1, sym_class_heritage, - [90150] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + [91806] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3546), 1, - anon_sym_class, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(1949), 1, - sym_comment, - STATE(2051), 1, - sym_decorator, - [90172] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3520), 1, - anon_sym_COMMA, - ACTIONS(3522), 1, - anon_sym_EQ, - ACTIONS(3548), 1, - anon_sym_RBRACK, - STATE(1950), 1, + ACTIONS(3649), 1, + anon_sym_SQUOTE, + ACTIONS(3651), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + STATE(1990), 2, sym_comment, - STATE(2021), 1, - aux_sym_array_pattern_repeat1, - [90194] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + aux_sym_string_repeat2, + [91824] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(3522), 1, - anon_sym_EQ, - ACTIONS(3550), 1, - anon_sym_COMMA, - ACTIONS(3552), 1, - anon_sym_RPAREN, - STATE(1951), 1, - sym_comment, - STATE(2146), 1, - aux_sym_formal_parameters_repeat1, - [90216] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1952), 1, + ACTIONS(3642), 1, + anon_sym_DQUOTE, + STATE(1922), 1, + aux_sym_string_repeat1, + STATE(1991), 1, sym_comment, - STATE(1954), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3554), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [90236] = 6, + ACTIONS(3512), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [91844] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1953), 1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3654), 1, + anon_sym_LBRACE, + STATE(213), 1, + sym_class_body, + STATE(1992), 1, sym_comment, - STATE(1955), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3556), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [90256] = 6, + STATE(2630), 1, + sym_class_heritage, + [91866] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_variable_declaration_repeat1, - STATE(1954), 1, + STATE(1993), 1, sym_comment, - ACTIONS(3558), 2, + ACTIONS(2470), 4, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [90276] = 6, + anon_sym_EQ, + [91882] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_variable_declaration_repeat1, - STATE(1955), 1, + ACTIONS(3656), 1, + anon_sym_DQUOTE, + STATE(1984), 1, + aux_sym_string_repeat1, + STATE(1994), 1, sym_comment, - ACTIONS(3560), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [90296] = 7, + ACTIONS(3512), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [91902] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3562), 1, - sym_identifier, - ACTIONS(3564), 1, - anon_sym_STAR, - STATE(1956), 1, + ACTIONS(3656), 1, + anon_sym_SQUOTE, + STATE(1990), 1, + aux_sym_string_repeat2, + STATE(1995), 1, sym_comment, - STATE(2287), 1, - sym_formal_parameters, - [90318] = 4, + ACTIONS(3434), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [91922] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(1957), 1, + ACTIONS(3658), 1, + anon_sym_DQUOTE, + STATE(1984), 1, + aux_sym_string_repeat1, + STATE(1996), 1, sym_comment, - ACTIONS(2161), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [90334] = 7, + ACTIONS(3512), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [91942] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - ACTIONS(3566), 1, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(1319), 1, + STATE(1322), 1, sym_class_body, - STATE(1958), 1, + STATE(1997), 1, sym_comment, - STATE(2220), 1, + STATE(2400), 1, sym_class_heritage, - [90356] = 6, + [91964] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1878), 1, - aux_sym_variable_declaration_repeat1, - STATE(1959), 1, + ACTIONS(3660), 1, + anon_sym_STAR, + ACTIONS(3662), 1, + anon_sym_LBRACE, + STATE(1998), 1, sym_comment, - ACTIONS(3568), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [90376] = 6, + STATE(2812), 2, + sym_namespace_import, + sym_named_imports, + [91984] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, - anon_sym_COMMA, - STATE(1879), 1, - aux_sym_variable_declaration_repeat1, - STATE(1960), 1, + ACTIONS(3664), 1, + anon_sym_EQ, + STATE(1999), 1, sym_comment, - ACTIONS(3570), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [90396] = 4, + STATE(2220), 1, + sym__initializer, + ACTIONS(3147), 2, + anon_sym_in, + anon_sym_of, + [92004] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1961), 1, - sym_comment, - ACTIONS(2468), 4, + ACTIONS(3666), 1, + anon_sym_COMMA, + ACTIONS(3669), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, + STATE(2000), 2, + sym_comment, + aux_sym_variable_declaration_repeat1, + [92022] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3456), 1, anon_sym_EQ, - [90412] = 4, + ACTIONS(3671), 1, + anon_sym_COMMA, + ACTIONS(3673), 1, + anon_sym_RPAREN, + STATE(2001), 1, + sym_comment, + STATE(2134), 1, + aux_sym_formal_parameters_repeat1, + [92044] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1962), 1, + ACTIONS(3251), 1, + anon_sym_finally, + STATE(2002), 1, sym_comment, - ACTIONS(2037), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [90428] = 5, + STATE(2628), 1, + sym_finally_clause, + ACTIONS(1503), 2, + anon_sym_else, + anon_sym_while, + [92064] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3572), 1, - anon_sym_EQ, - STATE(1963), 1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3675), 1, + anon_sym_LBRACE, + STATE(530), 1, + sym_class_body, + STATE(2003), 1, sym_comment, - ACTIONS(1835), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [90446] = 7, + STATE(2445), 1, + sym_class_heritage, + [92086] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3399), 1, - sym__glimmer_template_content, - ACTIONS(3479), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1086), 1, - sym_glimmer_closing_tag, - STATE(1964), 1, + ACTIONS(3677), 1, + anon_sym_DQUOTE, + STATE(1984), 1, + aux_sym_string_repeat1, + STATE(2004), 1, sym_comment, - STATE(2111), 1, - aux_sym_glimmer_template_repeat1, - [90468] = 4, + ACTIONS(3512), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [92106] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1965), 1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3679), 1, + anon_sym_LBRACE, + STATE(173), 1, + sym_class_body, + STATE(2005), 1, sym_comment, - ACTIONS(2765), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [90484] = 4, + STATE(2442), 1, + sym_class_heritage, + [92128] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1966), 1, + ACTIONS(3436), 1, + anon_sym_with, + ACTIONS(3681), 1, + anon_sym_SEMI, + ACTIONS(3683), 1, + sym__automatic_semicolon, + STATE(2006), 1, sym_comment, - ACTIONS(2347), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [90500] = 6, + STATE(2390), 1, + sym_import_attribute, + [92150] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3574), 1, - anon_sym_DQUOTE, - STATE(1891), 1, - aux_sym_string_repeat1, - STATE(1967), 1, + ACTIONS(3677), 1, + anon_sym_SQUOTE, + STATE(1990), 1, + aux_sym_string_repeat2, + STATE(2007), 1, sym_comment, - ACTIONS(3423), 2, - sym_unescaped_double_string_fragment, + ACTIONS(3434), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [90520] = 6, + [92170] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3574), 1, + ACTIONS(3658), 1, anon_sym_SQUOTE, - STATE(1892), 1, + STATE(1990), 1, aux_sym_string_repeat2, - STATE(1968), 1, + STATE(2008), 1, sym_comment, - ACTIONS(3425), 2, + ACTIONS(3434), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [90540] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + [92190] = 7, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(1969), 1, - sym_comment, - ACTIONS(2322), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [90556] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3566), 1, - anon_sym_LBRACE, - STATE(1351), 1, - sym_class_body, - STATE(1970), 1, + ACTIONS(3464), 1, + sym__glimmer_template_content, + ACTIONS(3466), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(1286), 1, + sym_glimmer_closing_tag, + STATE(1902), 1, + aux_sym_glimmer_template_repeat1, + STATE(2009), 1, sym_comment, - STATE(2582), 1, - sym_class_heritage, - [90578] = 6, + [92212] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(3436), 1, - anon_sym_from, - STATE(1971), 1, - sym_comment, - STATE(2195), 1, - sym__from_clause, - ACTIONS(3576), 2, - sym__automatic_semicolon, + anon_sym_with, + ACTIONS(3685), 1, anon_sym_SEMI, - [90598] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3580), 1, - anon_sym_STAR, - STATE(1972), 1, + ACTIONS(3687), 1, + sym__automatic_semicolon, + STATE(2010), 1, sym_comment, - STATE(2294), 1, - sym_formal_parameters, - [90620] = 7, + STATE(2435), 1, + sym_import_attribute, + [92234] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - ACTIONS(3566), 1, + ACTIONS(3654), 1, anon_sym_LBRACE, - STATE(1343), 1, + STATE(215), 1, sym_class_body, - STATE(1973), 1, + STATE(2011), 1, sym_comment, - STATE(2476), 1, + STATE(2473), 1, sym_class_heritage, - [90642] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + [92256] = 7, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3582), 1, - anon_sym_class, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(1974), 1, - sym_comment, - STATE(2051), 1, - sym_decorator, - [90664] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3336), 1, - anon_sym_class, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(1975), 1, + ACTIONS(3689), 1, + sym_html_character_reference, + ACTIONS(3691), 1, + anon_sym_DQUOTE, + ACTIONS(3693), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1972), 1, + aux_sym__jsx_string_repeat1, + STATE(2012), 1, sym_comment, - STATE(2051), 1, - sym_decorator, - [90686] = 7, + [92278] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3399), 1, - sym__glimmer_template_content, - ACTIONS(3401), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1273), 1, - sym_glimmer_closing_tag, - STATE(1874), 1, - aux_sym_glimmer_template_repeat1, - STATE(1976), 1, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3695), 1, + sym_identifier, + ACTIONS(3697), 1, + anon_sym_STAR, + STATE(2013), 1, sym_comment, - [90708] = 7, + STATE(2193), 1, + sym_formal_parameters, + [92300] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, + ACTIONS(3444), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3699), 1, sym_identifier, - ACTIONS(3586), 1, + ACTIONS(3701), 1, anon_sym_STAR, - STATE(1977), 1, + STATE(2014), 1, sym_comment, - STATE(2200), 1, + STATE(2470), 1, sym_formal_parameters, - [90730] = 7, + [92322] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(3256), 1, + ACTIONS(3355), 1, anon_sym_class, - STATE(1865), 1, + STATE(1834), 1, aux_sym_export_statement_repeat1, - STATE(1978), 1, + STATE(2015), 1, sym_comment, - STATE(2051), 1, + STATE(2178), 1, sym_decorator, - [90752] = 7, + [92344] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3638), 1, + anon_sym_DQUOTE, + ACTIONS(3689), 1, + sym_html_character_reference, + ACTIONS(3693), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(2012), 1, + aux_sym__jsx_string_repeat1, + STATE(2016), 1, + sym_comment, + [92366] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - ACTIONS(3588), 1, + ACTIONS(3468), 1, anon_sym_LBRACE, - STATE(1979), 1, - sym_comment, - STATE(2028), 1, + STATE(1143), 1, sym_class_body, - STATE(2571), 1, + STATE(2017), 1, + sym_comment, + STATE(2410), 1, sym_class_heritage, - [90774] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [92388] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - sym_identifier, - ACTIONS(3592), 1, - anon_sym_STAR, - STATE(1980), 1, - sym_comment, - STATE(2200), 1, - sym_formal_parameters, - [90796] = 6, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3594), 1, - anon_sym_SQUOTE, - STATE(1902), 1, - aux_sym_string_repeat2, - STATE(1981), 1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3675), 1, + anon_sym_LBRACE, + STATE(526), 1, + sym_class_body, + STATE(2018), 1, sym_comment, - ACTIONS(3425), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [90816] = 7, + STATE(2432), 1, + sym_class_heritage, + [92410] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, + ACTIONS(3450), 1, anon_sym_extends, - ACTIONS(3588), 1, + ACTIONS(3629), 1, anon_sym_LBRACE, - STATE(1982), 1, + STATE(2019), 1, sym_comment, - STATE(2039), 1, + STATE(2188), 1, sym_class_body, - STATE(2508), 1, + STATE(2374), 1, sym_class_heritage, - [90838] = 6, + [92432] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3594), 1, - anon_sym_DQUOTE, - STATE(1910), 1, - aux_sym_string_repeat1, - STATE(1983), 1, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3703), 1, + sym_identifier, + ACTIONS(3705), 1, + anon_sym_STAR, + STATE(2020), 1, sym_comment, - ACTIONS(3423), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [90858] = 7, + STATE(2193), 1, + sym_formal_parameters, + [92454] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(3282), 1, + ACTIONS(3707), 1, anon_sym_class, - STATE(1865), 1, + STATE(1834), 1, aux_sym_export_statement_repeat1, - STATE(1984), 1, + STATE(2021), 1, sym_comment, - STATE(2051), 1, + STATE(2178), 1, sym_decorator, - [90880] = 4, + [92476] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1985), 1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(1311), 1, + sym_class_body, + STATE(2022), 1, sym_comment, - ACTIONS(2317), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [90896] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(2363), 1, + sym_class_heritage, + [92498] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3596), 1, - sym_identifier, - ACTIONS(3598), 1, - anon_sym_STAR, - STATE(1986), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_variable_declaration_repeat1, + STATE(2023), 1, sym_comment, - STATE(2294), 1, - sym_formal_parameters, - [90918] = 7, + ACTIONS(3709), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [92518] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3319), 1, - anon_sym_class, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(1987), 1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_variable_declaration_repeat1, + STATE(2024), 1, sym_comment, - STATE(2051), 1, - sym_decorator, - [90940] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3711), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [92538] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3399), 1, - sym__glimmer_template_content, - ACTIONS(3413), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1574), 1, - sym_glimmer_closing_tag, - STATE(1988), 1, - sym_comment, - STATE(2111), 1, - aux_sym_glimmer_template_repeat1, - [90962] = 7, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3600), 1, - sym_identifier, - ACTIONS(3602), 1, - anon_sym_STAR, - STATE(1989), 1, + ACTIONS(3450), 1, + anon_sym_extends, + ACTIONS(3679), 1, + anon_sym_LBRACE, + STATE(197), 1, + sym_class_body, + STATE(2025), 1, sym_comment, - STATE(2294), 1, - sym_formal_parameters, - [90984] = 7, + STATE(2420), 1, + sym_class_heritage, + [92560] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(3604), 1, + ACTIONS(3713), 1, anon_sym_class, - STATE(1865), 1, + STATE(1834), 1, aux_sym_export_statement_repeat1, - STATE(1990), 1, + STATE(2026), 1, sym_comment, - STATE(2051), 1, + STATE(2178), 1, sym_decorator, - [91006] = 6, + [92582] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3192), 1, - anon_sym_finally, - STATE(1991), 1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_variable_declaration_repeat1, + STATE(2027), 1, sym_comment, - STATE(2288), 1, - sym_finally_clause, - ACTIONS(1503), 2, - anon_sym_else, - anon_sym_while, - [91026] = 7, + ACTIONS(3715), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [92602] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, + anon_sym_with, + ACTIONS(3717), 1, + anon_sym_SEMI, + ACTIONS(3719), 1, + sym__automatic_semicolon, + STATE(2028), 1, + sym_comment, + STATE(2364), 1, + sym_import_attribute, + [92624] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, + ACTIONS(3444), 1, anon_sym_LPAREN, - ACTIONS(3606), 1, + ACTIONS(3721), 1, sym_identifier, - ACTIONS(3608), 1, + ACTIONS(3723), 1, anon_sym_STAR, - STATE(1992), 1, + STATE(2029), 1, sym_comment, - STATE(2200), 1, + STATE(2470), 1, sym_formal_parameters, - [91048] = 6, + [92646] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3636), 1, + sym_html_character_reference, + ACTIONS(3640), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(3691), 1, + anon_sym_SQUOTE, + STATE(1968), 1, + aux_sym__jsx_string_repeat2, + STATE(2030), 1, + sym_comment, + [92668] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1913), 1, + STATE(2000), 1, aux_sym_variable_declaration_repeat1, - STATE(1993), 1, + STATE(2031), 1, sym_comment, - ACTIONS(3610), 2, + ACTIONS(3725), 2, sym__automatic_semicolon, anon_sym_SEMI, - [91068] = 6, + [92688] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3415), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1913), 1, + STATE(2000), 1, aux_sym_variable_declaration_repeat1, - STATE(1994), 1, + STATE(2032), 1, sym_comment, - ACTIONS(3612), 2, + ACTIONS(3727), 2, sym__automatic_semicolon, anon_sym_SEMI, - [91088] = 4, + [92708] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(1995), 1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_variable_declaration_repeat1, + STATE(2033), 1, sym_comment, - ACTIONS(2461), 4, + ACTIONS(3729), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [91104] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3614), 1, - sym_identifier, - ACTIONS(3616), 1, - anon_sym_STAR, - STATE(1996), 1, - sym_comment, - STATE(2294), 1, - sym_formal_parameters, - [91126] = 7, + [92728] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3618), 1, - anon_sym_class, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(1997), 1, - sym_comment, - STATE(2051), 1, - sym_decorator, - [91148] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - sym_identifier, - ACTIONS(3622), 1, - anon_sym_STAR, - STATE(1998), 1, + ACTIONS(3731), 1, + anon_sym_COLON, + ACTIONS(3733), 1, + anon_sym_GT, + ACTIONS(3735), 1, + anon_sym_DOT, + STATE(2034), 1, sym_comment, - STATE(2200), 1, - sym_formal_parameters, - [91170] = 7, + [92747] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3318), 1, sym_identifier, - ACTIONS(3626), 1, - anon_sym_STAR, - STATE(1999), 1, + ACTIONS(3322), 1, + anon_sym_LBRACK, + ACTIONS(3324), 1, + sym_private_property_identifier, + STATE(2035), 1, sym_comment, - STATE(2294), 1, - sym_formal_parameters, - [91192] = 7, + [92766] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3628), 1, - anon_sym_class, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(2000), 1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2325), 1, + anon_sym_RPAREN, + STATE(1965), 1, + aux_sym_array_repeat1, + STATE(2036), 1, sym_comment, - STATE(2051), 1, - sym_decorator, - [91214] = 7, + [92785] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3411), 1, - anon_sym_extends, - ACTIONS(3566), 1, - anon_sym_LBRACE, - STATE(1337), 1, - sym_class_body, - STATE(2001), 1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2325), 1, + anon_sym_RPAREN, + STATE(2037), 1, sym_comment, - STATE(2662), 1, - sym_class_heritage, - [91236] = 7, + STATE(2069), 1, + aux_sym_array_repeat1, + [92804] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, + ACTIONS(3444), 1, anon_sym_LPAREN, - ACTIONS(3630), 1, + ACTIONS(3737), 1, sym_identifier, - ACTIONS(3632), 1, - anon_sym_STAR, - STATE(2002), 1, + STATE(2038), 1, sym_comment, - STATE(2200), 1, + STATE(2691), 1, sym_formal_parameters, - [91258] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [92823] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3634), 1, - sym_identifier, - ACTIONS(3636), 1, - anon_sym_STAR, - STATE(2003), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3377), 1, + anon_sym_COMMA, + ACTIONS(3739), 1, + anon_sym_RBRACE, + STATE(2039), 1, sym_comment, - STATE(2294), 1, - sym_formal_parameters, - [91280] = 7, + STATE(2165), 1, + aux_sym_object_repeat1, + [92842] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1241), 1, - anon_sym_AT, - ACTIONS(3638), 1, - anon_sym_class, - STATE(1865), 1, - aux_sym_export_statement_repeat1, - STATE(2004), 1, + ACTIONS(3276), 1, + anon_sym_COMMA, + ACTIONS(3741), 1, + anon_sym_RBRACE, + STATE(2040), 1, sym_comment, - STATE(2051), 1, - sym_decorator, - [91302] = 6, + STATE(2169), 1, + aux_sym_object_pattern_repeat1, + [92861] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(3276), 1, anon_sym_COMMA, - ACTIONS(2313), 1, - anon_sym_RBRACK, - STATE(1884), 1, - aux_sym_array_repeat1, - STATE(2005), 1, + ACTIONS(3743), 1, + anon_sym_RBRACE, + STATE(2041), 1, sym_comment, - [91321] = 6, + STATE(2169), 1, + aux_sym_object_pattern_repeat1, + [92880] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3640), 1, - anon_sym_LBRACE, - ACTIONS(3642), 1, - anon_sym_LPAREN, - STATE(687), 1, - sym_statement_block, - STATE(2006), 1, + ACTIONS(3377), 1, + anon_sym_COMMA, + ACTIONS(3745), 1, + anon_sym_RBRACE, + STATE(2042), 1, sym_comment, - [91340] = 6, + STATE(2165), 1, + aux_sym_object_repeat1, + [92899] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3747), 1, sym_identifier, - STATE(2007), 1, + ACTIONS(3749), 1, + anon_sym_SEMI, + ACTIONS(3751), 1, + sym__automatic_semicolon, + STATE(2043), 1, sym_comment, - STATE(2326), 1, - sym_formal_parameters, - [91359] = 6, + [92918] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3755), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(2044), 1, + sym_comment, + ACTIONS(3753), 2, + sym_html_character_reference, + anon_sym_SQUOTE, + [92935] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, + ACTIONS(3444), 1, anon_sym_LPAREN, - ACTIONS(3646), 1, + ACTIONS(3757), 1, sym_identifier, - STATE(2008), 1, + STATE(2045), 1, sym_comment, - STATE(2203), 1, + STATE(2467), 1, sym_formal_parameters, - [91378] = 5, + [92954] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3759), 1, + sym_identifier, + ACTIONS(3761), 1, + anon_sym_SEMI, + ACTIONS(3763), 1, + sym__automatic_semicolon, + STATE(2046), 1, + sym_comment, + [92973] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(3767), 1, + anon_sym_LPAREN, + STATE(527), 1, + sym_statement_block, + STATE(2047), 1, + sym_comment, + [92992] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2388), 1, + ACTIONS(2393), 1, sym__automatic_semicolon, - STATE(2009), 1, + STATE(2048), 1, sym_comment, - ACTIONS(1035), 2, + ACTIONS(1057), 2, anon_sym_else, anon_sym_while, - [91395] = 6, + [93009] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3648), 1, - anon_sym_COMMA, - ACTIONS(3650), 1, - anon_sym_RBRACE, - STATE(2010), 1, + ACTIONS(2391), 1, + sym__automatic_semicolon, + STATE(2049), 1, sym_comment, - STATE(2129), 1, - aux_sym_object_repeat1, - [91414] = 6, + ACTIONS(1037), 2, + anon_sym_else, + anon_sym_while, + [93026] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3235), 1, - anon_sym_COMMA, - ACTIONS(3652), 1, - anon_sym_RBRACE, - STATE(2011), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + ACTIONS(3771), 1, + anon_sym_LPAREN, + STATE(2050), 1, sym_comment, - STATE(2130), 1, - aux_sym_object_pattern_repeat1, - [91433] = 6, + STATE(2183), 1, + sym_statement_block, + [93045] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3235), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(3654), 1, - anon_sym_RBRACE, - STATE(2012), 1, + ACTIONS(3773), 1, + anon_sym_RBRACK, + STATE(1965), 1, + aux_sym_array_repeat1, + STATE(2051), 1, sym_comment, - STATE(2130), 1, - aux_sym_object_pattern_repeat1, - [91452] = 6, + [93064] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3648), 1, + ACTIONS(3454), 1, anon_sym_COMMA, - ACTIONS(3656), 1, - anon_sym_RBRACE, - STATE(2013), 1, + ACTIONS(3775), 1, + anon_sym_RBRACK, + STATE(2052), 1, sym_comment, - STATE(2129), 1, - aux_sym_object_repeat1, - [91471] = 5, + STATE(2061), 1, + aux_sym_array_pattern_repeat1, + [93083] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2382), 1, + ACTIONS(2381), 1, sym__automatic_semicolon, - STATE(2014), 1, + STATE(2053), 1, sym_comment, - ACTIONS(1031), 2, + ACTIONS(1041), 2, anon_sym_else, anon_sym_while, - [91488] = 5, + [93100] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3777), 1, + sym_identifier, + STATE(2054), 1, + sym_comment, + STATE(2691), 1, + sym_formal_parameters, + [93119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2362), 1, - sym__automatic_semicolon, - STATE(2015), 1, + STATE(2055), 1, sym_comment, - ACTIONS(1021), 2, - anon_sym_else, - anon_sym_while, - [91505] = 6, + ACTIONS(3779), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [93134] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3235), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(3658), 1, - anon_sym_RBRACE, - STATE(2016), 1, + ACTIONS(2358), 1, + anon_sym_RPAREN, + STATE(2056), 1, sym_comment, - STATE(2130), 1, - aux_sym_object_pattern_repeat1, - [91524] = 5, + STATE(2166), 1, + aux_sym_array_repeat1, + [93153] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2378), 1, - sym__automatic_semicolon, - STATE(2017), 1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2358), 1, + anon_sym_RPAREN, + STATE(1965), 1, + aux_sym_array_repeat1, + STATE(2057), 1, sym_comment, - ACTIONS(999), 2, - anon_sym_else, - anon_sym_while, - [91541] = 6, + [93172] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - ACTIONS(3662), 1, - anon_sym_LPAREN, - STATE(2018), 1, + STATE(2058), 1, sym_comment, - STATE(2031), 1, - sym_statement_block, - [91560] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(1529), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [93187] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3664), 1, - sym_identifier, - STATE(2019), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2400), 1, + anon_sym_RPAREN, + STATE(2059), 1, sym_comment, - STATE(2326), 1, - sym_formal_parameters, - [91579] = 6, + STATE(2088), 1, + aux_sym_array_repeat1, + [93206] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(3666), 1, - anon_sym_RBRACK, - STATE(1884), 1, + ACTIONS(2400), 1, + anon_sym_RPAREN, + STATE(1965), 1, aux_sym_array_repeat1, - STATE(2020), 1, + STATE(2060), 1, sym_comment, - [91598] = 6, + [93225] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3520), 1, + ACTIONS(3781), 1, anon_sym_COMMA, - ACTIONS(3668), 1, + ACTIONS(3784), 1, anon_sym_RBRACK, - STATE(2021), 1, + STATE(2061), 2, sym_comment, - STATE(2132), 1, aux_sym_array_pattern_repeat1, - [91617] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3670), 1, - sym_identifier, - STATE(2022), 1, - sym_comment, - STATE(2203), 1, - sym_formal_parameters, - [91636] = 6, + [93242] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3672), 1, - anon_sym_LPAREN, - ACTIONS(3674), 1, - anon_sym_await, - STATE(118), 1, - sym__for_header, - STATE(2023), 1, + STATE(2062), 1, sym_comment, - [91655] = 5, + ACTIONS(927), 3, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [93257] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2386), 1, - sym__automatic_semicolon, - STATE(2024), 1, + ACTIONS(3786), 1, + anon_sym_DQUOTE, + ACTIONS(3788), 1, + anon_sym_SQUOTE, + STATE(2063), 1, sym_comment, - ACTIONS(1011), 2, - anon_sym_else, - anon_sym_while, - [91672] = 6, + STATE(2168), 1, + sym_string, + [93276] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, + ACTIONS(3444), 1, anon_sym_LPAREN, - ACTIONS(3676), 1, + ACTIONS(3790), 1, sym_identifier, - STATE(2025), 1, + STATE(2064), 1, sym_comment, - STATE(2326), 1, + STATE(2357), 1, sym_formal_parameters, - [91691] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [93295] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - sym_identifier, - STATE(2026), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2065), 1, sym_comment, - STATE(2203), 1, - sym_formal_parameters, - [91710] = 4, + ACTIONS(3792), 3, + anon_sym_default, + anon_sym_RBRACE, + anon_sym_case, + [93310] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2027), 1, + ACTIONS(3560), 1, + anon_sym_from, + ACTIONS(3794), 1, + anon_sym_as, + STATE(2066), 1, sym_comment, - ACTIONS(1567), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [91725] = 5, + STATE(2499), 1, + sym__from_clause, + [93329] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2380), 1, - sym__automatic_semicolon, - STATE(2028), 1, + ACTIONS(3731), 1, + anon_sym_COLON, + ACTIONS(3735), 1, + anon_sym_DOT, + ACTIONS(3796), 1, + anon_sym_GT, + STATE(2067), 1, sym_comment, - ACTIONS(1053), 2, - anon_sym_else, - anon_sym_while, - [91742] = 6, + [93348] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2390), 1, - anon_sym_RPAREN, - STATE(2029), 1, + STATE(2068), 1, sym_comment, - STATE(2049), 1, - aux_sym_array_repeat1, - [91761] = 6, + ACTIONS(3669), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [93363] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(2390), 1, + ACTIONS(3798), 1, anon_sym_RPAREN, - STATE(1884), 1, + STATE(1965), 1, aux_sym_array_repeat1, - STATE(2030), 1, + STATE(2069), 1, sym_comment, - [91780] = 4, + [93382] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2031), 1, + ACTIONS(2402), 1, + sym__automatic_semicolon, + STATE(2070), 1, sym_comment, - ACTIONS(1533), 3, + ACTIONS(1053), 2, anon_sym_else, anon_sym_while, - anon_sym_finally, - [91795] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [93399] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3680), 1, - sym_identifier, - STATE(2032), 1, - sym_comment, - STATE(2326), 1, - sym_formal_parameters, - [91814] = 6, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3682), 1, - sym_identifier, - ACTIONS(3684), 1, - anon_sym_SEMI, - ACTIONS(3686), 1, + ACTIONS(2395), 1, sym__automatic_semicolon, - STATE(2033), 1, + STATE(2071), 1, sym_comment, - [91833] = 6, + ACTIONS(1047), 2, + anon_sym_else, + anon_sym_while, + [93416] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3688), 1, - anon_sym_COLON, - ACTIONS(3690), 1, - anon_sym_GT, - ACTIONS(3692), 1, - anon_sym_DOT, - STATE(2034), 1, + ACTIONS(3454), 1, + anon_sym_COMMA, + ACTIONS(3644), 1, + anon_sym_RBRACK, + STATE(2061), 1, + aux_sym_array_pattern_repeat1, + STATE(2072), 1, sym_comment, - [91852] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [93435] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3694), 1, - sym_identifier, - STATE(2035), 1, - sym_comment, - STATE(2203), 1, - sym_formal_parameters, - [91871] = 6, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3696), 1, - sym_identifier, - ACTIONS(3698), 1, - anon_sym_SEMI, - ACTIONS(3700), 1, - sym__automatic_semicolon, - STATE(2036), 1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2329), 1, + anon_sym_RBRACK, + STATE(1965), 1, + aux_sym_array_repeat1, + STATE(2073), 1, sym_comment, - [91890] = 6, + [93454] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - ACTIONS(3702), 1, - anon_sym_as, - STATE(2037), 1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2329), 1, + anon_sym_RBRACK, + STATE(2051), 1, + aux_sym_array_repeat1, + STATE(2074), 1, sym_comment, - STATE(2456), 1, - sym__from_clause, - [91909] = 6, + [93473] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - ACTIONS(3702), 1, - anon_sym_as, - STATE(2038), 1, + ACTIONS(3454), 1, + anon_sym_COMMA, + ACTIONS(3644), 1, + anon_sym_RBRACK, + STATE(2052), 1, + aux_sym_array_pattern_repeat1, + STATE(2075), 1, sym_comment, - STATE(2352), 1, - sym__from_clause, - [91928] = 5, + [93492] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2349), 1, - sym__automatic_semicolon, - STATE(2039), 1, + ACTIONS(3800), 1, + anon_sym_LPAREN, + ACTIONS(3802), 1, + anon_sym_await, + STATE(97), 1, + sym__for_header, + STATE(2076), 1, sym_comment, - ACTIONS(1025), 2, - anon_sym_else, - anon_sym_while, - [91945] = 5, + [93511] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2374), 1, + ACTIONS(3671), 1, + anon_sym_COMMA, + ACTIONS(3673), 1, + anon_sym_RPAREN, + STATE(2077), 1, + sym_comment, + STATE(2134), 1, + aux_sym_formal_parameters_repeat1, + [93530] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_SEMI, + ACTIONS(3808), 1, sym__automatic_semicolon, - STATE(2040), 1, + STATE(2078), 1, sym_comment, - ACTIONS(1041), 2, - anon_sym_else, - anon_sym_while, - [91962] = 4, + [93549] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3810), 1, + sym__glimmer_template_content, + ACTIONS(3813), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2079), 2, + sym_comment, + aux_sym_glimmer_template_repeat1, + [93566] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2041), 1, + ACTIONS(3815), 1, + anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_RBRACE, + STATE(2080), 1, sym_comment, - ACTIONS(1751), 3, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - [91977] = 6, + STATE(2105), 1, + aux_sym_named_imports_repeat1, + [93585] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3704), 1, + ACTIONS(3819), 1, sym_identifier, - STATE(1774), 1, - sym_decorator_member_expression, - STATE(2042), 1, + ACTIONS(3821), 1, + anon_sym_SEMI, + ACTIONS(3823), 1, + sym__automatic_semicolon, + STATE(2081), 1, sym_comment, - STATE(2118), 1, - sym_decorator_call_expression, - [91996] = 6, + [93604] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - ACTIONS(3702), 1, - anon_sym_as, - STATE(2043), 1, + STATE(2082), 1, sym_comment, - STATE(2234), 1, - sym__from_clause, - [92015] = 4, + ACTIONS(3825), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [93619] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2044), 1, + ACTIONS(3454), 1, + anon_sym_COMMA, + ACTIONS(3827), 1, + anon_sym_RBRACK, + STATE(2061), 1, + aux_sym_array_pattern_repeat1, + STATE(2083), 1, sym_comment, - ACTIONS(2133), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [92030] = 6, + [93638] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(3276), 1, anon_sym_COMMA, - ACTIONS(2331), 1, - anon_sym_RBRACK, - STATE(1884), 1, - aux_sym_array_repeat1, - STATE(2045), 1, + ACTIONS(3829), 1, + anon_sym_RBRACE, + STATE(2084), 1, sym_comment, - [92049] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(2169), 1, + aux_sym_object_pattern_repeat1, + [93657] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3706), 1, - sym_identifier, - STATE(2046), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3377), 1, + anon_sym_COMMA, + ACTIONS(3831), 1, + anon_sym_RBRACE, + STATE(2085), 1, sym_comment, - STATE(2326), 1, - sym_formal_parameters, - [92068] = 6, + STATE(2165), 1, + aux_sym_object_repeat1, + [93676] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3648), 1, + ACTIONS(3377), 1, anon_sym_COMMA, - ACTIONS(3708), 1, + ACTIONS(3831), 1, anon_sym_RBRACE, - STATE(2047), 1, - sym_comment, - STATE(2129), 1, + STATE(2042), 1, aux_sym_object_repeat1, - [92087] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(2086), 1, + sym_comment, + [93695] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3710), 1, - sym_identifier, - STATE(2048), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3276), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, + anon_sym_RBRACE, + STATE(2041), 1, + aux_sym_object_pattern_repeat1, + STATE(2087), 1, sym_comment, - STATE(2203), 1, - sym_formal_parameters, - [92106] = 6, + [93714] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(3712), 1, + ACTIONS(3833), 1, anon_sym_RPAREN, - STATE(1884), 1, + STATE(1965), 1, aux_sym_array_repeat1, - STATE(2049), 1, - sym_comment, - [92125] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3302), 1, - sym_identifier, - ACTIONS(3306), 1, - anon_sym_LBRACK, - ACTIONS(3308), 1, - sym_private_property_identifier, - STATE(2050), 1, + STATE(2088), 1, sym_comment, - [92144] = 4, + [93733] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2051), 1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(3835), 1, + anon_sym_RBRACK, + STATE(1965), 1, + aux_sym_array_repeat1, + STATE(2089), 1, sym_comment, - ACTIONS(3714), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [92159] = 6, + [93752] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - ACTIONS(3702), 1, - anon_sym_as, - STATE(2052), 1, + ACTIONS(3837), 1, + sym_identifier, + ACTIONS(3839), 1, + anon_sym_SEMI, + ACTIONS(3841), 1, + sym__automatic_semicolon, + STATE(2090), 1, sym_comment, - STATE(2684), 1, - sym__from_clause, - [92178] = 6, + [93771] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - ACTIONS(3702), 1, - anon_sym_as, - STATE(2053), 1, + ACTIONS(3843), 1, + anon_sym_COMMA, + ACTIONS(3846), 1, + anon_sym_RPAREN, + STATE(2091), 2, sym_comment, - STATE(2163), 1, - sym__from_clause, - [92197] = 5, + aux_sym_formal_parameters_repeat1, + [93788] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3296), 1, - anon_sym_EQ, - STATE(2054), 1, + ACTIONS(3848), 1, + sym_identifier, + ACTIONS(3850), 1, + anon_sym_SEMI, + ACTIONS(3852), 1, + sym__automatic_semicolon, + STATE(2092), 1, sym_comment, - ACTIONS(1830), 2, - anon_sym_in, - anon_sym_of, - [92214] = 6, + [93807] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1535), 1, - anon_sym_while, - ACTIONS(3716), 1, - anon_sym_else, - STATE(2055), 1, + ACTIONS(3854), 1, + anon_sym_LPAREN, + ACTIONS(3856), 1, + anon_sym_await, + STATE(85), 1, + sym__for_header, + STATE(2093), 1, sym_comment, - STATE(2529), 1, - sym_else_clause, - [92233] = 4, + [93826] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2056), 1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(3858), 1, + anon_sym_RPAREN, + STATE(1965), 1, + aux_sym_array_repeat1, + STATE(2094), 1, sym_comment, - ACTIONS(2103), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [92248] = 5, + [93845] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2226), 1, - anon_sym_in, - STATE(2057), 1, + STATE(2095), 1, sym_comment, - ACTIONS(2468), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [92265] = 6, + ACTIONS(3860), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [93860] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3235), 1, + ACTIONS(3862), 1, anon_sym_COMMA, - ACTIONS(3718), 1, + ACTIONS(3864), 1, anon_sym_RBRACE, - STATE(2016), 1, - aux_sym_object_pattern_repeat1, - STATE(2058), 1, + STATE(2096), 1, sym_comment, - [92284] = 6, + STATE(2186), 1, + aux_sym_export_clause_repeat1, + [93879] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3648), 1, + ACTIONS(3866), 1, + anon_sym_as, + STATE(2097), 1, + sym_comment, + ACTIONS(3868), 2, anon_sym_COMMA, - ACTIONS(3720), 1, anon_sym_RBRACE, - STATE(2047), 1, - aux_sym_object_repeat1, - STATE(2059), 1, - sym_comment, - [92303] = 6, + [93896] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3722), 1, + ACTIONS(3731), 1, anon_sym_COLON, - STATE(2060), 1, + ACTIONS(3735), 1, + anon_sym_DOT, + ACTIONS(3870), 1, + anon_sym_GT, + STATE(2098), 1, sym_comment, - STATE(2178), 1, - sym_formal_parameters, - [92322] = 6, + [93915] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3648), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(3720), 1, - anon_sym_RBRACE, - STATE(2061), 1, + ACTIONS(2379), 1, + anon_sym_RPAREN, + STATE(1965), 1, + aux_sym_array_repeat1, + STATE(2099), 1, sym_comment, - STATE(2129), 1, - aux_sym_object_repeat1, - [92341] = 4, + [93934] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2062), 1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2379), 1, + anon_sym_RPAREN, + STATE(2094), 1, + aux_sym_array_repeat1, + STATE(2100), 1, sym_comment, - ACTIONS(2123), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [92356] = 6, + [93953] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3550), 1, - anon_sym_COMMA, - ACTIONS(3552), 1, - anon_sym_RPAREN, - STATE(2063), 1, + ACTIONS(3456), 1, + anon_sym_EQ, + STATE(2101), 1, sym_comment, - STATE(2146), 1, - aux_sym_formal_parameters_repeat1, - [92375] = 6, + ACTIONS(3784), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [93970] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3235), 1, - anon_sym_COMMA, - ACTIONS(3718), 1, - anon_sym_RBRACE, - STATE(2064), 1, + ACTIONS(2377), 1, + sym__automatic_semicolon, + STATE(2102), 1, sym_comment, - STATE(2130), 1, - aux_sym_object_pattern_repeat1, - [92394] = 6, + ACTIONS(999), 2, + anon_sym_else, + anon_sym_while, + [93987] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(3456), 1, + anon_sym_EQ, + STATE(2103), 1, + sym_comment, + ACTIONS(3846), 2, anon_sym_COMMA, - ACTIONS(3724), 1, anon_sym_RPAREN, - STATE(1884), 1, - aux_sym_array_repeat1, - STATE(2065), 1, - sym_comment, - [92413] = 6, + [94004] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + STATE(2104), 1, + sym_comment, + ACTIONS(2369), 3, anon_sym_COMMA, - ACTIONS(2329), 1, anon_sym_RPAREN, - STATE(1884), 1, - aux_sym_array_repeat1, - STATE(2066), 1, - sym_comment, - [92432] = 6, + anon_sym_RBRACK, + [94019] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(3872), 1, anon_sym_COMMA, - ACTIONS(2329), 1, - anon_sym_RPAREN, - STATE(2065), 1, - aux_sym_array_repeat1, - STATE(2067), 1, + ACTIONS(3875), 1, + anon_sym_RBRACE, + STATE(2105), 2, sym_comment, - [92451] = 6, + aux_sym_named_imports_repeat1, + [94036] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3726), 1, + ACTIONS(3877), 1, anon_sym_LBRACE, - ACTIONS(3728), 1, + ACTIONS(3879), 1, anon_sym_LPAREN, - STATE(515), 1, + STATE(561), 1, sym_statement_block, - STATE(2068), 1, - sym_comment, - [92470] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(2069), 1, + STATE(2106), 1, sym_comment, - ACTIONS(3730), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [92485] = 6, + [94055] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3520), 1, - anon_sym_COMMA, - ACTIONS(3524), 1, - anon_sym_RBRACK, - STATE(2070), 1, + STATE(2107), 1, sym_comment, - STATE(2133), 1, - aux_sym_array_pattern_repeat1, - [92504] = 6, + ACTIONS(1659), 3, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_while, + [94070] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3732), 1, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3734), 1, - anon_sym_SEMI, - ACTIONS(3736), 1, - sym__automatic_semicolon, - STATE(2071), 1, + STATE(2108), 1, sym_comment, - [92523] = 6, + STATE(2467), 1, + sym_formal_parameters, + [94089] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3738), 1, + ACTIONS(3883), 1, sym_identifier, - ACTIONS(3740), 1, - anon_sym_SEMI, - ACTIONS(3742), 1, - sym__automatic_semicolon, - STATE(2072), 1, + STATE(1547), 1, + sym_decorator_member_expression, + STATE(1613), 1, + sym_decorator_call_expression, + STATE(2109), 1, sym_comment, - [92542] = 6, + [94108] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2313), 1, - anon_sym_RBRACK, - STATE(2073), 1, + ACTIONS(1595), 1, + anon_sym_while, + ACTIONS(3885), 1, + anon_sym_else, + STATE(2110), 1, sym_comment, - STATE(2134), 1, - aux_sym_array_repeat1, - [92561] = 6, + STATE(2650), 1, + sym_else_clause, + [94127] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3744), 1, - anon_sym_LPAREN, - ACTIONS(3746), 1, - anon_sym_await, - STATE(87), 1, - sym__for_header, - STATE(2074), 1, + ACTIONS(2349), 1, + sym__automatic_semicolon, + STATE(2111), 1, sym_comment, - [92580] = 6, + ACTIONS(1003), 2, + anon_sym_else, + anon_sym_while, + [94144] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3520), 1, + ACTIONS(3377), 1, anon_sym_COMMA, - ACTIONS(3524), 1, - anon_sym_RBRACK, - STATE(2075), 1, + ACTIONS(3887), 1, + anon_sym_RBRACE, + STATE(2112), 1, sym_comment, - STATE(2132), 1, - aux_sym_array_pattern_repeat1, - [92599] = 5, + STATE(2165), 1, + aux_sym_object_repeat1, + [94163] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3748), 1, + ACTIONS(3377), 1, anon_sym_COMMA, - ACTIONS(3751), 1, + ACTIONS(3889), 1, anon_sym_RBRACE, - STATE(2076), 2, + STATE(2113), 1, sym_comment, - aux_sym_named_imports_repeat1, - [92616] = 6, + STATE(2165), 1, + aux_sym_object_repeat1, + [94182] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(3753), 1, - anon_sym_RPAREN, - STATE(1884), 1, - aux_sym_array_repeat1, - STATE(2077), 1, + ACTIONS(3375), 1, + anon_sym_EQ, + STATE(2114), 1, sym_comment, - [92635] = 6, + ACTIONS(1843), 2, + anon_sym_in, + anon_sym_of, + [94199] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3688), 1, - anon_sym_COLON, - ACTIONS(3692), 1, - anon_sym_DOT, - ACTIONS(3755), 1, - anon_sym_GT, - STATE(2078), 1, + ACTIONS(3891), 1, + anon_sym_LPAREN, + ACTIONS(3893), 1, + anon_sym_await, + STATE(118), 1, + sym__for_header, + STATE(2115), 1, sym_comment, - [92654] = 6, + [94218] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2370), 1, - anon_sym_RPAREN, - STATE(1884), 1, - aux_sym_array_repeat1, - STATE(2079), 1, + STATE(2116), 1, sym_comment, - [92673] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(2067), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [94233] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2370), 1, - anon_sym_RPAREN, - STATE(2077), 1, - aux_sym_array_repeat1, - STATE(2080), 1, - sym_comment, - [92692] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_LPAREN, - STATE(632), 1, - sym_statement_block, - STATE(2081), 1, + ACTIONS(3895), 1, + sym_identifier, + ACTIONS(3897), 1, + anon_sym_SEMI, + ACTIONS(3899), 1, + sym__automatic_semicolon, + STATE(2117), 1, sym_comment, - [92711] = 5, + [94252] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3761), 1, - anon_sym_COMMA, - ACTIONS(3764), 1, - anon_sym_RBRACE, - STATE(2082), 2, + ACTIONS(3901), 1, + sym_identifier, + ACTIONS(3903), 1, + anon_sym_SEMI, + ACTIONS(3905), 1, + sym__automatic_semicolon, + STATE(2118), 1, sym_comment, - aux_sym_export_clause_repeat1, - [92728] = 4, + [94271] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2083), 1, + STATE(2119), 1, sym_comment, - ACTIONS(3766), 3, + ACTIONS(3907), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [92743] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(3768), 1, - anon_sym_RPAREN, - STATE(1884), 1, - aux_sym_array_repeat1, - STATE(2084), 1, - sym_comment, - [92762] = 5, + [94286] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3770), 1, - anon_sym_COMMA, - ACTIONS(3773), 1, - anon_sym_RPAREN, - STATE(2085), 2, + ACTIONS(3909), 1, + anon_sym_LPAREN, + ACTIONS(3911), 1, + anon_sym_await, + STATE(86), 1, + sym__for_header, + STATE(2120), 1, sym_comment, - aux_sym_formal_parameters_repeat1, - [92779] = 5, + [94305] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3522), 1, - anon_sym_EQ, - STATE(2086), 1, + ACTIONS(3913), 1, + anon_sym_LBRACE, + ACTIONS(3915), 1, + anon_sym_LPAREN, + STATE(481), 1, + sym_statement_block, + STATE(2121), 1, sym_comment, - ACTIONS(3773), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [92796] = 6, + [94324] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, + ACTIONS(3444), 1, anon_sym_LPAREN, - ACTIONS(3775), 1, + ACTIONS(3917), 1, sym_identifier, - STATE(2087), 1, + STATE(2122), 1, sym_comment, - STATE(2648), 1, + STATE(2691), 1, sym_formal_parameters, - [92815] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [94343] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, - anon_sym_LPAREN, - ACTIONS(3777), 1, - sym_identifier, - STATE(2088), 1, - sym_comment, - STATE(2203), 1, - sym_formal_parameters, - [92834] = 6, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2331), 1, + anon_sym_RPAREN, + STATE(2123), 1, + sym_comment, + STATE(2129), 1, + aux_sym_array_repeat1, + [94362] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3779), 1, - sym_identifier, - ACTIONS(3781), 1, - anon_sym_SEMI, - ACTIONS(3783), 1, - sym__automatic_semicolon, - STATE(2089), 1, - sym_comment, - [92853] = 6, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2331), 1, + anon_sym_RPAREN, + STATE(1965), 1, + aux_sym_array_repeat1, + STATE(2124), 1, + sym_comment, + [94381] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3785), 1, - sym_identifier, - ACTIONS(3787), 1, - anon_sym_SEMI, - ACTIONS(3789), 1, - sym__automatic_semicolon, - STATE(2090), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3456), 1, + anon_sym_EQ, + STATE(2125), 1, sym_comment, - [92872] = 6, + ACTIONS(3919), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [94398] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, - anon_sym_await, - STATE(88), 1, - sym__for_header, - STATE(2091), 1, + ACTIONS(3560), 1, + anon_sym_from, + ACTIONS(3794), 1, + anon_sym_as, + STATE(2126), 1, sym_comment, - [92891] = 4, + STATE(2397), 1, + sym__from_clause, + [94417] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2092), 1, + STATE(2127), 1, sym_comment, - ACTIONS(3488), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [92906] = 6, + ACTIONS(2139), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [94432] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3795), 1, + ACTIONS(3454), 1, anon_sym_COMMA, - ACTIONS(3797), 1, - anon_sym_RBRACE, - STATE(2076), 1, - aux_sym_named_imports_repeat1, - STATE(2093), 1, + ACTIONS(3458), 1, + anon_sym_RBRACK, + STATE(2083), 1, + aux_sym_array_pattern_repeat1, + STATE(2128), 1, sym_comment, - [92925] = 6, + [94451] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(3799), 1, + ACTIONS(3921), 1, anon_sym_RPAREN, - STATE(1884), 1, + STATE(1965), 1, aux_sym_array_repeat1, - STATE(2094), 1, + STATE(2129), 1, sym_comment, - [92944] = 5, + [94470] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3801), 1, + ACTIONS(3923), 1, anon_sym_DQUOTE, - STATE(2095), 1, + STATE(2130), 1, sym_comment, - ACTIONS(3803), 2, + ACTIONS(3925), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [92961] = 6, + [94487] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3688), 1, - anon_sym_COLON, - ACTIONS(3692), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_GT, - STATE(2096), 1, + ACTIONS(3377), 1, + anon_sym_COMMA, + ACTIONS(3927), 1, + anon_sym_RBRACE, + STATE(2131), 1, sym_comment, - [92980] = 6, + STATE(2165), 1, + aux_sym_object_repeat1, + [94506] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(3276), 1, anon_sym_COMMA, - ACTIONS(2368), 1, - anon_sym_RPAREN, - STATE(1884), 1, - aux_sym_array_repeat1, - STATE(2097), 1, + ACTIONS(3929), 1, + anon_sym_RBRACE, + STATE(2132), 1, sym_comment, - [92999] = 6, + STATE(2169), 1, + aux_sym_object_pattern_repeat1, + [94525] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(3931), 1, + anon_sym_LBRACE, + ACTIONS(3933), 1, + anon_sym_LPAREN, + STATE(818), 1, + sym_statement_block, + STATE(2133), 1, + sym_comment, + [94544] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, anon_sym_COMMA, - ACTIONS(2368), 1, + ACTIONS(3937), 1, anon_sym_RPAREN, - STATE(2094), 1, - aux_sym_array_repeat1, - STATE(2098), 1, + STATE(2091), 1, + aux_sym_formal_parameters_repeat1, + STATE(2134), 1, + sym_comment, + [94563] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3939), 1, + sym_identifier, + STATE(2135), 1, sym_comment, - [93018] = 4, + STATE(2467), 1, + sym_formal_parameters, + [94582] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2099), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_COLON, + STATE(2136), 1, sym_comment, - ACTIONS(3807), 3, - anon_sym_default, - anon_sym_RBRACE, - anon_sym_case, - [93033] = 6, + STATE(2598), 1, + sym_formal_parameters, + [94601] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3943), 1, + sym_identifier, + STATE(2137), 1, + sym_comment, + STATE(2396), 1, + sym_formal_parameters, + [94620] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3520), 1, + ACTIONS(3276), 1, anon_sym_COMMA, - ACTIONS(3548), 1, - anon_sym_RBRACK, - STATE(2100), 1, + ACTIONS(3945), 1, + anon_sym_RBRACE, + STATE(2138), 1, sym_comment, - STATE(2132), 1, - aux_sym_array_pattern_repeat1, - [93052] = 5, + STATE(2169), 1, + aux_sym_object_pattern_repeat1, + [94639] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3522), 1, - anon_sym_EQ, - STATE(2101), 1, - sym_comment, - ACTIONS(3809), 2, + ACTIONS(3377), 1, anon_sym_COMMA, + ACTIONS(3947), 1, anon_sym_RBRACE, - [93069] = 6, + STATE(2139), 1, + sym_comment, + STATE(2165), 1, + aux_sym_object_repeat1, + [94658] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3811), 1, - anon_sym_LBRACE, - ACTIONS(3813), 1, - anon_sym_LPAREN, - STATE(549), 1, - sym_statement_block, - STATE(2102), 1, + ACTIONS(3560), 1, + anon_sym_from, + ACTIONS(3794), 1, + anon_sym_as, + STATE(2140), 1, sym_comment, - [93088] = 6, + STATE(2275), 1, + sym__from_clause, + [94677] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(3377), 1, anon_sym_COMMA, - ACTIONS(2331), 1, + ACTIONS(3949), 1, + anon_sym_RBRACE, + STATE(2141), 1, + sym_comment, + STATE(2165), 1, + aux_sym_object_repeat1, + [94696] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2362), 1, anon_sym_RBRACK, - STATE(2020), 1, + STATE(2089), 1, aux_sym_array_repeat1, - STATE(2103), 1, + STATE(2142), 1, sym_comment, - [93107] = 6, + [94715] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - ACTIONS(3815), 1, + ACTIONS(3951), 1, anon_sym_COLON, - STATE(2104), 1, + STATE(2143), 1, sym_comment, - STATE(2178), 1, + STATE(2598), 1, sym_formal_parameters, - [93126] = 6, + [94734] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, - anon_sym_RBRACE, - STATE(2082), 1, - aux_sym_export_clause_repeat1, - STATE(2105), 1, + STATE(2144), 1, + sym_comment, + ACTIONS(899), 3, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [94749] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2145), 1, sym_comment, - [93145] = 5, + ACTIONS(2149), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [94764] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3821), 1, - anon_sym_SQUOTE, - STATE(2106), 1, + ACTIONS(3412), 1, + sym_identifier, + ACTIONS(3416), 1, + anon_sym_LBRACK, + ACTIONS(3418), 1, + sym_private_property_identifier, + STATE(2146), 1, sym_comment, - ACTIONS(3823), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [93162] = 6, + [94783] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3520), 1, + ACTIONS(3377), 1, anon_sym_COMMA, - ACTIONS(3548), 1, - anon_sym_RBRACK, - STATE(2021), 1, - aux_sym_array_pattern_repeat1, - STATE(2107), 1, + ACTIONS(3949), 1, + anon_sym_RBRACE, + STATE(2112), 1, + aux_sym_object_repeat1, + STATE(2147), 1, sym_comment, - [93181] = 4, + [94802] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2108), 1, + ACTIONS(3276), 1, + anon_sym_COMMA, + ACTIONS(3953), 1, + anon_sym_RBRACE, + STATE(2148), 1, sym_comment, - ACTIONS(3825), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [93196] = 6, + STATE(2169), 1, + aux_sym_object_pattern_repeat1, + [94821] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(2372), 1, - anon_sym_RPAREN, - STATE(2084), 1, + ACTIONS(2362), 1, + anon_sym_RBRACK, + STATE(1965), 1, aux_sym_array_repeat1, - STATE(2109), 1, + STATE(2149), 1, sym_comment, - [93215] = 6, + [94840] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3688), 1, - anon_sym_COLON, - ACTIONS(3692), 1, - anon_sym_DOT, - ACTIONS(3827), 1, - anon_sym_GT, - STATE(2110), 1, + ACTIONS(3377), 1, + anon_sym_COMMA, + ACTIONS(3947), 1, + anon_sym_RBRACE, + STATE(2150), 1, + sym_comment, + STATE(2156), 1, + aux_sym_object_repeat1, + [94859] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2151), 1, sym_comment, - [93234] = 5, + ACTIONS(3203), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [94874] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3829), 1, - sym__glimmer_template_content, - ACTIONS(3832), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2111), 2, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + sym_identifier, + STATE(2152), 1, sym_comment, - aux_sym_glimmer_template_repeat1, - [93251] = 6, + STATE(2691), 1, + sym_formal_parameters, + [94893] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(2372), 1, - anon_sym_RPAREN, - STATE(1884), 1, - aux_sym_array_repeat1, - STATE(2112), 1, + STATE(2153), 1, sym_comment, - [93270] = 6, + ACTIONS(903), 3, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [94908] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3235), 1, + ACTIONS(3454), 1, anon_sym_COMMA, - ACTIONS(3834), 1, - anon_sym_RBRACE, - STATE(2113), 1, + ACTIONS(3458), 1, + anon_sym_RBRACK, + STATE(2061), 1, + aux_sym_array_pattern_repeat1, + STATE(2154), 1, sym_comment, - STATE(2130), 1, - aux_sym_object_pattern_repeat1, - [93289] = 6, + [94927] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3648), 1, + ACTIONS(3276), 1, anon_sym_COMMA, - ACTIONS(3836), 1, + ACTIONS(3945), 1, anon_sym_RBRACE, - STATE(2114), 1, + STATE(2148), 1, + aux_sym_object_pattern_repeat1, + STATE(2155), 1, sym_comment, - STATE(2129), 1, - aux_sym_object_repeat1, - [93308] = 4, + [94946] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2115), 1, + ACTIONS(3377), 1, + anon_sym_COMMA, + ACTIONS(3957), 1, + anon_sym_RBRACE, + STATE(2156), 1, sym_comment, - ACTIONS(3838), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [93323] = 4, + STATE(2165), 1, + aux_sym_object_repeat1, + [94965] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2116), 1, + ACTIONS(2238), 1, + anon_sym_in, + STATE(2157), 1, sym_comment, - ACTIONS(930), 3, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - [93338] = 4, + ACTIONS(2413), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [94982] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2117), 1, - sym_comment, - ACTIONS(989), 3, + ACTIONS(3959), 1, sym__automatic_semicolon, + STATE(2158), 1, + sym_comment, + ACTIONS(903), 2, anon_sym_else, anon_sym_while, - [93353] = 4, + [94999] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2118), 1, + ACTIONS(3961), 1, + sym__automatic_semicolon, + STATE(2159), 1, sym_comment, - ACTIONS(3194), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [93368] = 5, + ACTIONS(905), 2, + anon_sym_else, + anon_sym_while, + [95016] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3840), 1, - sym__automatic_semicolon, - STATE(2119), 1, + ACTIONS(3731), 1, + anon_sym_COLON, + ACTIONS(3735), 1, + anon_sym_DOT, + ACTIONS(3963), 1, + anon_sym_GT, + STATE(2160), 1, sym_comment, - ACTIONS(876), 2, - anon_sym_else, - anon_sym_while, - [93385] = 6, + [95035] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3342), 1, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3965), 1, sym_identifier, - ACTIONS(3346), 1, - anon_sym_LBRACK, - ACTIONS(3348), 1, - sym_private_property_identifier, - STATE(2120), 1, + STATE(2161), 1, sym_comment, - [93404] = 6, + STATE(2691), 1, + sym_formal_parameters, + [95054] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, + ACTIONS(3444), 1, anon_sym_LPAREN, - ACTIONS(3842), 1, + ACTIONS(3967), 1, sym_identifier, - STATE(2121), 1, + STATE(2162), 1, sym_comment, - STATE(2326), 1, + STATE(2467), 1, sym_formal_parameters, - [93423] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + [95073] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(3844), 1, - sym__automatic_semicolon, - STATE(2122), 1, - sym_comment, - ACTIONS(932), 2, - anon_sym_else, - anon_sym_while, - [93440] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(2123), 1, + ACTIONS(3969), 1, + sym_identifier, + STATE(1783), 1, + sym_decorator_member_expression, + STATE(2151), 1, + sym_decorator_call_expression, + STATE(2163), 1, sym_comment, - ACTIONS(876), 3, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - [93455] = 6, + [95092] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3235), 1, + ACTIONS(3971), 1, anon_sym_COMMA, - ACTIONS(3846), 1, + ACTIONS(3974), 1, anon_sym_RBRACE, - STATE(2124), 1, + STATE(2164), 2, sym_comment, - STATE(2130), 1, - aux_sym_object_pattern_repeat1, - [93474] = 6, + aux_sym_export_clause_repeat1, + [95109] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3648), 1, + ACTIONS(3976), 1, anon_sym_COMMA, - ACTIONS(3848), 1, + ACTIONS(3979), 1, anon_sym_RBRACE, - STATE(2125), 1, + STATE(2165), 2, sym_comment, - STATE(2129), 1, aux_sym_object_repeat1, - [93493] = 6, + [95126] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3648), 1, + ACTIONS(2323), 1, anon_sym_COMMA, - ACTIONS(3848), 1, - anon_sym_RBRACE, - STATE(2013), 1, - aux_sym_object_repeat1, - STATE(2126), 1, + ACTIONS(3981), 1, + anon_sym_RPAREN, + STATE(1965), 1, + aux_sym_array_repeat1, + STATE(2166), 1, sym_comment, - [93512] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + [95145] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(3235), 1, - anon_sym_COMMA, - ACTIONS(3846), 1, - anon_sym_RBRACE, - STATE(2012), 1, - aux_sym_object_pattern_repeat1, - STATE(2127), 1, - sym_comment, - [93531] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(2128), 1, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, + sym_identifier, + STATE(2167), 1, sym_comment, - ACTIONS(941), 3, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - [93546] = 5, + STATE(2467), 1, + sym_formal_parameters, + [95164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3850), 1, - anon_sym_COMMA, - ACTIONS(3853), 1, - anon_sym_RBRACE, - STATE(2129), 2, + STATE(2168), 1, sym_comment, - aux_sym_object_repeat1, - [93563] = 5, + ACTIONS(3985), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [95179] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3855), 1, + ACTIONS(3987), 1, anon_sym_COMMA, - ACTIONS(3858), 1, + ACTIONS(3990), 1, anon_sym_RBRACE, - STATE(2130), 2, + STATE(2169), 2, sym_comment, aux_sym_object_pattern_repeat1, - [93580] = 6, + [95196] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3860), 1, + ACTIONS(3992), 1, sym_identifier, - STATE(1568), 1, + STATE(1583), 1, sym_decorator_member_expression, - STATE(1646), 1, + STATE(1650), 1, sym_decorator_call_expression, - STATE(2131), 1, + STATE(2170), 1, sym_comment, - [93599] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + [95215] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(3862), 1, - anon_sym_COMMA, - ACTIONS(3865), 1, - anon_sym_RBRACK, - STATE(2132), 2, - sym_comment, - aux_sym_array_pattern_repeat1, - [93616] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3520), 1, - anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_RBRACK, - STATE(2132), 1, - aux_sym_array_pattern_repeat1, - STATE(2133), 1, + ACTIONS(3444), 1, + anon_sym_LPAREN, + ACTIONS(3994), 1, + sym_identifier, + STATE(2171), 1, sym_comment, - [93635] = 6, + STATE(2691), 1, + sym_formal_parameters, + [95234] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2311), 1, - anon_sym_COMMA, - ACTIONS(3869), 1, - anon_sym_RBRACK, - STATE(1884), 1, - aux_sym_array_repeat1, - STATE(2134), 1, + STATE(2172), 1, sym_comment, - [93654] = 5, + ACTIONS(3996), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [95249] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3522), 1, - anon_sym_EQ, - STATE(2135), 1, + ACTIONS(3560), 1, + anon_sym_from, + ACTIONS(3794), 1, + anon_sym_as, + STATE(2173), 1, sym_comment, - ACTIONS(3865), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [93671] = 5, + STATE(2466), 1, + sym__from_clause, + [95268] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3427), 1, + ACTIONS(3566), 1, anon_sym_as, - STATE(2136), 1, + STATE(2174), 1, sym_comment, - ACTIONS(3871), 2, + ACTIONS(3998), 2, anon_sym_COMMA, anon_sym_RBRACE, - [93688] = 6, + [95285] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3873), 1, - sym_identifier, - STATE(1535), 1, - sym_decorator_member_expression, - STATE(1591), 1, - sym_decorator_call_expression, - STATE(2137), 1, + ACTIONS(4002), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(2175), 1, sym_comment, - [93707] = 4, + ACTIONS(4000), 2, + sym_html_character_reference, + anon_sym_DQUOTE, + [95302] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(2138), 1, + ACTIONS(4004), 1, + sym_identifier, + ACTIONS(4006), 1, + anon_sym_SEMI, + ACTIONS(4008), 1, + sym__automatic_semicolon, + STATE(2176), 1, sym_comment, - ACTIONS(2299), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [93722] = 6, + [95321] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3875), 1, + ACTIONS(4010), 1, sym_identifier, - ACTIONS(3877), 1, + ACTIONS(4012), 1, anon_sym_SEMI, - ACTIONS(3879), 1, + ACTIONS(4014), 1, sym__automatic_semicolon, - STATE(2139), 1, + STATE(2177), 1, sym_comment, - [93741] = 6, + [95340] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3881), 1, - anon_sym_COMMA, - ACTIONS(3883), 1, - anon_sym_RBRACE, - STATE(2093), 1, - aux_sym_named_imports_repeat1, - STATE(2140), 1, + STATE(2178), 1, sym_comment, - [93760] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(4016), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [95355] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3885), 1, - sym_identifier, - ACTIONS(3887), 1, - anon_sym_SEMI, - ACTIONS(3889), 1, - sym__automatic_semicolon, - STATE(2141), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4018), 1, + anon_sym_COMMA, + ACTIONS(4020), 1, + anon_sym_RBRACE, + STATE(2080), 1, + aux_sym_named_imports_repeat1, + STATE(2179), 1, sym_comment, - [93779] = 6, + [95374] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3891), 1, + ACTIONS(4022), 1, anon_sym_LPAREN, - ACTIONS(3893), 1, + ACTIONS(4024), 1, anon_sym_await, - STATE(78), 1, + STATE(104), 1, sym__for_header, - STATE(2142), 1, + STATE(2180), 1, sym_comment, - [93798] = 6, + [95393] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3895), 1, - sym_identifier, - ACTIONS(3897), 1, - anon_sym_SEMI, - ACTIONS(3899), 1, - sym__automatic_semicolon, - STATE(2143), 1, + ACTIONS(4026), 1, + anon_sym_SQUOTE, + STATE(2181), 1, sym_comment, - [93817] = 6, - ACTIONS(3), 1, + ACTIONS(4028), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [95410] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(4030), 1, + anon_sym_EQ, + STATE(2182), 1, + sym_comment, + ACTIONS(1843), 2, + anon_sym_in, + anon_sym_of, + [95427] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3901), 1, - sym_identifier, - ACTIONS(3903), 1, - anon_sym_SEMI, - ACTIONS(3905), 1, - sym__automatic_semicolon, - STATE(2144), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2183), 1, sym_comment, - [93836] = 4, + ACTIONS(1555), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [95442] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2145), 1, + STATE(2184), 1, sym_comment, - ACTIONS(3370), 3, + ACTIONS(3363), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [93851] = 6, + [95457] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2185), 1, + sym_comment, + ACTIONS(931), 3, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [95472] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3907), 1, + ACTIONS(4032), 1, anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RPAREN, - STATE(2085), 1, - aux_sym_formal_parameters_repeat1, - STATE(2146), 1, + ACTIONS(4034), 1, + anon_sym_RBRACE, + STATE(2164), 1, + aux_sym_export_clause_repeat1, + STATE(2186), 1, sym_comment, - [93870] = 6, + [95491] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3911), 1, - anon_sym_DQUOTE, - ACTIONS(3913), 1, - anon_sym_SQUOTE, - STATE(2147), 1, + ACTIONS(3560), 1, + anon_sym_from, + ACTIONS(3794), 1, + anon_sym_as, + STATE(2187), 1, sym_comment, - STATE(2232), 1, - sym_string, - [93889] = 5, + STATE(2427), 1, + sym__from_clause, + [95510] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3915), 1, - anon_sym_EQ, - STATE(2148), 1, + ACTIONS(2341), 1, + sym__automatic_semicolon, + STATE(2188), 1, sym_comment, - ACTIONS(1830), 2, - anon_sym_in, - anon_sym_of, - [93906] = 6, + ACTIONS(1023), 2, + anon_sym_else, + anon_sym_while, + [95527] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3407), 1, + ACTIONS(3444), 1, anon_sym_LPAREN, - ACTIONS(3917), 1, + ACTIONS(4036), 1, sym_identifier, - STATE(2149), 1, + STATE(2189), 1, sym_comment, - STATE(2224), 1, + STATE(2467), 1, sym_formal_parameters, - [93925] = 5, + [95546] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3919), 1, - anon_sym_as, - STATE(2150), 1, + ACTIONS(4038), 1, + anon_sym_LPAREN, + STATE(106), 1, + sym_parenthesized_expression, + STATE(2190), 1, sym_comment, - ACTIONS(3921), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [93942] = 6, + [95562] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3923), 1, - anon_sym_COMMA, - ACTIONS(3925), 1, - anon_sym_RBRACE, - STATE(2105), 1, - aux_sym_export_clause_repeat1, - STATE(2151), 1, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(499), 1, + sym_class_body, + STATE(2191), 1, sym_comment, - [93961] = 6, + [95578] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3927), 1, - anon_sym_LPAREN, - ACTIONS(3929), 1, - anon_sym_await, - STATE(102), 1, - sym__for_header, - STATE(2152), 1, + ACTIONS(3448), 1, + anon_sym_LBRACE, + STATE(714), 1, + sym_class_body, + STATE(2192), 1, sym_comment, - [93980] = 4, + [95594] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2153), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(1373), 1, + sym_statement_block, + STATE(2193), 1, sym_comment, - ACTIONS(3931), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [93995] = 5, + [95610] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2154), 1, + STATE(2194), 1, sym_comment, - STATE(2561), 1, + STATE(2464), 1, sym_formal_parameters, - [94011] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + [95626] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(2155), 1, - sym_comment, - ACTIONS(3933), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [94025] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2156), 1, + ACTIONS(4042), 1, + sym_identifier, + ACTIONS(4044), 1, + anon_sym_STAR, + STATE(2195), 1, sym_comment, - STATE(2244), 1, - sym_formal_parameters, - [94041] = 4, + [95642] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2157), 1, + ACTIONS(3735), 1, + anon_sym_DOT, + ACTIONS(3963), 1, + anon_sym_GT, + STATE(2196), 1, sym_comment, - ACTIONS(1739), 2, - anon_sym_else, - anon_sym_while, - [94055] = 5, + [95658] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, + ACTIONS(4038), 1, anon_sym_LPAREN, - STATE(110), 1, + STATE(112), 1, sym_parenthesized_expression, - STATE(2158), 1, + STATE(2197), 1, sym_comment, - [94071] = 5, + [95674] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(1771), 1, - sym_statement_block, - STATE(2159), 1, + STATE(2198), 1, sym_comment, - [94087] = 5, + STATE(2236), 1, + sym_statement_block, + [95690] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, - anon_sym_LPAREN, - STATE(106), 1, - sym_parenthesized_expression, - STATE(2160), 1, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_class_body, + STATE(2199), 1, sym_comment, - [94103] = 5, + [95706] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3937), 1, - anon_sym_SEMI, - ACTIONS(3939), 1, - sym__automatic_semicolon, - STATE(2161), 1, + STATE(2200), 1, sym_comment, - [94119] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(4046), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95720] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3941), 1, - sym_identifier, - ACTIONS(3943), 1, - anon_sym_STAR, - STATE(2162), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2201), 1, sym_comment, - [94135] = 5, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95734] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3945), 1, - anon_sym_SEMI, - ACTIONS(3947), 1, - sym__automatic_semicolon, - STATE(2163), 1, + STATE(2202), 1, sym_comment, - [94151] = 5, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95748] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(4038), 1, anon_sym_LPAREN, - STATE(2164), 1, + STATE(101), 1, + sym_parenthesized_expression, + STATE(2203), 1, sym_comment, - STATE(2311), 1, - sym_formal_parameters, - [94167] = 4, + [95764] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2165), 1, + STATE(2204), 1, sym_comment, - ACTIONS(1739), 2, - anon_sym_else, - anon_sym_while, - [94181] = 5, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, - anon_sym_LPAREN, - STATE(924), 1, - sym_parenthesized_expression, - STATE(2166), 1, + STATE(2205), 1, sym_comment, - [94197] = 5, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95792] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, - anon_sym_LPAREN, - STATE(111), 1, - sym_parenthesized_expression, - STATE(2167), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2206), 1, sym_comment, - [94213] = 5, + STATE(2232), 1, + sym_statement_block, + [95808] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3949), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(461), 1, - sym_statement_block, - STATE(2168), 1, + STATE(2207), 1, sym_comment, - [94229] = 5, + STATE(2233), 1, + sym_statement_block, + [95824] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, - anon_sym_LPAREN, - STATE(117), 1, - sym_parenthesized_expression, - STATE(2169), 1, + ACTIONS(4050), 1, + anon_sym_LBRACE, + STATE(461), 1, + sym_statement_block, + STATE(2208), 1, sym_comment, - [94245] = 5, + [95840] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3951), 1, - anon_sym_SEMI, - ACTIONS(3953), 1, - sym__automatic_semicolon, - STATE(2170), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2209), 1, sym_comment, - [94261] = 5, + STATE(2234), 1, + sym_statement_block, + [95856] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3955), 1, - anon_sym_SEMI, - ACTIONS(3957), 1, - sym__automatic_semicolon, - STATE(2171), 1, + STATE(2210), 1, sym_comment, - [94277] = 4, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95870] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2172), 1, + STATE(2211), 1, sym_comment, - ACTIONS(3959), 2, + ACTIONS(4052), 2, sym__automatic_semicolon, anon_sym_SEMI, - [94291] = 5, + [95884] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2173), 1, + STATE(2212), 1, sym_comment, - STATE(2204), 1, - sym_formal_parameters, - [94307] = 4, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95898] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2174), 1, + ACTIONS(3931), 1, + anon_sym_LBRACE, + STATE(895), 1, + sym_statement_block, + STATE(2213), 1, sym_comment, - ACTIONS(3961), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [94321] = 4, + [95914] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2175), 1, + STATE(2214), 1, sym_comment, - ACTIONS(3865), 2, + ACTIONS(4048), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [94335] = 4, + anon_sym_RBRACE, + [95928] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2176), 1, + STATE(2215), 1, sym_comment, - ACTIONS(1749), 2, - anon_sym_else, - anon_sym_while, - [94349] = 5, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95942] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(1579), 1, - sym_statement_block, - STATE(2177), 1, + STATE(2216), 1, sym_comment, - [94365] = 5, + STATE(2235), 1, + sym_statement_block, + [95958] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2178), 1, + ACTIONS(3731), 1, + anon_sym_COLON, + ACTIONS(3963), 1, + anon_sym_GT, + STATE(2217), 1, sym_comment, - STATE(2253), 1, - sym_statement_block, - [94381] = 5, + [95974] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3965), 1, - anon_sym_SEMI, - ACTIONS(3967), 1, - sym__automatic_semicolon, - STATE(2179), 1, + ACTIONS(4054), 1, + anon_sym_LBRACE, + STATE(1124), 1, + sym_statement_block, + STATE(2218), 1, sym_comment, - [94397] = 5, + [95990] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3969), 1, + ACTIONS(4056), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(4058), 1, anon_sym_STAR, - STATE(2180), 1, + STATE(2219), 1, sym_comment, - [94413] = 4, + [96006] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2181), 1, + ACTIONS(3365), 1, + anon_sym_in, + ACTIONS(3367), 1, + anon_sym_of, + STATE(2220), 1, sym_comment, - ACTIONS(2252), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [94427] = 5, + [96022] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3973), 1, - anon_sym_LPAREN, - STATE(2182), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2221), 1, sym_comment, - STATE(2290), 1, - sym_parenthesized_expression, - [94443] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(2239), 1, + sym_statement_block, + [96038] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(2183), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2222), 1, sym_comment, - ACTIONS(3975), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [94457] = 4, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96052] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2184), 1, + STATE(2223), 1, sym_comment, - ACTIONS(1735), 2, - anon_sym_else, - anon_sym_while, - [94471] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96066] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(2185), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2224), 1, sym_comment, - ACTIONS(3977), 2, - sym_jsx_identifier, - sym_identifier, - [94485] = 5, + STATE(2588), 1, + sym_formal_parameters, + [96082] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2186), 1, + STATE(2225), 1, sym_comment, - STATE(2271), 1, - sym_formal_parameters, - [94501] = 4, + ACTIONS(4048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96096] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2187), 1, + ACTIONS(4060), 1, + anon_sym_LBRACE, + STATE(718), 1, + sym_statement_block, + STATE(2226), 1, sym_comment, - ACTIONS(3979), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [94515] = 5, + [96112] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(2188), 1, + STATE(2227), 1, sym_comment, - STATE(2289), 1, + STATE(2583), 1, sym_statement_block, - [94531] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [96128] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(2189), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2228), 1, sym_comment, - ACTIONS(3981), 2, - sym_jsx_identifier, - sym_identifier, - [94545] = 4, + STATE(2581), 1, + sym_formal_parameters, + [96144] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2190), 1, + STATE(2229), 1, sym_comment, - ACTIONS(2238), 2, + ACTIONS(2265), 2, sym__automatic_semicolon, anon_sym_SEMI, - [94559] = 5, + [96158] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3983), 1, + ACTIONS(4062), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(4064), 1, anon_sym_STAR, - STATE(2191), 1, + STATE(2230), 1, sym_comment, - [94575] = 5, + [96174] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2192), 1, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(1359), 1, + sym_class_body, + STATE(2231), 1, sym_comment, - STATE(2369), 1, - sym_formal_parameters, - [94591] = 5, + [96190] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(203), 1, - sym_class_body, - STATE(2193), 1, + STATE(2232), 1, + sym_comment, + ACTIONS(4066), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96204] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2233), 1, sym_comment, - [94607] = 5, + ACTIONS(4066), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96218] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3987), 1, - anon_sym_SEMI, - ACTIONS(3989), 1, - sym__automatic_semicolon, - STATE(2194), 1, + STATE(2234), 1, sym_comment, - [94623] = 5, + ACTIONS(4066), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96232] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3991), 1, - anon_sym_SEMI, - ACTIONS(3993), 1, - sym__automatic_semicolon, - STATE(2195), 1, + STATE(2235), 1, sym_comment, - [94639] = 5, + ACTIONS(4066), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96246] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2196), 1, + STATE(2236), 1, sym_comment, - STATE(2328), 1, - sym_formal_parameters, - [94655] = 5, + ACTIONS(4066), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96260] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3342), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3348), 1, + ACTIONS(4070), 1, sym_private_property_identifier, - STATE(2197), 1, + STATE(2237), 1, sym_comment, - [94671] = 5, + [96276] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3995), 1, + ACTIONS(3412), 1, sym_identifier, - ACTIONS(3997), 1, + ACTIONS(3418), 1, sym_private_property_identifier, - STATE(2198), 1, + STATE(2238), 1, sym_comment, - [94687] = 5, + [96292] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3999), 1, - anon_sym_LBRACE, - STATE(2199), 1, + STATE(2239), 1, sym_comment, - STATE(2572), 1, - sym_switch_body, - [94703] = 5, + ACTIONS(4066), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96306] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, - anon_sym_LBRACE, - STATE(1264), 1, - sym_statement_block, - STATE(2200), 1, + STATE(2240), 1, + sym_comment, + ACTIONS(1727), 2, + anon_sym_else, + anon_sym_while, + [96320] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2241), 1, sym_comment, - [94719] = 4, + ACTIONS(4072), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [96334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2201), 1, + STATE(2242), 1, sym_comment, - ACTIONS(4003), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [94733] = 5, + ACTIONS(1729), 2, + anon_sym_else, + anon_sym_while, + [96348] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2202), 1, + STATE(2243), 1, sym_comment, - STATE(2329), 1, - sym_formal_parameters, - [94749] = 5, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96362] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, - anon_sym_LBRACE, - STATE(1360), 1, - sym_statement_block, - STATE(2203), 1, + STATE(2244), 1, sym_comment, - [94765] = 5, + ACTIONS(1731), 2, + anon_sym_else, + anon_sym_while, + [96376] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4005), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(201), 1, + STATE(1569), 1, sym_statement_block, - STATE(2204), 1, + STATE(2245), 1, sym_comment, - [94781] = 5, + [96392] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4007), 1, + ACTIONS(4078), 1, anon_sym_LBRACE, - STATE(746), 1, + STATE(862), 1, sym_switch_body, - STATE(2205), 1, + STATE(2246), 1, sym_comment, - [94797] = 5, + [96408] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4009), 1, + ACTIONS(4080), 1, anon_sym_LPAREN, - STATE(115), 1, + STATE(70), 1, sym__for_header, - STATE(2206), 1, + STATE(2247), 1, sym_comment, - [94813] = 5, + [96424] = 5, ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3935), 1, - anon_sym_LPAREN, - STATE(116), 1, - sym_parenthesized_expression, - STATE(2207), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1568), 1, + sym_statement_block, + STATE(2248), 1, sym_comment, - [94829] = 5, + [96440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4009), 1, - anon_sym_LPAREN, - STATE(93), 1, - sym__for_header, - STATE(2208), 1, + STATE(2249), 1, sym_comment, - [94845] = 4, + ACTIONS(1922), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [96454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2209), 1, + STATE(2250), 1, sym_comment, - ACTIONS(1727), 2, - anon_sym_else, - anon_sym_while, - [94859] = 5, + ACTIONS(3919), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96468] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3973), 1, - anon_sym_LPAREN, - STATE(2210), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1567), 1, + sym_statement_block, + STATE(2251), 1, sym_comment, - STATE(2536), 1, - sym_parenthesized_expression, - [94875] = 4, + [96484] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2211), 1, + STATE(2252), 1, sym_comment, - ACTIONS(1725), 2, - anon_sym_else, - anon_sym_while, - [94889] = 4, + ACTIONS(4082), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96498] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2212), 1, + STATE(2253), 1, sym_comment, - ACTIONS(4011), 2, + ACTIONS(4084), 2, sym__automatic_semicolon, anon_sym_SEMI, - [94903] = 4, + [96512] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2213), 1, + STATE(2254), 1, sym_comment, - ACTIONS(4013), 2, + ACTIONS(4086), 2, sym__automatic_semicolon, anon_sym_SEMI, - [94917] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [96526] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4015), 1, - sym_identifier, - ACTIONS(4017), 1, - anon_sym_STAR, - STATE(2214), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2255), 1, sym_comment, - [94933] = 4, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96540] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2215), 1, + STATE(2256), 1, sym_comment, - ACTIONS(2240), 2, + ACTIONS(2261), 2, sym__automatic_semicolon, anon_sym_SEMI, - [94947] = 4, + [96554] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2216), 1, + STATE(2257), 1, sym_comment, - ACTIONS(4019), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [94961] = 4, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96568] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2217), 1, + STATE(2258), 1, sym_comment, - ACTIONS(2242), 2, + ACTIONS(2259), 2, sym__automatic_semicolon, anon_sym_SEMI, - [94975] = 4, + [96582] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2218), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1563), 1, + sym_statement_block, + STATE(2259), 1, sym_comment, - ACTIONS(4021), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [94989] = 4, + [96598] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2219), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1562), 1, + sym_statement_block, + STATE(2260), 1, sym_comment, - ACTIONS(1723), 2, - anon_sym_else, - anon_sym_while, - [95003] = 5, + [96614] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3566), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(1348), 1, - sym_class_body, - STATE(2220), 1, + STATE(1561), 1, + sym_statement_block, + STATE(2261), 1, sym_comment, - [95019] = 5, + [96630] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4023), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(1146), 1, + STATE(2058), 1, sym_statement_block, - STATE(2221), 1, + STATE(2262), 1, sym_comment, - [95035] = 5, + [96646] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3688), 1, - anon_sym_COLON, - ACTIONS(3827), 1, - anon_sym_GT, - STATE(2222), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(1321), 1, + sym_statement_block, + STATE(2263), 1, sym_comment, - [95051] = 5, + [96662] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2223), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1556), 1, + sym_statement_block, + STATE(2264), 1, sym_comment, - STATE(2245), 1, - sym_formal_parameters, - [95067] = 5, + [96678] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4023), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(1151), 1, + STATE(1564), 1, sym_statement_block, - STATE(2224), 1, + STATE(2265), 1, sym_comment, - [95083] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [96694] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4025), 1, - sym_identifier, - ACTIONS(4027), 1, - anon_sym_STAR, - STATE(2225), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1581), 1, + sym_statement_block, + STATE(2266), 1, sym_comment, - [95099] = 5, + [96710] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, + ACTIONS(4038), 1, anon_sym_LPAREN, - STATE(108), 1, + STATE(115), 1, sym_parenthesized_expression, - STATE(2226), 1, + STATE(2267), 1, sym_comment, - [95115] = 5, + [96726] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, - anon_sym_LBRACE, - STATE(1350), 1, - sym_statement_block, - STATE(2227), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2268), 1, sym_comment, - [95131] = 5, + STATE(2579), 1, + sym_formal_parameters, + [96742] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3692), 1, - anon_sym_DOT, - ACTIONS(3827), 1, - anon_sym_GT, - STATE(2228), 1, + ACTIONS(4088), 1, + sym_identifier, + ACTIONS(4090), 1, + anon_sym_STAR, + STATE(2269), 1, sym_comment, - [95147] = 4, + [96758] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2229), 1, + STATE(2270), 1, sym_comment, - ACTIONS(1717), 2, - anon_sym_else, - anon_sym_while, - [95161] = 5, + ACTIONS(2027), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [96772] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3566), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(1270), 1, - sym_class_body, - STATE(2230), 1, + STATE(2225), 1, + sym_statement_block, + STATE(2271), 1, sym_comment, - [95177] = 4, + [96788] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2231), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1578), 1, + sym_statement_block, + STATE(2272), 1, sym_comment, - ACTIONS(4029), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [95191] = 4, + [96804] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2232), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1577), 1, + sym_statement_block, + STATE(2273), 1, sym_comment, - ACTIONS(4031), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [95205] = 4, + [96820] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2233), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1576), 1, + sym_statement_block, + STATE(2274), 1, sym_comment, - ACTIONS(2279), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [95219] = 5, + [96836] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4033), 1, + ACTIONS(4092), 1, anon_sym_SEMI, - ACTIONS(4035), 1, + ACTIONS(4094), 1, sym__automatic_semicolon, - STATE(2234), 1, + STATE(2275), 1, sym_comment, - [95235] = 4, + [96852] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2235), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2223), 1, + sym_statement_block, + STATE(2276), 1, sym_comment, - ACTIONS(2281), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [95249] = 4, + [96868] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2236), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2222), 1, + sym_statement_block, + STATE(2277), 1, sym_comment, - ACTIONS(3858), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [95263] = 5, + [96884] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3434), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(705), 1, - sym_class_body, - STATE(2237), 1, + STATE(1572), 1, + sym_statement_block, + STATE(2278), 1, sym_comment, - [95279] = 5, + [96900] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4037), 1, + ACTIONS(4096), 1, anon_sym_SEMI, - ACTIONS(4039), 1, + ACTIONS(4098), 1, sym__automatic_semicolon, - STATE(2238), 1, + STATE(2279), 1, sym_comment, - [95295] = 5, + [96916] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4041), 1, + ACTIONS(4100), 1, anon_sym_SEMI, - ACTIONS(4043), 1, + ACTIONS(4102), 1, sym__automatic_semicolon, - STATE(2239), 1, + STATE(2280), 1, sym_comment, - [95311] = 5, + [96932] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4045), 1, - anon_sym_SEMI, - ACTIONS(4047), 1, - sym__automatic_semicolon, - STATE(2240), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1571), 1, + sym_statement_block, + STATE(2281), 1, sym_comment, - [95327] = 5, + [96948] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4049), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(480), 1, + STATE(1558), 1, sym_statement_block, - STATE(2241), 1, + STATE(2282), 1, sym_comment, - [95343] = 5, + [96964] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2242), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1555), 1, + sym_statement_block, + STATE(2283), 1, sym_comment, - STATE(2346), 1, - sym_formal_parameters, - [95359] = 5, + [96980] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2243), 1, + STATE(2284), 1, sym_comment, - STATE(2347), 1, - sym_formal_parameters, - [95375] = 5, + ACTIONS(4104), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [96994] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4051), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(709), 1, + STATE(1584), 1, sym_statement_block, - STATE(2244), 1, + STATE(2285), 1, sym_comment, - [95391] = 5, + [97010] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(2245), 1, + STATE(1585), 1, + sym_statement_block, + STATE(2286), 1, sym_comment, - STATE(2350), 1, + [97026] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4106), 1, + anon_sym_LBRACE, + STATE(2111), 1, sym_statement_block, - [95407] = 5, + STATE(2287), 1, + sym_comment, + [97042] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2246), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(1331), 1, + sym_statement_block, + STATE(2288), 1, sym_comment, - STATE(2351), 1, + [97058] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2221), 1, sym_formal_parameters, - [95423] = 5, - ACTIONS(3), 1, + STATE(2289), 1, + sym_comment, + [97074] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2198), 1, + sym_formal_parameters, + STATE(2290), 1, + sym_comment, + [97090] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4053), 1, - sym_identifier, - ACTIONS(4055), 1, - anon_sym_STAR, - STATE(2247), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2216), 1, + sym_formal_parameters, + STATE(2291), 1, sym_comment, - [95439] = 5, + [97106] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4057), 1, + ACTIONS(4108), 1, anon_sym_LPAREN, - STATE(862), 1, + STATE(765), 1, sym_parenthesized_expression, - STATE(2248), 1, + STATE(2292), 1, sym_comment, - [95455] = 4, + [97122] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2249), 1, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(1332), 1, + sym_class_body, + STATE(2293), 1, sym_comment, - ACTIONS(3853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [95469] = 5, + [97138] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4059), 1, + ACTIONS(4110), 1, anon_sym_LBRACE, - STATE(866), 1, + STATE(764), 1, sym_statement_block, - STATE(2250), 1, + STATE(2294), 1, sym_comment, - [95485] = 4, + [97154] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2251), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(1333), 1, + sym_statement_block, + STATE(2295), 1, sym_comment, - ACTIONS(3809), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [95499] = 5, + [97170] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4061), 1, + ACTIONS(4040), 1, anon_sym_LBRACE, - STATE(917), 1, + STATE(1334), 1, sym_statement_block, - STATE(2252), 1, + STATE(2296), 1, sym_comment, - [95515] = 4, + [97186] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2253), 1, + ACTIONS(4112), 1, + anon_sym_LPAREN, + STATE(2297), 1, sym_comment, - ACTIONS(4063), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [95529] = 5, + STATE(2544), 1, + sym_parenthesized_expression, + [97202] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2254), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1586), 1, + sym_statement_block, + STATE(2298), 1, sym_comment, - STATE(2354), 1, - sym_formal_parameters, - [95545] = 5, + [97218] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2255), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2215), 1, + sym_statement_block, + STATE(2299), 1, sym_comment, - STATE(2361), 1, - sym_formal_parameters, - [95561] = 5, + [97234] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3465), 1, + ACTIONS(3518), 1, anon_sym_LBRACE, - STATE(187), 1, + STATE(170), 1, sym_class_body, - STATE(2256), 1, + STATE(2300), 1, sym_comment, - [95577] = 5, + [97250] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4065), 1, + ACTIONS(4114), 1, anon_sym_LBRACE, - STATE(169), 1, + STATE(196), 1, sym_statement_block, - STATE(2257), 1, + STATE(2301), 1, sym_comment, - [95593] = 4, + [97266] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2258), 1, + STATE(2302), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_else, - anon_sym_while, - [95607] = 5, + ACTIONS(2023), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [97280] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2765), 1, - anon_sym_LPAREN, - ACTIONS(4067), 1, - anon_sym_EQ_GT, - STATE(2259), 1, + STATE(2303), 1, sym_comment, - [95623] = 5, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [97294] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3409), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(1159), 1, - sym_class_body, - STATE(2260), 1, + STATE(1587), 1, + sym_statement_block, + STATE(2304), 1, sym_comment, - [95639] = 5, + [97310] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2765), 1, - anon_sym_LPAREN, - ACTIONS(4069), 1, - anon_sym_EQ_GT, - STATE(2261), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1590), 1, + sym_statement_block, + STATE(2305), 1, sym_comment, - [95655] = 5, + [97326] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2262), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2214), 1, + sym_statement_block, + STATE(2306), 1, sym_comment, - STATE(2376), 1, - sym_formal_parameters, - [95671] = 5, + [97342] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3688), 1, + ACTIONS(3731), 1, anon_sym_COLON, - ACTIONS(3805), 1, + ACTIONS(3870), 1, anon_sym_GT, - STATE(2263), 1, + STATE(2307), 1, sym_comment, - [95687] = 5, + [97358] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, - anon_sym_LPAREN, - STATE(70), 1, - sym_parenthesized_expression, - STATE(2264), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1591), 1, + sym_statement_block, + STATE(2308), 1, sym_comment, - [95703] = 5, + [97374] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3692), 1, + ACTIONS(3735), 1, anon_sym_DOT, - ACTIONS(3805), 1, + ACTIONS(3870), 1, anon_sym_GT, - STATE(2265), 1, + STATE(2309), 1, sym_comment, - [95719] = 4, + [97390] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2266), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2310), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_else, - anon_sym_while, - [95733] = 5, + STATE(2570), 1, + sym_formal_parameters, + [97406] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2267), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2212), 1, + sym_statement_block, + STATE(2311), 1, sym_comment, - STATE(2379), 1, - sym_formal_parameters, - [95749] = 5, + [97422] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2268), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1554), 1, + sym_statement_block, + STATE(2312), 1, sym_comment, - STATE(2384), 1, - sym_formal_parameters, - [95765] = 5, + [97438] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3473), 1, + ACTIONS(3524), 1, anon_sym_LBRACE, - STATE(575), 1, + STATE(554), 1, sym_class_body, - STATE(2269), 1, + STATE(2313), 1, sym_comment, - [95781] = 5, + [97454] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4071), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(584), 1, + STATE(553), 1, sym_statement_block, - STATE(2270), 1, + STATE(2314), 1, sym_comment, - [95797] = 5, + [97470] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(2271), 1, - sym_comment, - STATE(2385), 1, + STATE(1594), 1, sym_statement_block, - [95813] = 4, + STATE(2315), 1, + sym_comment, + [97486] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2272), 1, + ACTIONS(4118), 1, + anon_sym_SEMI, + ACTIONS(4120), 1, + sym__automatic_semicolon, + STATE(2316), 1, sym_comment, - ACTIONS(1743), 2, - anon_sym_else, - anon_sym_while, - [95827] = 4, + [97502] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2273), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1566), 1, + sym_statement_block, + STATE(2317), 1, sym_comment, - ACTIONS(1747), 2, - anon_sym_else, - anon_sym_while, - [95841] = 5, + [97518] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2318), 1, + sym_comment, + ACTIONS(2222), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [97532] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4065), 1, + ACTIONS(4114), 1, anon_sym_LBRACE, - STATE(185), 1, + STATE(199), 1, sym_statement_block, - STATE(2274), 1, + STATE(2319), 1, sym_comment, - [95857] = 5, + [97548] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4065), 1, + ACTIONS(4114), 1, anon_sym_LBRACE, - STATE(184), 1, + STATE(189), 1, sym_statement_block, - STATE(2275), 1, + STATE(2320), 1, sym_comment, - [95873] = 4, + [97564] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2276), 1, + ACTIONS(3629), 1, + anon_sym_LBRACE, + STATE(2053), 1, + sym_class_body, + STATE(2321), 1, sym_comment, - ACTIONS(1737), 2, - anon_sym_else, - anon_sym_while, - [95887] = 4, + [97580] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2277), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2210), 1, + sym_statement_block, + STATE(2322), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [95901] = 5, + [97596] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3465), 1, + ACTIONS(3518), 1, anon_sym_LBRACE, - STATE(181), 1, + STATE(191), 1, sym_class_body, - STATE(2278), 1, + STATE(2323), 1, sym_comment, - [95917] = 5, + [97612] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4071), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(588), 1, + STATE(547), 1, sym_statement_block, - STATE(2279), 1, + STATE(2324), 1, sym_comment, - [95933] = 5, + [97628] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4071), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(590), 1, + STATE(546), 1, sym_statement_block, - STATE(2280), 1, + STATE(2325), 1, sym_comment, - [95949] = 5, + [97644] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3473), 1, + ACTIONS(3524), 1, anon_sym_LBRACE, - STATE(592), 1, + STATE(545), 1, sym_class_body, - STATE(2281), 1, + STATE(2326), 1, sym_comment, - [95965] = 4, + [97660] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2282), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2209), 1, + sym_formal_parameters, + STATE(2327), 1, sym_comment, - ACTIONS(1729), 2, - anon_sym_else, - anon_sym_while, - [95979] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + [97676] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(2283), 1, - sym_comment, - ACTIONS(4073), 2, - anon_sym_GT, - anon_sym_DOT, - [95993] = 5, ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(4065), 1, - anon_sym_LBRACE, - STATE(176), 1, - sym_statement_block, - STATE(2284), 1, + sym_html_comment, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(4124), 1, + anon_sym_STAR, + STATE(2328), 1, sym_comment, - [96009] = 5, + [97692] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4071), 1, + ACTIONS(4114), 1, anon_sym_LBRACE, - STATE(593), 1, + STATE(171), 1, sym_statement_block, - STATE(2285), 1, + STATE(2329), 1, sym_comment, - [96025] = 5, + [97708] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3811), 1, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(594), 1, + STATE(540), 1, sym_statement_block, - STATE(2286), 1, + STATE(2330), 1, sym_comment, - [96041] = 5, + [97724] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4023), 1, + ACTIONS(3877), 1, anon_sym_LBRACE, - STATE(1163), 1, + STATE(539), 1, sym_statement_block, - STATE(2287), 1, + STATE(2331), 1, sym_comment, - [96057] = 4, + [97740] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2288), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym_formal_parameters, + STATE(2332), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_else, - anon_sym_while, - [96071] = 4, + [97756] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2289), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2206), 1, + sym_formal_parameters, + STATE(2333), 1, sym_comment, - ACTIONS(1719), 2, - anon_sym_else, - anon_sym_while, - [96085] = 4, + [97772] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2290), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2205), 1, + sym_statement_block, + STATE(2334), 1, sym_comment, - ACTIONS(1713), 2, - anon_sym_else, - anon_sym_while, - [96099] = 4, + [97788] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2291), 1, + STATE(2335), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [96113] = 4, + ACTIONS(2248), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [97802] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2292), 1, + STATE(2336), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [96127] = 4, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [97816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2293), 1, + ACTIONS(4038), 1, + anon_sym_LPAREN, + STATE(71), 1, + sym_parenthesized_expression, + STATE(2337), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [96141] = 5, + [97832] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(1309), 1, + STATE(2204), 1, sym_statement_block, - STATE(2294), 1, + STATE(2338), 1, sym_comment, - [96157] = 5, + [97848] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, - anon_sym_LPAREN, - STATE(91), 1, - sym_parenthesized_expression, - STATE(2295), 1, + ACTIONS(4106), 1, + anon_sym_LBRACE, + STATE(2049), 1, + sym_statement_block, + STATE(2339), 1, sym_comment, - [96173] = 5, + [97864] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4075), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(459), 1, + STATE(2202), 1, sym_statement_block, - STATE(2296), 1, + STATE(2340), 1, sym_comment, - [96189] = 5, + [97880] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, + ACTIONS(4038), 1, anon_sym_LPAREN, - STATE(92), 1, + STATE(96), 1, sym_parenthesized_expression, - STATE(2297), 1, + STATE(2341), 1, sym_comment, - [96205] = 5, + [97896] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4077), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(2024), 1, + STATE(460), 1, sym_statement_block, - STATE(2298), 1, + STATE(2342), 1, sym_comment, - [96221] = 5, + [97912] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(4106), 1, anon_sym_LBRACE, - STATE(1546), 1, + STATE(2048), 1, sym_statement_block, - STATE(2299), 1, + STATE(2343), 1, sym_comment, - [96237] = 4, + [97928] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2300), 1, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(1358), 1, + sym_class_body, + STATE(2344), 1, sym_comment, - ACTIONS(4079), 2, + [97944] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2345), 1, + sym_comment, + ACTIONS(4128), 2, sym__automatic_semicolon, anon_sym_SEMI, - [96251] = 5, + [97958] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2301), 1, + STATE(2346), 1, sym_comment, - STATE(2478), 1, - sym_formal_parameters, - [96267] = 5, + ACTIONS(4130), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [97972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(1547), 1, + STATE(2201), 1, sym_statement_block, - STATE(2302), 1, + STATE(2347), 1, sym_comment, - [96283] = 4, + [97988] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2303), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2348), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [96297] = 5, + STATE(2555), 1, + sym_formal_parameters, + [98004] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3688), 1, - anon_sym_COLON, - ACTIONS(3690), 1, - anon_sym_GT, - STATE(2304), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(1367), 1, + sym_statement_block, + STATE(2349), 1, sym_comment, - [96313] = 5, + [98020] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3409), 1, - anon_sym_LBRACE, - STATE(1102), 1, - sym_class_body, - STATE(2305), 1, + STATE(2350), 1, sym_comment, - [96329] = 5, + ACTIONS(4132), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98034] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1566), 1, - sym_statement_block, - STATE(2306), 1, + STATE(2351), 1, sym_comment, - [96345] = 5, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [98048] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2307), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2200), 1, + sym_statement_block, + STATE(2352), 1, sym_comment, - STATE(2419), 1, - sym_formal_parameters, - [96361] = 4, + [98064] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2308), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2353), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [96375] = 4, + STATE(2398), 1, + sym_formal_parameters, + [98080] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2309), 1, + STATE(2354), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [96389] = 5, + ACTIONS(4134), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [98094] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2310), 1, + ACTIONS(4060), 1, + anon_sym_LBRACE, + STATE(868), 1, + sym_statement_block, + STATE(2355), 1, sym_comment, - STATE(2420), 1, - sym_formal_parameters, - [96405] = 5, + [98110] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4023), 1, + ACTIONS(4040), 1, anon_sym_LBRACE, - STATE(1100), 1, + STATE(1368), 1, sym_statement_block, - STATE(2311), 1, + STATE(2356), 1, sym_comment, - [96421] = 4, + [98126] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2312), 1, - sym_comment, - ACTIONS(4081), 2, + ACTIONS(4054), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [96435] = 4, + STATE(1185), 1, + sym_statement_block, + STATE(2357), 1, + sym_comment, + [98142] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2313), 1, + STATE(2358), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [96449] = 4, + ACTIONS(2161), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98156] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2314), 1, + STATE(2359), 1, sym_comment, - ACTIONS(2263), 2, + ACTIONS(2257), 2, sym__automatic_semicolon, anon_sym_SEMI, - [96463] = 4, + [98170] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2315), 1, + ACTIONS(4038), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym_parenthesized_expression, + STATE(2360), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [96477] = 4, + [98186] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2316), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2361), 1, sym_comment, - ACTIONS(3773), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [96491] = 5, + STATE(2516), 1, + sym_formal_parameters, + [98202] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(4040), 1, anon_sym_LBRACE, - STATE(1542), 1, + STATE(1371), 1, sym_statement_block, - STATE(2317), 1, + STATE(2362), 1, sym_comment, - [96507] = 5, + [98218] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3566), 1, + ACTIONS(3578), 1, anon_sym_LBRACE, - STATE(1296), 1, + STATE(1372), 1, sym_class_body, - STATE(2318), 1, + STATE(2363), 1, sym_comment, - [96523] = 4, + [98234] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2319), 1, - sym_comment, - ACTIONS(4083), 2, - sym__automatic_semicolon, + ACTIONS(4136), 1, anon_sym_SEMI, - [96537] = 5, + ACTIONS(4138), 1, + sym__automatic_semicolon, + STATE(2364), 1, + sym_comment, + [98250] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(1543), 1, + STATE(1570), 1, sym_statement_block, - STATE(2320), 1, + STATE(2365), 1, sym_comment, - [96553] = 4, + [98266] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2321), 1, + ACTIONS(4076), 1, + anon_sym_LBRACE, + STATE(1580), 1, + sym_statement_block, + STATE(2366), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [96567] = 4, + [98282] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2322), 1, + STATE(2367), 1, sym_comment, - ACTIONS(4085), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [96581] = 5, + ACTIONS(1751), 2, + anon_sym_else, + anon_sym_while, + [98296] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4087), 1, + ACTIONS(4140), 1, anon_sym_LBRACE, - STATE(800), 1, + STATE(709), 1, sym_switch_body, - STATE(2323), 1, + STATE(2368), 1, sym_comment, - [96597] = 5, + [98312] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4009), 1, + ACTIONS(4080), 1, anon_sym_LPAREN, - STATE(107), 1, + STATE(108), 1, sym__for_header, - STATE(2324), 1, + STATE(2369), 1, sym_comment, - [96613] = 5, + [98328] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2325), 1, + ACTIONS(4106), 1, + anon_sym_LBRACE, + STATE(2071), 1, + sym_statement_block, + STATE(2370), 1, sym_comment, - STATE(2433), 1, - sym_formal_parameters, - [96629] = 5, + [98344] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, + ACTIONS(4142), 1, anon_sym_LBRACE, - STATE(1293), 1, + STATE(212), 1, sym_statement_block, - STATE(2326), 1, + STATE(2371), 1, sym_comment, - [96645] = 5, + [98360] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4089), 1, + ACTIONS(4144), 1, sym_identifier, - ACTIONS(4091), 1, + ACTIONS(4146), 1, anon_sym_STAR, - STATE(2327), 1, + STATE(2372), 1, sym_comment, - [96661] = 5, + [98376] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4005), 1, - anon_sym_LBRACE, - STATE(200), 1, - sym_statement_block, - STATE(2328), 1, + STATE(2373), 1, sym_comment, - [96677] = 5, + ACTIONS(4148), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98390] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4005), 1, + ACTIONS(3629), 1, anon_sym_LBRACE, - STATE(220), 1, - sym_statement_block, - STATE(2329), 1, + STATE(2102), 1, + sym_class_body, + STATE(2374), 1, sym_comment, - [96693] = 4, + [98406] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2330), 1, + STATE(2375), 1, sym_comment, - ACTIONS(4093), 2, + ACTIONS(4150), 2, sym__automatic_semicolon, anon_sym_SEMI, - [96707] = 4, + [98420] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2331), 1, + STATE(2376), 1, sym_comment, - ACTIONS(4095), 2, + ACTIONS(4152), 2, sym__automatic_semicolon, anon_sym_SEMI, - [96721] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1548), 1, - sym_statement_block, - STATE(2332), 1, - sym_comment, - [96737] = 4, + [98434] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2333), 1, + STATE(2377), 1, sym_comment, - ACTIONS(2267), 2, + ACTIONS(4154), 2, sym__automatic_semicolon, anon_sym_SEMI, - [96751] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3690), 1, - anon_sym_GT, - ACTIONS(3692), 1, - anon_sym_DOT, - STATE(2334), 1, - sym_comment, - [96767] = 4, + [98448] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2335), 1, + STATE(2378), 1, sym_comment, - ACTIONS(2269), 2, + ACTIONS(2274), 2, sym__automatic_semicolon, anon_sym_SEMI, - [96781] = 5, + [98462] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3469), 1, + ACTIONS(3468), 1, anon_sym_LBRACE, - STATE(215), 1, + STATE(1187), 1, sym_class_body, - STATE(2336), 1, + STATE(2379), 1, sym_comment, - [96797] = 5, + [98478] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2027), 1, - sym_statement_block, - STATE(2337), 1, + STATE(2380), 1, sym_comment, - [96813] = 4, + ACTIONS(2276), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98492] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2338), 1, + STATE(2381), 1, sym_comment, - ACTIONS(3764), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [96827] = 5, + ACTIONS(1745), 2, + anon_sym_else, + anon_sym_while, + [98506] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, - anon_sym_LBRACE, - STATE(1283), 1, - sym_statement_block, - STATE(2339), 1, + ACTIONS(3735), 1, + anon_sym_DOT, + ACTIONS(3796), 1, + anon_sym_GT, + STATE(2382), 1, sym_comment, - [96843] = 4, + [98522] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2340), 1, + ACTIONS(3731), 1, + anon_sym_COLON, + ACTIONS(3796), 1, + anon_sym_GT, + STATE(2383), 1, sym_comment, - ACTIONS(4097), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [96857] = 5, + [98538] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2341), 1, + STATE(2384), 1, sym_comment, - STATE(2437), 1, + STATE(2512), 1, sym_formal_parameters, - [96873] = 4, + [98554] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2342), 1, + STATE(2385), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1753), 2, anon_sym_else, anon_sym_while, - [96887] = 5, + [98568] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3409), 1, + ACTIONS(4156), 1, anon_sym_LBRACE, - STATE(1158), 1, - sym_class_body, - STATE(2343), 1, + STATE(468), 1, + sym_statement_block, + STATE(2386), 1, sym_comment, - [96903] = 4, + [98584] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2344), 1, + STATE(2387), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1755), 2, anon_sym_else, anon_sym_while, - [96917] = 4, + [98598] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2345), 1, + STATE(2388), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1757), 2, anon_sym_else, anon_sym_while, - [96931] = 5, + [98612] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4051), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(796), 1, - sym_statement_block, - STATE(2346), 1, + STATE(2389), 1, sym_comment, - [96947] = 5, + STATE(2511), 1, + sym_statement_block, + [98628] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4051), 1, - anon_sym_LBRACE, - STATE(797), 1, - sym_statement_block, - STATE(2347), 1, + ACTIONS(4158), 1, + anon_sym_SEMI, + ACTIONS(4160), 1, + sym__automatic_semicolon, + STATE(2390), 1, sym_comment, - [96963] = 5, + [98644] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3434), 1, - anon_sym_LBRACE, - STATE(798), 1, - sym_class_body, - STATE(2348), 1, + STATE(2391), 1, sym_comment, - [96979] = 4, + ACTIONS(4162), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98658] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2349), 1, + STATE(2392), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [96993] = 4, + ACTIONS(1661), 2, + anon_sym_else, + anon_sym_while, + [98672] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2350), 1, + STATE(2393), 1, sym_comment, - ACTIONS(4099), 2, + ACTIONS(3846), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [97007] = 5, + anon_sym_RPAREN, + [98686] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2351), 1, + STATE(2394), 1, sym_comment, - STATE(2438), 1, - sym_statement_block, - [97023] = 5, + ACTIONS(1663), 2, + anon_sym_else, + anon_sym_while, + [98700] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4101), 1, - anon_sym_SEMI, - ACTIONS(4103), 1, - sym__automatic_semicolon, - STATE(2352), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(1377), 1, + sym_statement_block, + STATE(2395), 1, sym_comment, - [97039] = 5, + [98716] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2353), 1, + ACTIONS(4054), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_statement_block, + STATE(2396), 1, sym_comment, - STATE(2443), 1, - sym_formal_parameters, - [97055] = 5, + [98732] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2354), 1, + ACTIONS(4164), 1, + anon_sym_SEMI, + ACTIONS(4166), 1, + sym__automatic_semicolon, + STATE(2397), 1, sym_comment, - STATE(2445), 1, - sym_statement_block, - [97071] = 5, + [98748] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2355), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2243), 1, + sym_statement_block, + STATE(2398), 1, sym_comment, - STATE(2447), 1, - sym_formal_parameters, - [97087] = 5, + [98764] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4105), 1, - anon_sym_SEMI, - ACTIONS(4107), 1, - sym__automatic_semicolon, - STATE(2356), 1, + ACTIONS(4054), 1, + anon_sym_LBRACE, + STATE(1171), 1, + sym_statement_block, + STATE(2399), 1, sym_comment, - [97103] = 5, + [98780] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4109), 1, - anon_sym_SEMI, - ACTIONS(4111), 1, - sym__automatic_semicolon, - STATE(2357), 1, + ACTIONS(3578), 1, + anon_sym_LBRACE, + STATE(1354), 1, + sym_class_body, + STATE(2400), 1, sym_comment, - [97119] = 5, + [98796] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4113), 1, + ACTIONS(4168), 1, anon_sym_SEMI, - ACTIONS(4115), 1, + ACTIONS(4170), 1, sym__automatic_semicolon, - STATE(2358), 1, + STATE(2401), 1, sym_comment, - [97135] = 5, + [98812] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2359), 1, + ACTIONS(4172), 1, + anon_sym_SEMI, + ACTIONS(4174), 1, + sym__automatic_semicolon, + STATE(2402), 1, sym_comment, - STATE(2448), 1, - sym_formal_parameters, - [97151] = 5, + [98828] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2360), 1, + STATE(2403), 1, sym_comment, - STATE(2452), 1, + STATE(2593), 1, sym_formal_parameters, - [97167] = 5, + [98844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2361), 1, + STATE(2404), 1, sym_comment, - STATE(2453), 1, - sym_statement_block, - [97183] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(4176), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98858] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2362), 1, - sym_comment, - STATE(2455), 1, - sym_formal_parameters, - [97199] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2363), 1, + STATE(2405), 1, sym_comment, - STATE(2463), 1, - sym_formal_parameters, - [97215] = 5, + ACTIONS(4178), 2, + sym_jsx_identifier, + sym_identifier, + [98872] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2364), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2406), 1, sym_comment, - STATE(2464), 1, - sym_formal_parameters, - [97231] = 5, + STATE(2639), 1, + sym_statement_block, + [98888] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(4112), 1, anon_sym_LPAREN, - STATE(2365), 1, + STATE(2407), 1, sym_comment, - STATE(2465), 1, - sym_formal_parameters, - [97247] = 5, + STATE(2640), 1, + sym_parenthesized_expression, + [98904] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4117), 1, - anon_sym_LPAREN, - STATE(701), 1, - sym_parenthesized_expression, - STATE(2366), 1, + STATE(2408), 1, sym_comment, - [97263] = 5, + ACTIONS(4180), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [98918] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym_statement_block, - STATE(2367), 1, + STATE(2409), 1, sym_comment, - [97279] = 5, + ACTIONS(1667), 2, + anon_sym_else, + anon_sym_while, + [98932] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4119), 1, + ACTIONS(3468), 1, anon_sym_LBRACE, - STATE(699), 1, - sym_statement_block, - STATE(2368), 1, + STATE(1141), 1, + sym_class_body, + STATE(2410), 1, sym_comment, - [97295] = 5, + [98948] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2369), 1, + STATE(2411), 1, sym_comment, - STATE(2466), 1, - sym_statement_block, - [97311] = 5, + ACTIONS(4182), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [98962] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - STATE(2370), 1, + STATE(884), 1, + sym_parenthesized_expression, + STATE(2412), 1, sym_comment, - STATE(2467), 1, - sym_formal_parameters, - [97327] = 4, + [98978] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2371), 1, + ACTIONS(4054), 1, + anon_sym_LBRACE, + STATE(1135), 1, + sym_statement_block, + STATE(2413), 1, sym_comment, - ACTIONS(4121), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [97341] = 5, + [98994] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2372), 1, + ACTIONS(4186), 1, + anon_sym_LBRACE, + STATE(885), 1, + sym_statement_block, + STATE(2414), 1, sym_comment, - STATE(2480), 1, - sym_formal_parameters, - [97357] = 5, + [99010] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2373), 1, + STATE(2415), 1, sym_comment, - STATE(2483), 1, + STATE(2419), 1, sym_formal_parameters, - [97373] = 5, + [99026] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3506), 1, - anon_sym_LBRACE, - STATE(180), 1, - sym_class_body, - STATE(2374), 1, + STATE(2416), 1, sym_comment, - [97389] = 5, + ACTIONS(4188), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [99040] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, + ACTIONS(4076), 1, anon_sym_LBRACE, - STATE(179), 1, + STATE(1557), 1, sym_statement_block, - STATE(2375), 1, + STATE(2417), 1, sym_comment, - [97405] = 5, + [99056] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2376), 1, + ACTIONS(4190), 1, + anon_sym_SEMI, + ACTIONS(4192), 1, + sym__automatic_semicolon, + STATE(2418), 1, sym_comment, - STATE(2484), 1, - sym_statement_block, - [97421] = 5, + [99072] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(4054), 1, anon_sym_LBRACE, - STATE(1563), 1, + STATE(1145), 1, sym_statement_block, - STATE(2377), 1, + STATE(2419), 1, sym_comment, - [97437] = 5, + [99088] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(3679), 1, anon_sym_LBRACE, - STATE(1565), 1, - sym_statement_block, - STATE(2378), 1, + STATE(175), 1, + sym_class_body, + STATE(2420), 1, sym_comment, - [97453] = 5, + [99104] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, + ACTIONS(4194), 1, anon_sym_LBRACE, - STATE(2155), 1, + STATE(172), 1, sym_statement_block, - STATE(2379), 1, - sym_comment, - [97469] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3688), 1, - anon_sym_COLON, - ACTIONS(3755), 1, - anon_sym_GT, - STATE(2380), 1, + STATE(2421), 1, sym_comment, - [97485] = 5, + [99120] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(4054), 1, anon_sym_LBRACE, - STATE(1560), 1, + STATE(1146), 1, sym_statement_block, - STATE(2381), 1, + STATE(2422), 1, sym_comment, - [97501] = 5, + [99136] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3692), 1, - anon_sym_DOT, - ACTIONS(3755), 1, - anon_sym_GT, - STATE(2382), 1, + ACTIONS(4196), 1, + anon_sym_SEMI, + ACTIONS(4198), 1, + sym__automatic_semicolon, + STATE(2423), 1, sym_comment, - [97517] = 4, + [99152] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2383), 1, + STATE(2424), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1759), 2, anon_sym_else, anon_sym_while, - [97531] = 5, + [99166] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2384), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2218), 1, + sym_formal_parameters, + STATE(2425), 1, sym_comment, - STATE(2489), 1, - sym_statement_block, - [97547] = 4, + [99182] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2385), 1, + ACTIONS(3731), 1, + anon_sym_COLON, + ACTIONS(3733), 1, + anon_sym_GT, + STATE(2426), 1, sym_comment, - ACTIONS(4125), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [97561] = 5, + [99198] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(644), 1, - sym_class_body, - STATE(2386), 1, + ACTIONS(4200), 1, + anon_sym_SEMI, + ACTIONS(4202), 1, + sym__automatic_semicolon, + STATE(2427), 1, sym_comment, - [97577] = 5, + [99214] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4127), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_statement_block, - STATE(2387), 1, + ACTIONS(3733), 1, + anon_sym_GT, + ACTIONS(3735), 1, + anon_sym_DOT, + STATE(2428), 1, sym_comment, - [97593] = 4, + [99230] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2388), 1, + STATE(2429), 1, sym_comment, - ACTIONS(4129), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [97607] = 5, + ACTIONS(1669), 2, + anon_sym_else, + anon_sym_while, + [99244] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4131), 1, + ACTIONS(3318), 1, sym_identifier, - ACTIONS(4133), 1, - anon_sym_STAR, - STATE(2389), 1, + ACTIONS(3324), 1, + sym_private_property_identifier, + STATE(2430), 1, sym_comment, - [97623] = 4, + [99260] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(2390), 1, + ACTIONS(4204), 1, + sym_identifier, + ACTIONS(4206), 1, + sym_private_property_identifier, + STATE(2431), 1, sym_comment, - ACTIONS(3751), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [97637] = 5, + [99276] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, + ACTIONS(3675), 1, anon_sym_LBRACE, - STATE(175), 1, - sym_statement_block, - STATE(2391), 1, + STATE(528), 1, + sym_class_body, + STATE(2432), 1, sym_comment, - [97653] = 5, + [99292] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, + ACTIONS(4208), 1, anon_sym_LBRACE, - STATE(172), 1, + STATE(529), 1, sym_statement_block, - STATE(2392), 1, + STATE(2433), 1, sym_comment, - [97669] = 5, + [99308] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1552), 1, - sym_statement_block, - STATE(2393), 1, + STATE(2434), 1, sym_comment, - [97685] = 5, + ACTIONS(1671), 2, + anon_sym_else, + anon_sym_while, + [99322] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1556), 1, - sym_statement_block, - STATE(2394), 1, + ACTIONS(4210), 1, + anon_sym_SEMI, + ACTIONS(4212), 1, + sym__automatic_semicolon, + STATE(2435), 1, sym_comment, - [97701] = 5, + [99338] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3506), 1, - anon_sym_LBRACE, - STATE(171), 1, - sym_class_body, - STATE(2395), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2413), 1, + sym_formal_parameters, + STATE(2436), 1, sym_comment, - [97717] = 5, + [99354] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4127), 1, + ACTIONS(4054), 1, anon_sym_LBRACE, - STATE(662), 1, + STATE(1189), 1, sym_statement_block, - STATE(2396), 1, + STATE(2437), 1, sym_comment, - [97733] = 5, + [99370] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4127), 1, + ACTIONS(4194), 1, anon_sym_LBRACE, - STATE(667), 1, + STATE(176), 1, sym_statement_block, - STATE(2397), 1, + STATE(2438), 1, sym_comment, - [97749] = 5, + [99386] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3510), 1, + ACTIONS(4194), 1, anon_sym_LBRACE, - STATE(666), 1, - sym_class_body, - STATE(2398), 1, + STATE(177), 1, + sym_statement_block, + STATE(2439), 1, sym_comment, - [97765] = 4, + [99402] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2399), 1, + STATE(2440), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1673), 2, anon_sym_else, anon_sym_while, - [97779] = 4, + [99416] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2400), 1, + STATE(2441), 1, sym_comment, - ACTIONS(4135), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [97793] = 5, + ACTIONS(3147), 2, + anon_sym_in, + anon_sym_of, + [99430] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, + ACTIONS(3679), 1, anon_sym_LBRACE, - STATE(192), 1, - sym_statement_block, - STATE(2401), 1, + STATE(178), 1, + sym_class_body, + STATE(2442), 1, sym_comment, - [97809] = 5, + [99446] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4127), 1, + ACTIONS(4208), 1, anon_sym_LBRACE, - STATE(659), 1, + STATE(533), 1, sym_statement_block, - STATE(2402), 1, + STATE(2443), 1, sym_comment, - [97825] = 5, + [99462] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3757), 1, + ACTIONS(4208), 1, anon_sym_LBRACE, - STATE(657), 1, + STATE(534), 1, sym_statement_block, - STATE(2403), 1, + STATE(2444), 1, sym_comment, - [97841] = 5, + [99478] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(3675), 1, anon_sym_LBRACE, - STATE(1555), 1, - sym_statement_block, - STATE(2404), 1, + STATE(535), 1, + sym_class_body, + STATE(2445), 1, sym_comment, - [97857] = 4, + [99494] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2405), 1, + STATE(2446), 1, sym_comment, - ACTIONS(1741), 2, + ACTIONS(1675), 2, anon_sym_else, anon_sym_while, - [97871] = 5, + [99508] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, - anon_sym_LPAREN, - STATE(97), 1, - sym_parenthesized_expression, - STATE(2406), 1, + STATE(2447), 1, sym_comment, - [97887] = 5, + ACTIONS(1675), 2, + anon_sym_else, + anon_sym_while, + [99522] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(4194), 1, anon_sym_LBRACE, - STATE(1544), 1, + STATE(188), 1, sym_statement_block, - STATE(2407), 1, + STATE(2448), 1, sym_comment, - [97903] = 5, + [99538] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(4208), 1, anon_sym_LBRACE, - STATE(1541), 1, + STATE(536), 1, sym_statement_block, - STATE(2408), 1, + STATE(2449), 1, sym_comment, - [97919] = 5, + [99554] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, - anon_sym_LPAREN, - STATE(76), 1, - sym_parenthesized_expression, - STATE(2409), 1, + ACTIONS(3765), 1, + anon_sym_LBRACE, + STATE(537), 1, + sym_statement_block, + STATE(2450), 1, sym_comment, - [97935] = 5, + [99570] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4137), 1, - anon_sym_LBRACE, - STATE(456), 1, - sym_statement_block, - STATE(2410), 1, + STATE(2451), 1, + sym_comment, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [99584] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4214), 1, + sym_identifier, + ACTIONS(4216), 1, + anon_sym_STAR, + STATE(2452), 1, sym_comment, - [97951] = 5, + [99600] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, + ACTIONS(4038), 1, anon_sym_LPAREN, - STATE(79), 1, + STATE(95), 1, sym_parenthesized_expression, - STATE(2411), 1, + STATE(2453), 1, sym_comment, - [97967] = 5, + [99616] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(3468), 1, anon_sym_LBRACE, - STATE(1550), 1, - sym_statement_block, - STATE(2412), 1, + STATE(1152), 1, + sym_class_body, + STATE(2454), 1, sym_comment, - [97983] = 5, + [99632] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(3468), 1, anon_sym_LBRACE, - STATE(1545), 1, - sym_statement_block, - STATE(2413), 1, + STATE(1130), 1, + sym_class_body, + STATE(2455), 1, sym_comment, - [97999] = 4, + [99648] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2414), 1, + STATE(2456), 1, sym_comment, - ACTIONS(4139), 2, + ACTIONS(2255), 2, sym__automatic_semicolon, anon_sym_SEMI, - [98013] = 5, + [99662] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym_statement_block, - STATE(2415), 1, + ACTIONS(4038), 1, + anon_sym_LPAREN, + STATE(103), 1, + sym_parenthesized_expression, + STATE(2457), 1, sym_comment, - [98029] = 5, + [99678] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2416), 1, + ACTIONS(4218), 1, + anon_sym_LBRACE, + STATE(446), 1, + sym_statement_block, + STATE(2458), 1, sym_comment, - STATE(2497), 1, - sym_formal_parameters, - [98045] = 4, + [99694] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2417), 1, + STATE(2459), 1, sym_comment, - ACTIONS(3114), 2, - anon_sym_in, - anon_sym_of, - [98059] = 5, + ACTIONS(2286), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [99708] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2418), 1, + STATE(2460), 1, sym_comment, - STATE(2501), 1, - sym_formal_parameters, - [98075] = 5, + ACTIONS(1749), 2, + anon_sym_else, + anon_sym_while, + [99722] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4023), 1, - anon_sym_LBRACE, - STATE(1106), 1, - sym_statement_block, - STATE(2419), 1, + STATE(2461), 1, sym_comment, - [98091] = 5, + ACTIONS(4220), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [99736] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4023), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_statement_block, - STATE(2420), 1, + STATE(2462), 1, sym_comment, - [98107] = 4, + ACTIONS(1679), 2, + anon_sym_else, + anon_sym_while, + [99750] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2421), 1, + STATE(2463), 1, sym_comment, - ACTIONS(2261), 2, + ACTIONS(4222), 2, sym__automatic_semicolon, anon_sym_SEMI, - [98121] = 5, + [99764] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2422), 1, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(221), 1, + sym_statement_block, + STATE(2464), 1, sym_comment, - STATE(2496), 1, - sym_formal_parameters, - [98137] = 5, + [99780] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2423), 1, + STATE(2465), 1, sym_comment, - STATE(2492), 1, - sym_formal_parameters, - [98153] = 5, + ACTIONS(4224), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [99794] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4226), 1, + anon_sym_SEMI, + ACTIONS(4228), 1, + sym__automatic_semicolon, + STATE(2466), 1, + sym_comment, + [99810] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3409), 1, + ACTIONS(4040), 1, anon_sym_LBRACE, - STATE(1108), 1, - sym_class_body, - STATE(2424), 1, + STATE(1329), 1, + sym_statement_block, + STATE(2467), 1, sym_comment, - [98169] = 5, + [99826] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2425), 1, + STATE(2468), 1, sym_comment, - STATE(2491), 1, + STATE(2689), 1, sym_formal_parameters, - [98185] = 5, + [99842] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2426), 1, + STATE(2469), 1, sym_comment, - STATE(2487), 1, - sym_formal_parameters, - [98201] = 4, + ACTIONS(1747), 2, + anon_sym_else, + anon_sym_while, + [99856] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2427), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(1295), 1, + sym_statement_block, + STATE(2470), 1, sym_comment, - ACTIONS(2271), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [98215] = 5, + [99872] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2428), 1, + STATE(2471), 1, sym_comment, - STATE(2486), 1, + STATE(2690), 1, sym_formal_parameters, - [98231] = 4, + [99888] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2429), 1, + STATE(2472), 1, sym_comment, - ACTIONS(2273), 2, + ACTIONS(2278), 2, sym__automatic_semicolon, anon_sym_SEMI, - [98245] = 4, + [99902] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2430), 1, + ACTIONS(3654), 1, + anon_sym_LBRACE, + STATE(210), 1, + sym_class_body, + STATE(2473), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [98259] = 4, + [99918] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - STATE(2431), 1, + ACTIONS(4230), 1, + sym_identifier, + ACTIONS(4232), 1, + anon_sym_STAR, + STATE(2474), 1, sym_comment, - ACTIONS(4143), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [98273] = 4, + [99934] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2432), 1, + ACTIONS(4080), 1, + anon_sym_LPAREN, + STATE(89), 1, + sym__for_header, + STATE(2475), 1, sym_comment, - ACTIONS(4145), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [98287] = 5, + [99950] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4005), 1, - anon_sym_LBRACE, - STATE(216), 1, - sym_statement_block, - STATE(2433), 1, + STATE(2476), 1, sym_comment, - [98303] = 5, + ACTIONS(4234), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [99964] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(4236), 1, anon_sym_LBRACE, - STATE(1571), 1, - sym_statement_block, - STATE(2434), 1, + STATE(2477), 1, sym_comment, - [98319] = 5, + STATE(2501), 1, + sym_switch_body, + [99980] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(630), 1, - sym_switch_body, - STATE(2435), 1, + STATE(2478), 1, sym_comment, - [98335] = 5, + ACTIONS(1743), 2, + anon_sym_else, + anon_sym_while, + [99994] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4009), 1, - anon_sym_LPAREN, - STATE(81), 1, - sym__for_header, - STATE(2436), 1, + STATE(2479), 1, sym_comment, - [98351] = 5, + ACTIONS(1741), 2, + anon_sym_else, + anon_sym_while, + [100008] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4051), 1, + ACTIONS(4238), 1, anon_sym_LBRACE, - STATE(847), 1, - sym_statement_block, - STATE(2437), 1, + STATE(558), 1, + sym_switch_body, + STATE(2480), 1, sym_comment, - [98367] = 4, + [100024] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2438), 1, - sym_comment, - ACTIONS(4149), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [98381] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2439), 1, + ACTIONS(4080), 1, + anon_sym_LPAREN, + STATE(107), 1, + sym__for_header, + STATE(2481), 1, sym_comment, - ACTIONS(4151), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [98395] = 4, + [100040] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2440), 1, + STATE(2482), 1, sym_comment, - ACTIONS(4153), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [98409] = 4, + ACTIONS(1681), 2, + anon_sym_else, + anon_sym_while, + [100054] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2441), 1, + STATE(2483), 1, sym_comment, - ACTIONS(4155), 2, + ACTIONS(856), 2, sym__automatic_semicolon, anon_sym_SEMI, - [98423] = 4, + [100068] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2442), 1, + STATE(2484), 1, sym_comment, - ACTIONS(4157), 2, + ACTIONS(4240), 2, sym__automatic_semicolon, anon_sym_SEMI, - [98437] = 5, + [100082] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2443), 1, + ACTIONS(4038), 1, + anon_sym_LPAREN, + STATE(94), 1, + sym_parenthesized_expression, + STATE(2485), 1, sym_comment, - STATE(2506), 1, - sym_statement_block, - [98453] = 4, + [100098] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2444), 1, + STATE(2486), 1, sym_comment, - ACTIONS(2275), 2, + ACTIONS(4242), 2, sym__automatic_semicolon, anon_sym_SEMI, - [98467] = 4, + [100112] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2445), 1, + STATE(2487), 1, sym_comment, - ACTIONS(3933), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [98481] = 4, + ACTIONS(4244), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [100126] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2446), 1, + STATE(2488), 1, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2272), 2, sym__automatic_semicolon, anon_sym_SEMI, - [98495] = 5, + [100140] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2447), 1, + STATE(2489), 1, sym_comment, - STATE(2507), 1, - sym_statement_block, - [98511] = 5, + ACTIONS(2290), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [100154] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2448), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2389), 1, + sym_formal_parameters, + STATE(2490), 1, sym_comment, - STATE(2510), 1, - sym_statement_block, - [98527] = 5, + [100170] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2449), 1, + STATE(2491), 1, sym_comment, - STATE(2482), 1, - sym_formal_parameters, - [98543] = 4, + ACTIONS(2292), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [100184] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2450), 1, + STATE(2492), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1739), 2, anon_sym_else, anon_sym_while, - [98557] = 4, + [100198] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2451), 1, + STATE(2493), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1737), 2, anon_sym_else, anon_sym_while, - [98571] = 5, + [100212] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2452), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2494), 1, sym_comment, - STATE(2511), 1, - sym_statement_block, - [98587] = 4, + STATE(2542), 1, + sym_formal_parameters, + [100228] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2453), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2495), 1, sym_comment, - ACTIONS(3933), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [98601] = 4, + STATE(2541), 1, + sym_formal_parameters, + [100244] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2454), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2496), 1, sym_comment, - ACTIONS(4159), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [98615] = 5, + STATE(2537), 1, + sym_formal_parameters, + [100260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2455), 1, + STATE(2497), 1, sym_comment, - STATE(2512), 1, - sym_statement_block, - [98631] = 5, + ACTIONS(3875), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [100274] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4161), 1, - anon_sym_SEMI, - ACTIONS(4163), 1, - sym__automatic_semicolon, - STATE(2456), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2498), 1, sym_comment, - [98647] = 5, + STATE(2536), 1, + sym_formal_parameters, + [100290] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2457), 1, + ACTIONS(4246), 1, + anon_sym_SEMI, + ACTIONS(4248), 1, + sym__automatic_semicolon, + STATE(2499), 1, sym_comment, - STATE(2513), 1, - sym_formal_parameters, - [98663] = 5, + [100306] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2458), 1, + STATE(2500), 1, sym_comment, - STATE(2514), 1, + STATE(2532), 1, sym_formal_parameters, - [98679] = 5, + [100322] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4165), 1, - anon_sym_SEMI, - ACTIONS(4167), 1, - sym__automatic_semicolon, - STATE(2459), 1, + STATE(2501), 1, sym_comment, - [98695] = 5, + ACTIONS(1733), 2, + anon_sym_else, + anon_sym_while, + [100336] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4169), 1, + ACTIONS(4250), 1, anon_sym_SEMI, - ACTIONS(4171), 1, + ACTIONS(4252), 1, sym__automatic_semicolon, - STATE(2460), 1, + STATE(2502), 1, sym_comment, - [98711] = 5, + [100352] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4173), 1, + ACTIONS(4254), 1, anon_sym_SEMI, - ACTIONS(4175), 1, + ACTIONS(4256), 1, sym__automatic_semicolon, - STATE(2461), 1, + STATE(2503), 1, sym_comment, - [98727] = 5, + [100368] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2462), 1, + STATE(2504), 1, sym_comment, - STATE(2515), 1, + STATE(2531), 1, sym_formal_parameters, - [98743] = 5, + [100384] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2463), 1, + STATE(2505), 1, sym_comment, - STATE(2516), 1, - sym_statement_block, - [98759] = 5, + ACTIONS(4258), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [100398] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2464), 1, + STATE(2506), 1, sym_comment, - STATE(2517), 1, - sym_statement_block, - [98775] = 5, + ACTIONS(4260), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [100412] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(2465), 1, - sym_comment, - STATE(2519), 1, + STATE(1811), 1, sym_statement_block, - [98791] = 4, + STATE(2507), 1, + sym_comment, + [100428] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2466), 1, + ACTIONS(4038), 1, + anon_sym_LPAREN, + STATE(88), 1, + sym_parenthesized_expression, + STATE(2508), 1, + sym_comment, + [100444] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2509), 1, + sym_comment, + ACTIONS(1683), 2, + anon_sym_else, + anon_sym_while, + [100458] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2510), 1, sym_comment, - ACTIONS(3933), 2, + ACTIONS(4262), 2, anon_sym_COMMA, anon_sym_RBRACE, - [98805] = 5, + [100472] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2467), 1, + STATE(2511), 1, sym_comment, - STATE(2520), 1, - sym_statement_block, - [98821] = 5, + ACTIONS(4264), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [100486] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2468), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2255), 1, + sym_statement_block, + STATE(2512), 1, sym_comment, - STATE(2521), 1, - sym_formal_parameters, - [98837] = 5, + [100502] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4177), 1, + ACTIONS(4266), 1, anon_sym_LPAREN, - STATE(587), 1, + STATE(623), 1, sym_parenthesized_expression, - STATE(2469), 1, + STATE(2513), 1, sym_comment, - [98853] = 5, + [100518] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, - anon_sym_LBRACE, - STATE(1356), 1, - sym_statement_block, - STATE(2470), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2226), 1, + sym_formal_parameters, + STATE(2514), 1, sym_comment, - [98869] = 5, + [100534] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4179), 1, + ACTIONS(4268), 1, anon_sym_LBRACE, - STATE(603), 1, + STATE(624), 1, sym_statement_block, - STATE(2471), 1, + STATE(2515), 1, sym_comment, - [98885] = 5, + [100550] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2472), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2257), 1, + sym_statement_block, + STATE(2516), 1, sym_comment, - STATE(2522), 1, - sym_formal_parameters, - [98901] = 5, + [100566] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3536), 1, + ACTIONS(3504), 1, anon_sym_LBRACE, - STATE(150), 1, + STATE(165), 1, sym_class_body, - STATE(2473), 1, + STATE(2517), 1, sym_comment, - [98917] = 5, + [100582] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4181), 1, + ACTIONS(4270), 1, anon_sym_LBRACE, - STATE(151), 1, + STATE(164), 1, sym_statement_block, - STATE(2474), 1, + STATE(2518), 1, sym_comment, - [98933] = 5, + [100598] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(4038), 1, anon_sym_LPAREN, - STATE(2475), 1, + STATE(84), 1, + sym_parenthesized_expression, + STATE(2519), 1, sym_comment, - STATE(2524), 1, - sym_formal_parameters, - [98949] = 5, + [100614] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3566), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_class_body, - STATE(2476), 1, + STATE(2520), 1, sym_comment, - [98965] = 5, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [100628] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, - anon_sym_LBRACE, - STATE(1367), 1, - sym_statement_block, - STATE(2477), 1, + STATE(2521), 1, sym_comment, - [98981] = 5, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [100642] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2478), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2271), 1, + sym_formal_parameters, + STATE(2522), 1, sym_comment, - STATE(2525), 1, - sym_statement_block, - [98997] = 4, + [100658] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2479), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2276), 1, + sym_formal_parameters, + STATE(2523), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [99011] = 5, + [100674] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2480), 1, + ACTIONS(4272), 1, + anon_sym_SEMI, + ACTIONS(4274), 1, + sym__automatic_semicolon, + STATE(2524), 1, sym_comment, - STATE(2526), 1, - sym_statement_block, - [99027] = 5, + [100690] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3540), 1, - anon_sym_LBRACE, - STATE(504), 1, - sym_class_body, - STATE(2481), 1, + STATE(2525), 1, sym_comment, - [99043] = 5, + ACTIONS(4276), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [100704] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4183), 1, + ACTIONS(4278), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(495), 1, sym_statement_block, - STATE(2482), 1, + STATE(2526), 1, sym_comment, - [99059] = 5, + [100720] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2483), 1, - sym_comment, STATE(2527), 1, - sym_statement_block, - [99075] = 4, + sym_comment, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [100734] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2484), 1, + ACTIONS(4280), 1, + anon_sym_SEMI, + ACTIONS(4282), 1, + sym__automatic_semicolon, + STATE(2528), 1, sym_comment, - ACTIONS(3933), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99089] = 4, + [100750] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2485), 1, - sym_comment, - ACTIONS(4185), 2, - sym__automatic_semicolon, + ACTIONS(4284), 1, anon_sym_SEMI, - [99103] = 5, + ACTIONS(4286), 1, + sym__automatic_semicolon, + STATE(2529), 1, + sym_comment, + [100766] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4181), 1, - anon_sym_LBRACE, - STATE(167), 1, - sym_statement_block, - STATE(2486), 1, + ACTIONS(4080), 1, + anon_sym_LPAREN, + STATE(87), 1, + sym__for_header, + STATE(2530), 1, sym_comment, - [99119] = 5, + [100782] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4181), 1, + ACTIONS(4270), 1, anon_sym_LBRACE, - STATE(163), 1, + STATE(162), 1, sym_statement_block, - STATE(2487), 1, + STATE(2531), 1, sym_comment, - [99135] = 5, + [100798] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, + ACTIONS(4270), 1, anon_sym_LBRACE, - STATE(1366), 1, + STATE(161), 1, sym_statement_block, - STATE(2488), 1, + STATE(2532), 1, sym_comment, - [99151] = 4, + [100814] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2489), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2526), 1, + sym_formal_parameters, + STATE(2533), 1, sym_comment, - ACTIONS(3933), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99165] = 5, + [100830] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3536), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2277), 1, + sym_formal_parameters, + STATE(2534), 1, + sym_comment, + [100846] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3504), 1, anon_sym_LBRACE, - STATE(162), 1, + STATE(160), 1, sym_class_body, - STATE(2490), 1, + STATE(2535), 1, sym_comment, - [99181] = 5, + [100862] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4183), 1, + ACTIONS(4278), 1, anon_sym_LBRACE, - STATE(491), 1, + STATE(493), 1, sym_statement_block, - STATE(2491), 1, + STATE(2536), 1, sym_comment, - [99197] = 5, + [100878] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4183), 1, + ACTIONS(4278), 1, anon_sym_LBRACE, STATE(490), 1, sym_statement_block, - STATE(2492), 1, + STATE(2537), 1, sym_comment, - [99213] = 5, + [100894] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3540), 1, + ACTIONS(3502), 1, anon_sym_LBRACE, STATE(489), 1, sym_class_body, - STATE(2493), 1, + STATE(2538), 1, sym_comment, - [99229] = 5, + [100910] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2474), 1, - sym_formal_parameters, - STATE(2494), 1, + STATE(2539), 1, sym_comment, - [99245] = 4, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [100924] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2495), 1, + STATE(2540), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1685), 2, anon_sym_else, anon_sym_while, - [99259] = 5, + [100938] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4181), 1, + ACTIONS(4270), 1, anon_sym_LBRACE, - STATE(161), 1, + STATE(159), 1, sym_statement_block, - STATE(2496), 1, + STATE(2541), 1, sym_comment, - [99275] = 5, + [100954] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4183), 1, + ACTIONS(4278), 1, anon_sym_LBRACE, - STATE(500), 1, + STATE(488), 1, sym_statement_block, - STATE(2497), 1, + STATE(2542), 1, sym_comment, - [99291] = 5, + [100970] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3726), 1, + ACTIONS(3913), 1, anon_sym_LBRACE, - STATE(483), 1, + STATE(486), 1, sym_statement_block, - STATE(2498), 1, + STATE(2543), 1, sym_comment, - [99307] = 5, + [100986] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - STATE(2461), 1, - sym__from_clause, - STATE(2499), 1, + ACTIONS(4288), 1, + anon_sym_LBRACE, + STATE(990), 1, + sym_switch_body, + STATE(2544), 1, sym_comment, - [99323] = 5, + [101002] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3372), 1, - anon_sym_in, - ACTIONS(3374), 1, - anon_sym_of, - STATE(2500), 1, + STATE(2545), 1, sym_comment, - [99339] = 5, + ACTIONS(1685), 2, + anon_sym_else, + anon_sym_while, + [101016] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4023), 1, - anon_sym_LBRACE, - STATE(1085), 1, - sym_statement_block, - STATE(2501), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2227), 1, + sym_formal_parameters, + STATE(2546), 1, sym_comment, - [99355] = 4, + [101032] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2502), 1, + STATE(2547), 1, sym_comment, - ACTIONS(2283), 2, + ACTIONS(2267), 2, sym__automatic_semicolon, anon_sym_SEMI, - [99369] = 5, + [101046] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - STATE(2459), 1, - sym__from_clause, - STATE(2503), 1, + STATE(2548), 1, sym_comment, - [99385] = 5, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [101060] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3640), 1, - anon_sym_LBRACE, - STATE(874), 1, - sym_statement_block, - STATE(2504), 1, + STATE(2549), 1, sym_comment, - [99401] = 4, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [101074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2505), 1, + STATE(2550), 1, sym_comment, - ACTIONS(4187), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [99415] = 4, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [101088] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2506), 1, + STATE(2551), 1, sym_comment, - ACTIONS(4189), 2, + ACTIONS(3990), 2, anon_sym_COMMA, anon_sym_RBRACE, - [99429] = 4, + [101102] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2507), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2299), 1, + sym_formal_parameters, + STATE(2552), 1, sym_comment, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99443] = 5, + [101118] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2553), 1, + sym_comment, + ACTIONS(4290), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [101132] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3588), 1, - anon_sym_LBRACE, - STATE(2040), 1, - sym_class_body, - STATE(2508), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2518), 1, + sym_formal_parameters, + STATE(2554), 1, sym_comment, - [99459] = 4, + [101148] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2509), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2303), 1, + sym_statement_block, + STATE(2555), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_else, - anon_sym_while, - [99473] = 4, + [101164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2510), 1, + STATE(2556), 1, sym_comment, - ACTIONS(4191), 2, + ACTIONS(3979), 2, anon_sym_COMMA, anon_sym_RBRACE, - [99487] = 4, + [101178] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2511), 1, + STATE(2557), 1, sym_comment, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99501] = 4, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [101192] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2512), 1, + STATE(2558), 1, sym_comment, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99515] = 5, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [101206] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2513), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2306), 1, + sym_formal_parameters, + STATE(2559), 1, sym_comment, - STATE(2531), 1, - sym_statement_block, - [99531] = 5, + [101222] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2430), 1, - sym_statement_block, - STATE(2514), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2311), 1, + sym_formal_parameters, + STATE(2560), 1, sym_comment, - [99547] = 5, + [101238] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2515), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2322), 1, + sym_formal_parameters, + STATE(2561), 1, sym_comment, - STATE(2534), 1, - sym_statement_block, - [99563] = 4, + [101254] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2516), 1, + STATE(2562), 1, sym_comment, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99577] = 4, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [101268] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2517), 1, + ACTIONS(2785), 1, + anon_sym_LPAREN, + ACTIONS(4292), 1, + anon_sym_EQ_GT, + STATE(2563), 1, sym_comment, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99591] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [101284] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4193), 1, - sym_identifier, - ACTIONS(4195), 1, - sym_private_property_identifier, - STATE(2518), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2785), 1, + anon_sym_LPAREN, + ACTIONS(4294), 1, + anon_sym_EQ_GT, + STATE(2564), 1, sym_comment, - [99607] = 4, + [101300] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2519), 1, + STATE(2565), 1, sym_comment, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99621] = 4, + ACTIONS(4296), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [101314] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2520), 1, + STATE(2566), 1, sym_comment, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99635] = 5, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [101328] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2521), 1, + aux_sym_comment_token1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2334), 1, + sym_formal_parameters, + STATE(2567), 1, sym_comment, - STATE(2535), 1, - sym_statement_block, - [99651] = 5, + [101344] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, - anon_sym_LBRACE, - STATE(2522), 1, + ACTIONS(3560), 1, + anon_sym_from, + STATE(1929), 1, + sym__from_clause, + STATE(2568), 1, sym_comment, - STATE(2537), 1, - sym_statement_block, - [99667] = 4, + [101360] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2523), 1, + ACTIONS(3560), 1, + anon_sym_from, + STATE(2006), 1, + sym__from_clause, + STATE(2569), 1, sym_comment, - ACTIONS(1709), 2, - anon_sym_else, - anon_sym_while, - [99681] = 5, + [101376] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3660), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(2524), 1, - sym_comment, - STATE(2538), 1, + STATE(2336), 1, sym_statement_block, - [99697] = 4, + STATE(2570), 1, + sym_comment, + [101392] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2525), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2338), 1, + sym_formal_parameters, + STATE(2571), 1, sym_comment, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99711] = 4, + [101408] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2526), 1, - sym_comment, - ACTIONS(4191), 2, + ACTIONS(4298), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [99725] = 4, + ACTIONS(4300), 1, + anon_sym_from, + STATE(2572), 1, + sym_comment, + [101424] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2527), 1, + STATE(2573), 1, sym_comment, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99739] = 4, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [101438] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2528), 1, + ACTIONS(3560), 1, + anon_sym_from, + STATE(2502), 1, + sym__from_clause, + STATE(2574), 1, sym_comment, - ACTIONS(4197), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [99753] = 4, + [101454] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2529), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2575), 1, sym_comment, - ACTIONS(1707), 2, - anon_sym_else, - anon_sym_while, - [99767] = 5, + [101470] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3973), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2435), 1, - sym_parenthesized_expression, - STATE(2530), 1, + STATE(2347), 1, + sym_formal_parameters, + STATE(2576), 1, sym_comment, - [99783] = 4, + [101486] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2531), 1, + STATE(2577), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99797] = 4, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [101500] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2532), 1, + STATE(2578), 1, sym_comment, - ACTIONS(1661), 2, + ACTIONS(1651), 2, anon_sym_else, anon_sym_while, - [99811] = 5, + [101514] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4009), 1, - anon_sym_LPAREN, - STATE(114), 1, - sym__for_header, - STATE(2533), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2351), 1, + sym_statement_block, + STATE(2579), 1, sym_comment, - [99827] = 4, + [101530] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2534), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2352), 1, + sym_formal_parameters, + STATE(2580), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99841] = 4, + [101546] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2535), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(2354), 1, + sym_statement_block, + STATE(2581), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99855] = 5, + [101562] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(889), 1, - sym_switch_body, - STATE(2536), 1, + STATE(2582), 1, sym_comment, - [99871] = 4, + ACTIONS(2413), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [101576] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2537), 1, + STATE(2583), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(4302), 2, anon_sym_COMMA, anon_sym_RBRACE, - [99885] = 4, + [101590] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2538), 1, + STATE(2584), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [99899] = 4, + ACTIONS(2470), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [101604] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2539), 1, + STATE(2585), 1, sym_comment, ACTIONS(1651), 2, anon_sym_else, anon_sym_while, - [99913] = 4, + [101618] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2540), 1, + STATE(2586), 1, sym_comment, - ACTIONS(1649), 2, + ACTIONS(1651), 2, anon_sym_else, anon_sym_while, - [99927] = 4, + [101632] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2541), 1, - sym_comment, - ACTIONS(4201), 2, + ACTIONS(3448), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [99941] = 5, + STATE(813), 1, + sym_class_body, + STATE(2587), 1, + sym_comment, + [101648] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(4060), 1, anon_sym_LBRACE, - STATE(1569), 1, + STATE(812), 1, sym_statement_block, - STATE(2542), 1, + STATE(2588), 1, sym_comment, - [99957] = 4, + [101664] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2543), 1, + STATE(2589), 1, sym_comment, - ACTIONS(1647), 2, + ACTIONS(1687), 2, anon_sym_else, anon_sym_while, - [99971] = 4, + [101678] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2544), 1, + STATE(2590), 1, sym_comment, - ACTIONS(1653), 2, + ACTIONS(1651), 2, anon_sym_else, anon_sym_while, - [99985] = 4, + [101692] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2545), 1, + STATE(2591), 1, sym_comment, - ACTIONS(4203), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [99999] = 4, + ACTIONS(1651), 2, + anon_sym_else, + anon_sym_while, + [101706] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2546), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2422), 1, + sym_formal_parameters, + STATE(2592), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_else, - anon_sym_while, - [100013] = 5, + [101722] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - STATE(2171), 1, - sym__from_clause, - STATE(2547), 1, + ACTIONS(4060), 1, + anon_sym_LBRACE, + STATE(811), 1, + sym_statement_block, + STATE(2593), 1, sym_comment, - [100029] = 5, + [101738] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4205), 1, - anon_sym_COMMA, - ACTIONS(4207), 1, - anon_sym_from, - STATE(2548), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2355), 1, + sym_formal_parameters, + STATE(2594), 1, sym_comment, - [100045] = 4, + [101754] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2549), 1, + STATE(2595), 1, sym_comment, - ACTIONS(1655), 2, - anon_sym_else, - anon_sym_while, - [100059] = 4, + ACTIONS(4304), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [101768] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2550), 1, + STATE(2596), 1, sym_comment, - ACTIONS(1703), 2, + ACTIONS(1689), 2, anon_sym_else, anon_sym_while, - [100073] = 4, + [101782] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2551), 1, + STATE(2597), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1651), 2, anon_sym_else, anon_sym_while, - [100087] = 5, + [101796] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(1570), 1, + STATE(2252), 1, sym_statement_block, - STATE(2552), 1, + STATE(2598), 1, sym_comment, - [100103] = 4, + [101812] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2553), 1, + STATE(2599), 1, sym_comment, - ACTIONS(1659), 2, + ACTIONS(1725), 2, anon_sym_else, anon_sym_while, - [100117] = 4, + [101826] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2554), 1, + ACTIONS(3560), 1, + anon_sym_from, + STATE(2524), 1, + sym__from_clause, + STATE(2600), 1, sym_comment, - ACTIONS(2468), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [100131] = 5, + [101842] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_STAR, + STATE(2601), 1, + sym_comment, + [101858] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1576), 1, - sym_statement_block, - STATE(2555), 1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2602), 1, sym_comment, - [100147] = 5, + ACTIONS(4310), 2, + sym_jsx_identifier, + sym_identifier, + [101872] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1572), 1, - sym_statement_block, - STATE(2556), 1, + ACTIONS(4112), 1, + anon_sym_LPAREN, + STATE(2480), 1, + sym_parenthesized_expression, + STATE(2603), 1, sym_comment, - [100163] = 4, + [101888] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2557), 1, + STATE(2604), 1, sym_comment, - ACTIONS(1701), 2, + ACTIONS(1709), 2, anon_sym_else, anon_sym_while, - [100177] = 5, + [101902] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1573), 1, - sym_statement_block, - STATE(2558), 1, + STATE(2605), 1, sym_comment, - [100193] = 4, + ACTIONS(4312), 2, + anon_sym_GT, + anon_sym_DOT, + [101916] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2559), 1, + STATE(2606), 1, sym_comment, - ACTIONS(1697), 2, - anon_sym_else, - anon_sym_while, - [100207] = 5, + ACTIONS(3784), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [101930] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1575), 1, - sym_statement_block, - STATE(2560), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2449), 1, + sym_formal_parameters, + STATE(2607), 1, sym_comment, - [100223] = 5, + [101946] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1538), 1, - sym_statement_block, - STATE(2561), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2448), 1, + sym_formal_parameters, + STATE(2608), 1, sym_comment, - [100239] = 4, + [101962] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2562), 1, + STATE(2609), 1, sym_comment, - ACTIONS(1663), 2, - anon_sym_else, - anon_sym_while, - [100253] = 4, + ACTIONS(2280), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [101976] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2563), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2444), 1, + sym_formal_parameters, + STATE(2610), 1, sym_comment, - ACTIONS(1665), 2, - anon_sym_else, - anon_sym_while, - [100267] = 4, + [101992] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2564), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2443), 1, + sym_formal_parameters, + STATE(2611), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_else, - anon_sym_while, - [100281] = 4, + [102008] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2565), 1, + STATE(2612), 1, sym_comment, - ACTIONS(1671), 2, + ACTIONS(1723), 2, anon_sym_else, anon_sym_while, - [100295] = 5, + [102022] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - STATE(2194), 1, - sym__from_clause, - STATE(2566), 1, - sym_comment, - [100311] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4209), 1, - sym_identifier, - ACTIONS(4211), 1, - anon_sym_STAR, - STATE(2567), 1, + STATE(2613), 1, sym_comment, - [100327] = 5, + ACTIONS(1721), 2, + anon_sym_else, + anon_sym_while, + [102036] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2402), 1, - sym_formal_parameters, - STATE(2568), 1, + ACTIONS(4314), 1, + anon_sym_LBRACE, + STATE(2391), 1, + sym_object, + STATE(2614), 1, sym_comment, - [100343] = 5, + [102052] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2401), 1, - sym_formal_parameters, - STATE(2569), 1, + STATE(2615), 1, sym_comment, - [100359] = 4, + ACTIONS(4316), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [102066] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2570), 1, + STATE(2616), 1, sym_comment, - ACTIONS(1673), 2, + ACTIONS(1719), 2, anon_sym_else, anon_sym_while, - [100373] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3588), 1, - anon_sym_LBRACE, - STATE(2015), 1, - sym_class_body, - STATE(2571), 1, - sym_comment, - [100389] = 4, + [102080] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2572), 1, + STATE(2617), 1, sym_comment, - ACTIONS(1675), 2, + ACTIONS(1717), 2, anon_sym_else, anon_sym_while, - [100403] = 5, + [102094] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4077), 1, - anon_sym_LBRACE, - STATE(2014), 1, - sym_statement_block, - STATE(2573), 1, + STATE(2618), 1, sym_comment, - [100419] = 5, + ACTIONS(1715), 2, + anon_sym_else, + anon_sym_while, + [102108] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, + ACTIONS(4038), 1, anon_sym_LPAREN, - STATE(105), 1, + STATE(114), 1, sym_parenthesized_expression, - STATE(2574), 1, + STATE(2619), 1, sym_comment, - [100435] = 5, + [102124] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3973), 1, + ACTIONS(4112), 1, anon_sym_LPAREN, - STATE(2199), 1, + STATE(2477), 1, sym_parenthesized_expression, - STATE(2575), 1, + STATE(2620), 1, sym_comment, - [100451] = 5, + [102140] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4077), 1, - anon_sym_LBRACE, - STATE(2009), 1, - sym_statement_block, - STATE(2576), 1, + STATE(2621), 1, sym_comment, - [100467] = 4, + ACTIONS(3974), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [102154] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2577), 1, + STATE(2622), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1651), 2, anon_sym_else, anon_sym_while, - [100481] = 4, + [102168] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2578), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2439), 1, + sym_formal_parameters, + STATE(2623), 1, sym_comment, - ACTIONS(1677), 2, - anon_sym_else, - anon_sym_while, - [100495] = 4, + [102184] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2579), 1, + STATE(2624), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1713), 2, anon_sym_else, anon_sym_while, - [100509] = 5, + [102198] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2397), 1, + STATE(2438), 1, sym_formal_parameters, - STATE(2580), 1, + STATE(2625), 1, sym_comment, - [100525] = 4, + [102214] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2581), 1, + STATE(2626), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1709), 2, anon_sym_else, anon_sym_while, - [100539] = 5, + [102228] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(3566), 1, - anon_sym_LBRACE, - STATE(1327), 1, - sym_class_body, - STATE(2582), 1, + ACTIONS(4318), 1, + sym_identifier, + ACTIONS(4320), 1, + anon_sym_STAR, + STATE(2627), 1, sym_comment, - [100555] = 5, + [102244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2396), 1, - sym_formal_parameters, - STATE(2583), 1, + STATE(2628), 1, sym_comment, - [100571] = 5, + ACTIONS(1649), 2, + anon_sym_else, + anon_sym_while, + [102258] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, + ACTIONS(3560), 1, anon_sym_from, - STATE(2161), 1, + STATE(2423), 1, sym__from_clause, - STATE(2584), 1, + STATE(2629), 1, sym_comment, - [100587] = 5, + [102274] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2392), 1, - sym_formal_parameters, - STATE(2585), 1, + ACTIONS(3654), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_class_body, + STATE(2630), 1, sym_comment, - [100603] = 5, + [102290] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, + ACTIONS(3560), 1, anon_sym_from, - STATE(2179), 1, + STATE(2028), 1, sym__from_clause, - STATE(2586), 1, + STATE(2631), 1, sym_comment, - [100619] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [102306] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3302), 1, - sym_identifier, - ACTIONS(3308), 1, - sym_private_property_identifier, - STATE(2587), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2632), 1, sym_comment, - [100635] = 4, + ACTIONS(1709), 2, + anon_sym_else, + anon_sym_while, + [102320] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2588), 1, + STATE(2633), 1, sym_comment, - ACTIONS(2289), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [100649] = 4, + ACTIONS(1711), 2, + anon_sym_else, + anon_sym_while, + [102334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2589), 1, + STATE(2634), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1709), 2, anon_sym_else, anon_sym_while, - [100663] = 4, + [102348] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2590), 1, + STATE(2635), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1709), 2, anon_sym_else, anon_sym_while, - [100677] = 4, + [102362] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2591), 1, + STATE(2636), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1709), 2, anon_sym_else, anon_sym_while, - [100691] = 5, + [102376] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2391), 1, + STATE(2433), 1, sym_formal_parameters, - STATE(2592), 1, + STATE(2637), 1, sym_comment, - [100707] = 5, + [102392] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2227), 1, + STATE(2395), 1, sym_formal_parameters, - STATE(2593), 1, + STATE(2638), 1, sym_comment, - [100723] = 5, + [102408] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2387), 1, - sym_formal_parameters, - STATE(2594), 1, + STATE(2639), 1, sym_comment, - [100739] = 4, + ACTIONS(1691), 2, + anon_sym_else, + anon_sym_while, + [102422] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2595), 1, + STATE(2640), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1693), 2, anon_sym_else, anon_sym_while, - [100753] = 4, + [102436] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2596), 1, + STATE(2641), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [100767] = 4, + [102450] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2597), 1, + STATE(2642), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1707), 2, anon_sym_else, anon_sym_while, - [100781] = 5, + [102464] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2598), 1, - sym_comment, - STATE(2669), 1, + STATE(2370), 1, sym_formal_parameters, - [100797] = 4, + STATE(2643), 1, + sym_comment, + [102480] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2599), 1, + STATE(2644), 1, sym_comment, - ACTIONS(1701), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [100811] = 4, + [102494] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2600), 1, + STATE(2645), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1707), 2, anon_sym_else, anon_sym_while, - [100825] = 5, + [102508] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2601), 1, - sym_comment, - STATE(2677), 1, + STATE(2366), 1, sym_formal_parameters, - [100841] = 4, + STATE(2646), 1, + sym_comment, + [102524] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2602), 1, + STATE(2647), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1705), 2, anon_sym_else, anon_sym_while, - [100855] = 4, + [102538] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2603), 1, + STATE(2648), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1703), 2, anon_sym_else, anon_sym_while, - [100869] = 4, + [102552] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2604), 1, + STATE(2649), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1701), 2, anon_sym_else, anon_sym_while, - [100883] = 4, + [102566] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2605), 1, + STATE(2650), 1, sym_comment, - ACTIONS(1697), 2, + ACTIONS(1699), 2, anon_sym_else, anon_sym_while, - [100897] = 5, + [102580] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2606), 1, - sym_comment, - STATE(2658), 1, + STATE(2362), 1, sym_formal_parameters, - [100913] = 5, + STATE(2651), 1, + sym_comment, + [102596] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2607), 1, - sym_comment, - STATE(2618), 1, + STATE(2356), 1, sym_formal_parameters, - [100929] = 5, + STATE(2652), 1, + sym_comment, + [102612] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2608), 1, - sym_comment, - STATE(2612), 1, + STATE(2349), 1, sym_formal_parameters, - [100945] = 4, + STATE(2653), 1, + sym_comment, + [102628] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2609), 1, + STATE(2654), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1697), 2, anon_sym_else, anon_sym_while, - [100959] = 5, + [102642] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2576), 1, + STATE(2343), 1, sym_formal_parameters, - STATE(2610), 1, + STATE(2655), 1, sym_comment, - [100975] = 5, + [102658] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2573), 1, + STATE(2339), 1, sym_formal_parameters, - STATE(2611), 1, + STATE(2656), 1, sym_comment, - [100991] = 5, + [102674] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, - anon_sym_LBRACE, - STATE(1352), 1, - sym_statement_block, - STATE(2612), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2317), 1, + sym_formal_parameters, + STATE(2657), 1, sym_comment, - [101007] = 5, + [102690] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2560), 1, + STATE(2315), 1, sym_formal_parameters, - STATE(2613), 1, + STATE(2658), 1, sym_comment, - [101023] = 5, + [102706] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2558), 1, + STATE(2312), 1, sym_formal_parameters, - STATE(2614), 1, + STATE(2659), 1, sym_comment, - [101039] = 5, + [102722] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2434), 1, + STATE(2305), 1, sym_formal_parameters, - STATE(2615), 1, + STATE(2660), 1, sym_comment, - [101055] = 5, + [102738] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2552), 1, + STATE(2304), 1, sym_formal_parameters, - STATE(2616), 1, + STATE(2661), 1, sym_comment, - [101071] = 5, + [102754] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2542), 1, + STATE(2298), 1, sym_formal_parameters, - STATE(2617), 1, + STATE(2662), 1, sym_comment, - [101087] = 5, + [102770] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, - anon_sym_LBRACE, - STATE(1357), 1, - sym_statement_block, - STATE(2618), 1, + STATE(2663), 1, sym_comment, - [101103] = 5, + ACTIONS(1695), 2, + anon_sym_else, + anon_sym_while, + [102784] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2488), 1, + STATE(2296), 1, sym_formal_parameters, - STATE(2619), 1, + STATE(2664), 1, sym_comment, - [101119] = 5, + [102800] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2477), 1, + STATE(2295), 1, sym_formal_parameters, - STATE(2620), 1, + STATE(2665), 1, sym_comment, - [101135] = 5, + [102816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2470), 1, + STATE(2288), 1, sym_formal_parameters, - STATE(2621), 1, + STATE(2666), 1, sym_comment, - [101151] = 5, + [102832] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2298), 1, + STATE(2287), 1, sym_formal_parameters, - STATE(2622), 1, + STATE(2667), 1, sym_comment, - [101167] = 5, + [102848] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2415), 1, + STATE(2286), 1, sym_formal_parameters, - STATE(2623), 1, + STATE(2668), 1, sym_comment, - [101183] = 5, + [102864] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2413), 1, + STATE(2285), 1, sym_formal_parameters, - STATE(2624), 1, + STATE(2669), 1, sym_comment, - [101199] = 5, + [102880] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2412), 1, + STATE(2283), 1, sym_formal_parameters, - STATE(2625), 1, + STATE(2670), 1, sym_comment, - [101215] = 5, + [102896] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2408), 1, + STATE(2282), 1, sym_formal_parameters, - STATE(2626), 1, + STATE(2671), 1, sym_comment, - [101231] = 5, + [102912] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2407), 1, + STATE(2281), 1, sym_formal_parameters, - STATE(2627), 1, + STATE(2672), 1, sym_comment, - [101247] = 5, + [102928] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2404), 1, + STATE(2278), 1, sym_formal_parameters, - STATE(2628), 1, + STATE(2673), 1, sym_comment, - [101263] = 5, + [102944] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2394), 1, + STATE(2274), 1, sym_formal_parameters, - STATE(2629), 1, + STATE(2674), 1, sym_comment, - [101279] = 5, + [102960] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2393), 1, + STATE(2273), 1, sym_formal_parameters, - STATE(2630), 1, + STATE(2675), 1, sym_comment, - [101295] = 5, + [102976] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2381), 1, + STATE(2272), 1, sym_formal_parameters, - STATE(2631), 1, + STATE(2676), 1, sym_comment, - [101311] = 5, + [102992] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2378), 1, + STATE(2266), 1, sym_formal_parameters, - STATE(2632), 1, + STATE(2677), 1, sym_comment, - [101327] = 5, + [103008] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2377), 1, + STATE(2265), 1, sym_formal_parameters, - STATE(2633), 1, + STATE(2678), 1, sym_comment, - [101343] = 5, + [103024] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2367), 1, + STATE(2264), 1, sym_formal_parameters, - STATE(2634), 1, + STATE(2679), 1, sym_comment, - [101359] = 5, + [103040] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2339), 1, + STATE(2263), 1, sym_formal_parameters, - STATE(2635), 1, + STATE(2680), 1, sym_comment, - [101375] = 4, + [103056] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2636), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2421), 1, + sym_formal_parameters, + STATE(2681), 1, sym_comment, - ACTIONS(1697), 2, - anon_sym_else, - anon_sym_while, - [101389] = 5, + [103072] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2332), 1, + STATE(2261), 1, sym_formal_parameters, - STATE(2637), 1, + STATE(2682), 1, sym_comment, - [101405] = 5, + [103088] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2320), 1, + STATE(2260), 1, sym_formal_parameters, - STATE(2638), 1, + STATE(2683), 1, sym_comment, - [101421] = 5, + [103104] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2317), 1, + STATE(2259), 1, sym_formal_parameters, - STATE(2639), 1, + STATE(2684), 1, sym_comment, - [101437] = 5, + [103120] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2306), 1, + STATE(2251), 1, sym_formal_parameters, - STATE(2640), 1, + STATE(2685), 1, sym_comment, - [101453] = 5, + [103136] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2302), 1, + STATE(2248), 1, sym_formal_parameters, - STATE(2641), 1, + STATE(2686), 1, sym_comment, - [101469] = 5, + [103152] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2299), 1, + STATE(2245), 1, sym_formal_parameters, - STATE(2642), 1, + STATE(2687), 1, sym_comment, - [101485] = 4, + [103168] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2643), 1, + STATE(2688), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [101499] = 4, + [103182] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2644), 1, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(204), 1, + sym_statement_block, + STATE(2689), 1, sym_comment, - ACTIONS(1677), 2, - anon_sym_else, - anon_sym_while, - [101513] = 4, + [103198] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2645), 1, + ACTIONS(4142), 1, + anon_sym_LBRACE, + STATE(217), 1, + sym_statement_block, + STATE(2690), 1, sym_comment, - ACTIONS(1677), 2, - anon_sym_else, - anon_sym_while, - [101527] = 4, + [103214] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2646), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(1316), 1, + sym_statement_block, + STATE(2691), 1, sym_comment, - ACTIONS(1677), 2, - anon_sym_else, - anon_sym_while, - [101541] = 4, + [103230] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2647), 1, + ACTIONS(3213), 1, + anon_sym_LPAREN, + STATE(2371), 1, + sym_formal_parameters, + STATE(2692), 1, sym_comment, - ACTIONS(1677), 2, - anon_sym_else, - anon_sym_while, - [101555] = 5, + [103246] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4023), 1, - anon_sym_LBRACE, - STATE(1160), 1, - sym_statement_block, - STATE(2648), 1, + STATE(2693), 1, sym_comment, - [101571] = 4, + ACTIONS(1695), 2, + anon_sym_else, + anon_sym_while, + [103260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2649), 1, + STATE(2694), 1, sym_comment, - ACTIONS(1679), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [101585] = 4, + [103274] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2650), 1, + STATE(2695), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [101599] = 5, + [103288] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, + ACTIONS(4038), 1, anon_sym_LPAREN, - STATE(112), 1, + STATE(78), 1, sym_parenthesized_expression, - STATE(2651), 1, + STATE(2696), 1, sym_comment, - [101615] = 5, + [103304] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3973), 1, + ACTIONS(4112), 1, anon_sym_LPAREN, - STATE(2205), 1, + STATE(2246), 1, sym_parenthesized_expression, - STATE(2652), 1, + STATE(2697), 1, sym_comment, - [101631] = 5, + [103320] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, - anon_sym_LPAREN, - STATE(2375), 1, - sym_formal_parameters, - STATE(2653), 1, + ACTIONS(4322), 1, + anon_sym_LBRACE, + STATE(923), 1, + sym_statement_block, + STATE(2698), 1, sym_comment, - [101647] = 4, + [103336] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2654), 1, + STATE(2699), 1, sym_comment, - ACTIONS(1681), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [101661] = 4, + [103350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2655), 1, + STATE(2700), 1, sym_comment, - ACTIONS(1683), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [101675] = 4, + [103364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2656), 1, + ACTIONS(3560), 1, + anon_sym_from, + STATE(2010), 1, + sym__from_clause, + STATE(2701), 1, sym_comment, - ACTIONS(1697), 2, - anon_sym_else, - anon_sym_while, - [101689] = 4, + [103380] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2657), 1, + STATE(2702), 1, sym_comment, - ACTIONS(1685), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [101703] = 5, + [103394] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4001), 1, - anon_sym_LBRACE, - STATE(1342), 1, - sym_statement_block, - STATE(2658), 1, + STATE(2703), 1, sym_comment, - [101719] = 5, + ACTIONS(1695), 2, + anon_sym_else, + anon_sym_while, + [103408] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, + ACTIONS(3560), 1, anon_sym_from, - STATE(2358), 1, + STATE(2401), 1, sym__from_clause, - STATE(2659), 1, + STATE(2704), 1, sym_comment, - [101735] = 5, + [103424] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, + ACTIONS(3560), 1, anon_sym_from, - STATE(2238), 1, + STATE(2279), 1, sym__from_clause, - STATE(2660), 1, + STATE(2705), 1, sym_comment, - [101751] = 5, + [103440] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, + ACTIONS(3560), 1, anon_sym_from, - STATE(2240), 1, + STATE(1933), 1, sym__from_clause, - STATE(2661), 1, + STATE(2706), 1, sym_comment, - [101767] = 5, + [103456] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3566), 1, - anon_sym_LBRACE, - STATE(1334), 1, - sym_class_body, - STATE(2662), 1, + STATE(2707), 1, sym_comment, - [101783] = 5, + ACTIONS(1695), 2, + anon_sym_else, + anon_sym_while, + [103470] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3436), 1, - anon_sym_from, - STATE(2356), 1, - sym__from_clause, - STATE(2663), 1, + ACTIONS(4038), 1, + anon_sym_LPAREN, + STATE(929), 1, + sym_parenthesized_expression, + STATE(2708), 1, sym_comment, - [101799] = 5, + [103486] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2257), 1, + STATE(2301), 1, sym_formal_parameters, - STATE(2664), 1, + STATE(2709), 1, sym_comment, - [101815] = 4, + [103502] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2665), 1, + STATE(2710), 1, sym_comment, - ACTIONS(1687), 2, - anon_sym_else, - anon_sym_while, - [101829] = 4, + ACTIONS(4324), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [103516] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2666), 1, + STATE(2711), 1, sym_comment, - ACTIONS(1689), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [101843] = 4, + [103530] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2667), 1, + STATE(2712), 1, sym_comment, - ACTIONS(1693), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [101857] = 5, + [103544] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2270), 1, + STATE(2314), 1, sym_formal_parameters, - STATE(2668), 1, + STATE(2713), 1, sym_comment, - [101873] = 5, + [103560] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4077), 1, - anon_sym_LBRACE, - STATE(2017), 1, - sym_statement_block, - STATE(2669), 1, + STATE(2714), 1, sym_comment, - [101889] = 4, + ACTIONS(1695), 2, + anon_sym_else, + anon_sym_while, + [103574] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2670), 1, + STATE(2715), 1, sym_comment, - ACTIONS(1697), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [101903] = 5, + [103588] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2274), 1, + STATE(2319), 1, sym_formal_parameters, - STATE(2671), 1, + STATE(2716), 1, sym_comment, - [101919] = 5, + [103604] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2275), 1, + STATE(2320), 1, sym_formal_parameters, - STATE(2672), 1, + STATE(2717), 1, sym_comment, - [101935] = 5, + [103620] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2279), 1, + STATE(2324), 1, sym_formal_parameters, - STATE(2673), 1, + STATE(2718), 1, sym_comment, - [101951] = 5, + [103636] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2280), 1, + STATE(2325), 1, sym_formal_parameters, - STATE(2674), 1, + STATE(2719), 1, sym_comment, - [101967] = 5, + [103652] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2284), 1, + STATE(2329), 1, sym_formal_parameters, - STATE(2675), 1, + STATE(2720), 1, sym_comment, - [101983] = 5, + [103668] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3164), 1, + ACTIONS(3213), 1, anon_sym_LPAREN, - STATE(2285), 1, + STATE(2330), 1, sym_formal_parameters, - STATE(2676), 1, + STATE(2721), 1, sym_comment, - [101999] = 5, + [103684] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3963), 1, - anon_sym_LBRACE, - STATE(1540), 1, - sym_statement_block, - STATE(2677), 1, - sym_comment, - [102015] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4213), 1, - sym_identifier, - ACTIONS(4215), 1, - anon_sym_STAR, - STATE(2678), 1, + STATE(2722), 1, sym_comment, - [102031] = 4, + ACTIONS(4326), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [103698] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2679), 1, + STATE(2723), 1, sym_comment, ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [102045] = 4, + [103712] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2680), 1, + STATE(2724), 1, sym_comment, - ACTIONS(1697), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [102059] = 4, + [103726] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - STATE(2681), 1, + STATE(2725), 1, sym_comment, - ACTIONS(1699), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [102073] = 5, + [103740] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3935), 1, - anon_sym_LPAREN, - STATE(77), 1, - sym_parenthesized_expression, - STATE(2682), 1, + STATE(2726), 1, sym_comment, - [102089] = 5, + ACTIONS(1695), 2, + anon_sym_else, + anon_sym_while, + [103754] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3973), 1, + ACTIONS(4038), 1, anon_sym_LPAREN, - STATE(2323), 1, + STATE(81), 1, sym_parenthesized_expression, - STATE(2683), 1, + STATE(2727), 1, sym_comment, - [102105] = 5, + [103770] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4217), 1, - anon_sym_SEMI, - ACTIONS(4219), 1, - sym__automatic_semicolon, - STATE(2684), 1, + ACTIONS(4112), 1, + anon_sym_LPAREN, + STATE(2368), 1, + sym_parenthesized_expression, + STATE(2728), 1, sym_comment, - [102121] = 4, + [103786] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4221), 1, - anon_sym_from, - STATE(2685), 1, + STATE(2729), 1, sym_comment, - [102134] = 4, + ACTIONS(1665), 2, + anon_sym_else, + anon_sym_while, + [103800] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4207), 1, - anon_sym_from, - STATE(2686), 1, + ACTIONS(2305), 1, + anon_sym_RPAREN, + STATE(2730), 1, sym_comment, - [102147] = 4, + [103813] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4223), 1, - sym_regex_pattern, - STATE(2687), 1, + ACTIONS(4328), 1, + sym_identifier, + STATE(2731), 1, sym_comment, - [102160] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + [103826] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(2226), 1, - anon_sym_in, - STATE(2688), 1, - sym_comment, - [102173] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(4225), 1, - anon_sym_EQ_GT, - STATE(2689), 1, + ACTIONS(4330), 1, + sym_regex_pattern, + STATE(2732), 1, sym_comment, - [102186] = 4, + [103839] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4227), 1, + ACTIONS(4332), 1, sym_identifier, - STATE(2690), 1, + STATE(2733), 1, sym_comment, - [102199] = 4, + [103852] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4229), 1, - anon_sym_while, - STATE(2691), 1, + ACTIONS(2311), 1, + anon_sym_RPAREN, + STATE(2734), 1, + sym_comment, + [103865] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4334), 1, + sym_identifier, + STATE(2735), 1, sym_comment, - [102212] = 4, + [103878] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4231), 1, + ACTIONS(4336), 1, sym_identifier, - STATE(2692), 1, + STATE(2736), 1, sym_comment, - [102225] = 4, + [103891] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4233), 1, + ACTIONS(4338), 1, sym_regex_pattern, - STATE(2693), 1, + STATE(2737), 1, sym_comment, - [102238] = 4, + [103904] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4235), 1, - anon_sym_while, - STATE(2694), 1, + ACTIONS(2238), 1, + anon_sym_in, + STATE(2738), 1, sym_comment, - [102251] = 4, + [103917] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4237), 1, - ts_builtin_sym_end, - STATE(2695), 1, + ACTIONS(4340), 1, + anon_sym_while, + STATE(2739), 1, sym_comment, - [102264] = 4, + [103930] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4239), 1, + ACTIONS(4342), 1, anon_sym_RPAREN, - STATE(2696), 1, - sym_comment, - [102277] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(2394), 1, - anon_sym_RBRACK, - STATE(2697), 1, + STATE(2740), 1, sym_comment, - [102290] = 4, + [103943] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4241), 1, + ACTIONS(4344), 1, sym_identifier, - STATE(2698), 1, + STATE(2741), 1, sym_comment, - [102303] = 4, + [103956] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3915), 1, - anon_sym_EQ, - STATE(2699), 1, - sym_comment, - [102316] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4243), 1, - sym_identifier, - STATE(2700), 1, - sym_comment, - [102329] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4245), 1, - sym_regex_pattern, - STATE(2701), 1, + ACTIONS(4346), 1, + ts_builtin_sym_end, + STATE(2742), 1, sym_comment, - [102342] = 4, + [103969] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4247), 1, - anon_sym_while, - STATE(2702), 1, + ACTIONS(2375), 1, + anon_sym_RBRACK, + STATE(2743), 1, sym_comment, - [102355] = 4, + [103982] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4249), 1, - anon_sym_EQ_GT, - STATE(2703), 1, + ACTIONS(4348), 1, + anon_sym_while, + STATE(2744), 1, sym_comment, - [102368] = 4, + [103995] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4251), 1, + ACTIONS(4350), 1, sym_identifier, - STATE(2704), 1, + STATE(2745), 1, sym_comment, - [102381] = 4, + [104008] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4253), 1, - sym_regex_pattern, - STATE(2705), 1, + ACTIONS(4352), 1, + sym_identifier, + STATE(2746), 1, sym_comment, - [102394] = 4, + [104021] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4255), 1, - sym_identifier, - STATE(2706), 1, + ACTIONS(4354), 1, + sym_regex_pattern, + STATE(2747), 1, sym_comment, - [102407] = 4, + [104034] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4257), 1, - anon_sym_function, - STATE(2707), 1, + ACTIONS(4356), 1, + anon_sym_COLON, + STATE(2748), 1, sym_comment, - [102420] = 4, + [104047] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4259), 1, - anon_sym_RPAREN, - STATE(2708), 1, + ACTIONS(4358), 1, + anon_sym_as, + STATE(2749), 1, sym_comment, - [102433] = 4, + [104060] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4261), 1, + ACTIONS(4030), 1, anon_sym_EQ, - STATE(2709), 1, + STATE(2750), 1, sym_comment, - [102446] = 4, + [104073] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4263), 1, - anon_sym_as, - STATE(2710), 1, + ACTIONS(4360), 1, + anon_sym_from, + STATE(2751), 1, sym_comment, - [102459] = 4, + [104086] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4265), 1, - anon_sym_EQ, - STATE(2711), 1, + ACTIONS(4362), 1, + anon_sym_EQ_GT, + STATE(2752), 1, sym_comment, - [102472] = 4, + [104099] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4267), 1, + ACTIONS(4364), 1, anon_sym_RPAREN, - STATE(2712), 1, + STATE(2753), 1, sym_comment, - [102485] = 4, + [104112] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4269), 1, - anon_sym_RPAREN, - STATE(2713), 1, + ACTIONS(4366), 1, + anon_sym_GT, + STATE(2754), 1, sym_comment, - [102498] = 4, + [104125] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2351), 1, - anon_sym_RPAREN, - STATE(2714), 1, + ACTIONS(4020), 1, + anon_sym_RBRACE, + STATE(2755), 1, sym_comment, - [102511] = 4, + [104138] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2384), 1, - anon_sym_RPAREN, - STATE(2715), 1, + ACTIONS(4368), 1, + anon_sym_EQ_GT, + STATE(2756), 1, sym_comment, - [102524] = 4, + [104151] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4370), 1, + sym_identifier, + STATE(2757), 1, + sym_comment, + [104164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2343), 1, - anon_sym_RPAREN, - STATE(2716), 1, + ACTIONS(4372), 1, + anon_sym_function, + STATE(2758), 1, sym_comment, - [102537] = 4, + [104177] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4271), 1, - sym_identifier, - STATE(2717), 1, + ACTIONS(4374), 1, + sym_regex_pattern, + STATE(2759), 1, sym_comment, - [102550] = 4, + [104190] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2345), 1, - anon_sym_RPAREN, - STATE(2718), 1, + ACTIONS(4376), 1, + anon_sym_EQ, + STATE(2760), 1, sym_comment, - [102563] = 4, + [104203] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(4378), 1, + sym_identifier, + STATE(2761), 1, + sym_comment, + [104216] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(2333), 1, - anon_sym_RPAREN, - STATE(2719), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4380), 1, + sym_identifier, + STATE(2762), 1, sym_comment, - [102576] = 4, + [104229] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2335), 1, - anon_sym_RPAREN, - STATE(2720), 1, + ACTIONS(4382), 1, + anon_sym_as, + STATE(2763), 1, sym_comment, - [102589] = 4, + [104242] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4273), 1, - anon_sym_while, - STATE(2721), 1, + ACTIONS(2339), 1, + anon_sym_RPAREN, + STATE(2764), 1, sym_comment, - [102602] = 4, + [104255] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4275), 1, + ACTIONS(4300), 1, anon_sym_from, - STATE(2722), 1, + STATE(2765), 1, sym_comment, - [102615] = 4, + [104268] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4277), 1, + ACTIONS(4384), 1, anon_sym_while, - STATE(2723), 1, + STATE(2766), 1, sym_comment, - [102628] = 4, + [104281] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4279), 1, - anon_sym_EQ_GT, - STATE(2724), 1, + ACTIONS(4386), 1, + anon_sym_EQ, + STATE(2767), 1, sym_comment, - [102641] = 4, + [104294] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4281), 1, - anon_sym_EQ_GT, - STATE(2725), 1, + ACTIONS(2335), 1, + anon_sym_RPAREN, + STATE(2768), 1, sym_comment, - [102654] = 4, + [104307] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4283), 1, - anon_sym_EQ_GT, - STATE(2726), 1, + ACTIONS(2785), 1, + anon_sym_LPAREN, + STATE(2769), 1, + sym_comment, + [104320] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2333), 1, + anon_sym_RPAREN, + STATE(2770), 1, sym_comment, - [102667] = 4, + [104333] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4285), 1, + ACTIONS(4388), 1, sym_identifier, - STATE(2727), 1, + STATE(2771), 1, sym_comment, - [102680] = 4, + [104346] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(4390), 1, + sym_identifier, + STATE(2772), 1, + sym_comment, + [104359] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(2324), 1, - anon_sym_RPAREN, - STATE(2728), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4392), 1, + sym_identifier, + STATE(2773), 1, sym_comment, - [102693] = 4, + [104372] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4287), 1, - anon_sym_EQ_GT, - STATE(2729), 1, + ACTIONS(3864), 1, + anon_sym_RBRACE, + STATE(2774), 1, sym_comment, - [102706] = 4, + [104385] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4289), 1, - anon_sym_EQ, - STATE(2730), 1, + ACTIONS(4394), 1, + anon_sym_from, + STATE(2775), 1, sym_comment, - [102719] = 4, + [104398] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4291), 1, - anon_sym_RPAREN, - STATE(2731), 1, + ACTIONS(1951), 1, + anon_sym_in, + STATE(2776), 1, sym_comment, - [102732] = 4, + [104411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2303), 1, - anon_sym_RPAREN, - STATE(2732), 1, + ACTIONS(4396), 1, + anon_sym_EQ_GT, + STATE(2777), 1, sym_comment, - [102745] = 4, + [104424] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2498), 1, - anon_sym_in, - STATE(2733), 1, + ACTIONS(4398), 1, + anon_sym_EQ_GT, + STATE(2778), 1, sym_comment, - [102758] = 4, + [104437] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2307), 1, - anon_sym_RPAREN, - STATE(2734), 1, + ACTIONS(4400), 1, + anon_sym_EQ_GT, + STATE(2779), 1, sym_comment, - [102771] = 4, + [104450] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4293), 1, + ACTIONS(4402), 1, anon_sym_RPAREN, - STATE(2735), 1, + STATE(2780), 1, sym_comment, - [102784] = 4, + [104463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2293), 1, - anon_sym_RPAREN, - STATE(2736), 1, + ACTIONS(4404), 1, + anon_sym_EQ_GT, + STATE(2781), 1, sym_comment, - [102797] = 4, + [104476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2305), 1, + ACTIONS(2327), 1, anon_sym_RPAREN, - STATE(2737), 1, + STATE(2782), 1, sym_comment, - [102810] = 4, + [104489] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2297), 1, + ACTIONS(2319), 1, anon_sym_COLON, - STATE(2738), 1, + STATE(2783), 1, sym_comment, - [102823] = 4, + [104502] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_from, - STATE(2739), 1, + ACTIONS(3375), 1, + anon_sym_EQ, + STATE(2784), 1, sym_comment, - [102836] = 4, + [104515] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3755), 1, - anon_sym_GT, - STATE(2740), 1, + ACTIONS(4406), 1, + anon_sym_EQ_GT, + STATE(2785), 1, sym_comment, - [102849] = 4, + [104528] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_SLASH2, - STATE(2741), 1, + ACTIONS(4408), 1, + anon_sym_EQ, + STATE(2786), 1, sym_comment, - [102862] = 4, + [104541] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4299), 1, - anon_sym_EQ_GT, - STATE(2742), 1, + ACTIONS(2321), 1, + anon_sym_RPAREN, + STATE(2787), 1, sym_comment, - [102875] = 4, + [104554] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4301), 1, - anon_sym_EQ_GT, - STATE(2743), 1, + ACTIONS(2373), 1, + anon_sym_RPAREN, + STATE(2788), 1, sym_comment, - [102888] = 4, + [104567] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4303), 1, - anon_sym_EQ_GT, - STATE(2744), 1, + ACTIONS(2500), 1, + anon_sym_in, + STATE(2789), 1, sym_comment, - [102901] = 4, + [104580] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3690), 1, - anon_sym_GT, - STATE(2745), 1, + ACTIONS(2303), 1, + anon_sym_RPAREN, + STATE(2790), 1, sym_comment, - [102914] = 4, + [104593] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(2309), 1, - anon_sym_RBRACK, - STATE(2746), 1, + anon_sym_RPAREN, + STATE(2791), 1, sym_comment, - [102927] = 4, + [104606] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2295), 1, - anon_sym_RPAREN, - STATE(2747), 1, + ACTIONS(4410), 1, + anon_sym_EQ_GT, + STATE(2792), 1, sym_comment, - [102940] = 4, + [104619] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4305), 1, + ACTIONS(4412), 1, sym_identifier, - STATE(2748), 1, + STATE(2793), 1, sym_comment, - [102953] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [104632] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4307), 1, - sym_identifier, - STATE(2749), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4414), 1, + anon_sym_while, + STATE(2794), 1, sym_comment, - [102966] = 4, + [104645] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4309), 1, + ACTIONS(4416), 1, anon_sym_function, - STATE(2750), 1, + STATE(2795), 1, sym_comment, - [102979] = 4, + [104658] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4311), 1, + ACTIONS(4418), 1, anon_sym_RPAREN, - STATE(2751), 1, + STATE(2796), 1, sym_comment, - [102992] = 4, + [104671] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4067), 1, + ACTIONS(4420), 1, anon_sym_EQ_GT, - STATE(2752), 1, + STATE(2797), 1, sym_comment, - [103005] = 4, + [104684] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2187), 1, - anon_sym_in, - STATE(2753), 1, + ACTIONS(2383), 1, + anon_sym_RBRACE, + STATE(2798), 1, sym_comment, - [103018] = 4, + [104697] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4069), 1, - anon_sym_EQ_GT, - STATE(2754), 1, + ACTIONS(4422), 1, + anon_sym_target, + STATE(2799), 1, sym_comment, - [103031] = 4, + [104710] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4313), 1, + ACTIONS(4424), 1, sym_identifier, - STATE(2755), 1, + STATE(2800), 1, sym_comment, - [103044] = 4, + [104723] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(4315), 1, - anon_sym_EQ_GT, - STATE(2756), 1, + ACTIONS(4426), 1, + sym_identifier, + STATE(2801), 1, sym_comment, - [103057] = 4, + [104736] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4317), 1, + ACTIONS(4428), 1, anon_sym_SLASH2, - STATE(2757), 1, + STATE(2802), 1, sym_comment, - [103070] = 4, + [104749] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4319), 1, - anon_sym_target, - STATE(2758), 1, + ACTIONS(3733), 1, + anon_sym_GT, + STATE(2803), 1, sym_comment, - [103083] = 4, + [104762] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4321), 1, - anon_sym_COLON, - STATE(2759), 1, + ACTIONS(4430), 1, + anon_sym_RPAREN, + STATE(2804), 1, + sym_comment, + [104775] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4432), 1, + sym_identifier, + STATE(2805), 1, sym_comment, - [103096] = 4, + [104788] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4323), 1, - anon_sym_target, - STATE(2760), 1, + ACTIONS(2347), 1, + anon_sym_RBRACK, + STATE(2806), 1, + sym_comment, + [104801] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4434), 1, + sym_identifier, + STATE(2807), 1, sym_comment, - [103109] = 4, + [104814] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2366), 1, - anon_sym_RBRACE, - STATE(2761), 1, + ACTIONS(4436), 1, + anon_sym_SLASH2, + STATE(2808), 1, sym_comment, - [103122] = 4, + [104827] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4325), 1, - anon_sym_from, - STATE(2762), 1, + ACTIONS(4438), 1, + anon_sym_COLON, + STATE(2809), 1, sym_comment, - [103135] = 4, + [104840] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4327), 1, - anon_sym_SLASH2, - STATE(2763), 1, + ACTIONS(4440), 1, + anon_sym_EQ_GT, + STATE(2810), 1, sym_comment, - [103148] = 4, + [104853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4329), 1, - anon_sym_GT, - STATE(2764), 1, + ACTIONS(4442), 1, + anon_sym_EQ_GT, + STATE(2811), 1, sym_comment, - [103161] = 4, + [104866] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2339), 1, - anon_sym_RPAREN, - STATE(2765), 1, + ACTIONS(4444), 1, + anon_sym_from, + STATE(2812), 1, sym_comment, - [103174] = 4, + [104879] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4331), 1, + ACTIONS(4446), 1, sym_identifier, - STATE(2766), 1, + STATE(2813), 1, sym_comment, - [103187] = 4, + [104892] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4333), 1, + ACTIONS(4448), 1, anon_sym_from, - STATE(2767), 1, + STATE(2814), 1, sym_comment, - [103200] = 4, + [104905] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4335), 1, - anon_sym_EQ_GT, - STATE(2768), 1, + ACTIONS(4450), 1, + anon_sym_from, + STATE(2815), 1, sym_comment, - [103213] = 4, + [104918] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4337), 1, + ACTIONS(4452), 1, anon_sym_EQ_GT, - STATE(2769), 1, - sym_comment, - [103226] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(4339), 1, - anon_sym_from, - STATE(2770), 1, + STATE(2816), 1, sym_comment, - [103239] = 4, + [104931] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3805), 1, - anon_sym_GT, - STATE(2771), 1, + ACTIONS(2315), 1, + anon_sym_RBRACE, + STATE(2817), 1, sym_comment, - [103252] = 4, + [104944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, ACTIONS(2301), 1, anon_sym_RBRACK, - STATE(2772), 1, + STATE(2818), 1, sym_comment, - [103265] = 4, + [104957] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4341), 1, - anon_sym_EQ_GT, - STATE(2773), 1, + ACTIONS(2371), 1, + anon_sym_RBRACE, + STATE(2819), 1, sym_comment, - [103278] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [104970] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4343), 1, - sym_identifier, - STATE(2774), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2337), 1, + anon_sym_RPAREN, + STATE(2820), 1, sym_comment, - [103291] = 4, + [104983] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4345), 1, - anon_sym_EQ, - STATE(2775), 1, + ACTIONS(4454), 1, + anon_sym_while, + STATE(2821), 1, sym_comment, - [103304] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [104996] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4347), 1, - sym_identifier, - STATE(2776), 1, - sym_comment, - [103317] = 4, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4349), 1, - sym_identifier, - STATE(2777), 1, + ACTIONS(4456), 1, + anon_sym_EQ_GT, + STATE(2822), 1, sym_comment, - [103330] = 4, + [105009] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3827), 1, - anon_sym_GT, - STATE(2778), 1, + ACTIONS(4458), 1, + anon_sym_EQ, + STATE(2823), 1, sym_comment, - [103343] = 4, + [105022] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4351), 1, - anon_sym_SLASH2, - STATE(2779), 1, + ACTIONS(2200), 1, + anon_sym_in, + STATE(2824), 1, sym_comment, - [103356] = 4, + [105035] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4353), 1, - anon_sym_EQ_GT, - STATE(2780), 1, + ACTIONS(3796), 1, + anon_sym_GT, + STATE(2825), 1, sym_comment, - [103369] = 4, + [105048] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4355), 1, - anon_sym_EQ_GT, - STATE(2781), 1, + ACTIONS(2387), 1, + anon_sym_RPAREN, + STATE(2826), 1, sym_comment, - [103382] = 4, + [105061] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4357), 1, + ACTIONS(4460), 1, sym_identifier, - STATE(2782), 1, + STATE(2827), 1, sym_comment, - [103395] = 4, + [105074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4359), 1, - anon_sym_EQ_GT, - STATE(2783), 1, + ACTIONS(3870), 1, + anon_sym_GT, + STATE(2828), 1, sym_comment, - [103408] = 4, + [105087] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4361), 1, + ACTIONS(4462), 1, sym_identifier, - STATE(2784), 1, + STATE(2829), 1, sym_comment, - [103421] = 4, + [105100] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - aux_sym_comment_token1, - ACTIONS(2392), 1, - anon_sym_RBRACE, - STATE(2785), 1, + ACTIONS(4464), 1, + sym_identifier, + STATE(2830), 1, sym_comment, - [103434] = 4, + [105113] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2765), 1, - anon_sym_LPAREN, - STATE(2786), 1, + ACTIONS(2385), 1, + anon_sym_RPAREN, + STATE(2831), 1, sym_comment, - [103447] = 4, + [105126] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2376), 1, - anon_sym_RBRACK, - STATE(2787), 1, + ACTIONS(4466), 1, + anon_sym_SLASH2, + STATE(2832), 1, sym_comment, - [103460] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [105139] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4363), 1, - sym_identifier, - STATE(2788), 1, - sym_comment, - [103473] = 4, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(4468), 1, + anon_sym_EQ_GT, + STATE(2833), 1, + sym_comment, + [105152] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4365), 1, - sym_identifier, - STATE(2789), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4470), 1, + anon_sym_EQ_GT, + STATE(2834), 1, sym_comment, - [103486] = 4, + [105165] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2315), 1, - anon_sym_RPAREN, - STATE(2790), 1, + ACTIONS(4472), 1, + anon_sym_EQ_GT, + STATE(2835), 1, sym_comment, - [103499] = 4, + [105178] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2364), 1, - anon_sym_RPAREN, - STATE(2791), 1, + ACTIONS(4474), 1, + anon_sym_from, + STATE(2836), 1, sym_comment, - [103512] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [105191] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4367), 1, - sym_identifier, - STATE(2792), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2360), 1, + anon_sym_RPAREN, + STATE(2837), 1, sym_comment, - [103525] = 4, + [105204] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2353), 1, - anon_sym_RBRACE, - STATE(2793), 1, + ACTIONS(4476), 1, + anon_sym_SLASH2, + STATE(2838), 1, sym_comment, - [103538] = 4, + [105217] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4369), 1, + ACTIONS(4478), 1, anon_sym_EQ_GT, - STATE(2794), 1, + STATE(2839), 1, sym_comment, - [103551] = 4, + [105230] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4371), 1, + ACTIONS(4480), 1, sym_identifier, - STATE(2795), 1, + STATE(2840), 1, sym_comment, - [103564] = 4, + [105243] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3572), 1, + ACTIONS(3462), 1, anon_sym_EQ, - STATE(2796), 1, + STATE(2841), 1, sym_comment, - [103577] = 4, + [105256] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4373), 1, + ACTIONS(4482), 1, sym_identifier, - STATE(2797), 1, + STATE(2842), 1, sym_comment, - [103590] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [105269] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4375), 1, - sym_identifier, - STATE(2798), 1, - sym_comment, - [103603] = 4, - ACTIONS(3), 1, + ACTIONS(1239), 1, aux_sym_comment_token1, + ACTIONS(4484), 1, + anon_sym_RPAREN, + STATE(2843), 1, + sym_comment, + [105282] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4377), 1, - sym_identifier, - STATE(2799), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4486), 1, + anon_sym_RPAREN, + STATE(2844), 1, sym_comment, - [103616] = 4, + [105295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4379), 1, - anon_sym_EQ_GT, - STATE(2800), 1, + ACTIONS(2356), 1, + anon_sym_RPAREN, + STATE(2845), 1, sym_comment, - [103629] = 4, + [105308] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(2420), 1, + ACTIONS(2453), 1, anon_sym_in, - STATE(2801), 1, + STATE(2846), 1, sym_comment, - [103642] = 4, + [105321] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3296), 1, - anon_sym_EQ, - STATE(2802), 1, + ACTIONS(2351), 1, + anon_sym_RBRACK, + STATE(2847), 1, sym_comment, - [103655] = 4, + [105334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(1963), 1, - anon_sym_in, - STATE(2803), 1, + ACTIONS(4292), 1, + anon_sym_EQ_GT, + STATE(2848), 1, sym_comment, - [103668] = 4, + [105347] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4381), 1, - anon_sym_as, - STATE(2804), 1, + ACTIONS(4294), 1, + anon_sym_EQ_GT, + STATE(2849), 1, sym_comment, - [103681] = 4, + [105360] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4383), 1, - anon_sym_from, - STATE(2805), 1, + ACTIONS(3963), 1, + anon_sym_GT, + STATE(2850), 1, sym_comment, - [103694] = 4, + [105373] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3883), 1, - anon_sym_RBRACE, - STATE(2806), 1, + ACTIONS(4488), 1, + anon_sym_from, + STATE(2851), 1, sym_comment, - [103707] = 4, + [105386] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4385), 1, - anon_sym_COLON, - STATE(2807), 1, + ACTIONS(4490), 1, + anon_sym_EQ_GT, + STATE(2852), 1, sym_comment, - [103720] = 4, + [105399] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4387), 1, + ACTIONS(4492), 1, sym_identifier, - STATE(2808), 1, + STATE(2853), 1, sym_comment, - [103733] = 4, + [105412] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(3925), 1, - anon_sym_RBRACE, - STATE(2809), 1, + ACTIONS(4494), 1, + anon_sym_target, + STATE(2854), 1, sym_comment, - [103746] = 4, + [105425] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4389), 1, + ACTIONS(4496), 1, sym_identifier, - STATE(2810), 1, + STATE(2855), 1, sym_comment, - [103759] = 4, + [105438] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4391), 1, + ACTIONS(4498), 1, sym_identifier, - STATE(2811), 1, + STATE(2856), 1, sym_comment, - [103772] = 4, + [105451] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4393), 1, + ACTIONS(4500), 1, anon_sym_function, - STATE(2812), 1, + STATE(2857), 1, sym_comment, - [103785] = 4, + [105464] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4395), 1, + ACTIONS(4502), 1, anon_sym_function, - STATE(2813), 1, + STATE(2858), 1, sym_comment, - [103798] = 4, + [105477] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(1239), 1, aux_sym_comment_token1, - ACTIONS(4397), 1, + ACTIONS(4504), 1, anon_sym_function, - STATE(2814), 1, + STATE(2859), 1, sym_comment, - [103811] = 1, - ACTIONS(4399), 1, + [105490] = 1, + ACTIONS(4506), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(464)] = 0, - [SMALL_STATE(465)] = 77, - [SMALL_STATE(466)] = 154, - [SMALL_STATE(467)] = 245, - [SMALL_STATE(468)] = 320, - [SMALL_STATE(469)] = 395, - [SMALL_STATE(470)] = 486, - [SMALL_STATE(471)] = 559, - [SMALL_STATE(472)] = 650, - [SMALL_STATE(473)] = 725, - [SMALL_STATE(474)] = 816, - [SMALL_STATE(475)] = 891, - [SMALL_STATE(476)] = 982, - [SMALL_STATE(477)] = 1077, - [SMALL_STATE(478)] = 1154, - [SMALL_STATE(479)] = 1227, - [SMALL_STATE(480)] = 1318, + [SMALL_STATE(465)] = 91, + [SMALL_STATE(466)] = 166, + [SMALL_STATE(467)] = 257, + [SMALL_STATE(468)] = 330, + [SMALL_STATE(469)] = 413, + [SMALL_STATE(470)] = 490, + [SMALL_STATE(471)] = 565, + [SMALL_STATE(472)] = 656, + [SMALL_STATE(473)] = 731, + [SMALL_STATE(474)] = 808, + [SMALL_STATE(475)] = 883, + [SMALL_STATE(476)] = 956, + [SMALL_STATE(477)] = 1047, + [SMALL_STATE(478)] = 1142, + [SMALL_STATE(479)] = 1219, + [SMALL_STATE(480)] = 1310, [SMALL_STATE(481)] = 1401, - [SMALL_STATE(482)] = 1477, - [SMALL_STATE(483)] = 1551, - [SMALL_STATE(484)] = 1623, - [SMALL_STATE(485)] = 1699, - [SMALL_STATE(486)] = 1773, - [SMALL_STATE(487)] = 1847, - [SMALL_STATE(488)] = 1921, - [SMALL_STATE(489)] = 2017, - [SMALL_STATE(490)] = 2091, - [SMALL_STATE(491)] = 2165, - [SMALL_STATE(492)] = 2239, - [SMALL_STATE(493)] = 2311, - [SMALL_STATE(494)] = 2405, - [SMALL_STATE(495)] = 2499, - [SMALL_STATE(496)] = 2575, - [SMALL_STATE(497)] = 2665, - [SMALL_STATE(498)] = 2739, - [SMALL_STATE(499)] = 2813, - [SMALL_STATE(500)] = 2887, - [SMALL_STATE(501)] = 2961, - [SMALL_STATE(502)] = 3055, - [SMALL_STATE(503)] = 3127, - [SMALL_STATE(504)] = 3201, - [SMALL_STATE(505)] = 3275, - [SMALL_STATE(506)] = 3351, - [SMALL_STATE(507)] = 3425, - [SMALL_STATE(508)] = 3499, - [SMALL_STATE(509)] = 3571, - [SMALL_STATE(510)] = 3661, - [SMALL_STATE(511)] = 3739, - [SMALL_STATE(512)] = 3815, - [SMALL_STATE(513)] = 3889, - [SMALL_STATE(514)] = 3963, - [SMALL_STATE(515)] = 4057, - [SMALL_STATE(516)] = 4129, - [SMALL_STATE(517)] = 4205, - [SMALL_STATE(518)] = 4299, - [SMALL_STATE(519)] = 4371, - [SMALL_STATE(520)] = 4445, - [SMALL_STATE(521)] = 4539, - [SMALL_STATE(522)] = 4613, - [SMALL_STATE(523)] = 4687, + [SMALL_STATE(482)] = 1473, + [SMALL_STATE(483)] = 1563, + [SMALL_STATE(484)] = 1659, + [SMALL_STATE(485)] = 1735, + [SMALL_STATE(486)] = 1809, + [SMALL_STATE(487)] = 1881, + [SMALL_STATE(488)] = 1955, + [SMALL_STATE(489)] = 2029, + [SMALL_STATE(490)] = 2103, + [SMALL_STATE(491)] = 2177, + [SMALL_STATE(492)] = 2251, + [SMALL_STATE(493)] = 2345, + [SMALL_STATE(494)] = 2419, + [SMALL_STATE(495)] = 2493, + [SMALL_STATE(496)] = 2567, + [SMALL_STATE(497)] = 2641, + [SMALL_STATE(498)] = 2735, + [SMALL_STATE(499)] = 2825, + [SMALL_STATE(500)] = 2899, + [SMALL_STATE(501)] = 2993, + [SMALL_STATE(502)] = 3069, + [SMALL_STATE(503)] = 3145, + [SMALL_STATE(504)] = 3223, + [SMALL_STATE(505)] = 3297, + [SMALL_STATE(506)] = 3373, + [SMALL_STATE(507)] = 3449, + [SMALL_STATE(508)] = 3523, + [SMALL_STATE(509)] = 3599, + [SMALL_STATE(510)] = 3673, + [SMALL_STATE(511)] = 3747, + [SMALL_STATE(512)] = 3821, + [SMALL_STATE(513)] = 3915, + [SMALL_STATE(514)] = 3989, + [SMALL_STATE(515)] = 4065, + [SMALL_STATE(516)] = 4159, + [SMALL_STATE(517)] = 4233, + [SMALL_STATE(518)] = 4307, + [SMALL_STATE(519)] = 4379, + [SMALL_STATE(520)] = 4453, + [SMALL_STATE(521)] = 4525, + [SMALL_STATE(522)] = 4597, + [SMALL_STATE(523)] = 4669, [SMALL_STATE(524)] = 4763, [SMALL_STATE(525)] = 4834, - [SMALL_STATE(526)] = 4907, + [SMALL_STATE(526)] = 4905, [SMALL_STATE(527)] = 4978, [SMALL_STATE(528)] = 5049, - [SMALL_STATE(529)] = 5120, - [SMALL_STATE(530)] = 5193, - [SMALL_STATE(531)] = 5266, + [SMALL_STATE(529)] = 5122, + [SMALL_STATE(530)] = 5195, + [SMALL_STATE(531)] = 5268, [SMALL_STATE(532)] = 5341, [SMALL_STATE(533)] = 5416, - [SMALL_STATE(534)] = 5487, - [SMALL_STATE(535)] = 5558, - [SMALL_STATE(536)] = 5629, - [SMALL_STATE(537)] = 5700, - [SMALL_STATE(538)] = 5771, - [SMALL_STATE(539)] = 5842, - [SMALL_STATE(540)] = 5913, - [SMALL_STATE(541)] = 5986, - [SMALL_STATE(542)] = 6057, - [SMALL_STATE(543)] = 6128, - [SMALL_STATE(544)] = 6199, - [SMALL_STATE(545)] = 6270, - [SMALL_STATE(546)] = 6341, - [SMALL_STATE(547)] = 6412, - [SMALL_STATE(548)] = 6483, - [SMALL_STATE(549)] = 6554, - [SMALL_STATE(550)] = 6627, - [SMALL_STATE(551)] = 6704, - [SMALL_STATE(552)] = 6775, - [SMALL_STATE(553)] = 6846, - [SMALL_STATE(554)] = 6923, - [SMALL_STATE(555)] = 6994, - [SMALL_STATE(556)] = 7065, - [SMALL_STATE(557)] = 7136, - [SMALL_STATE(558)] = 7207, - [SMALL_STATE(559)] = 7278, - [SMALL_STATE(560)] = 7351, - [SMALL_STATE(561)] = 7422, - [SMALL_STATE(562)] = 7493, - [SMALL_STATE(563)] = 7564, - [SMALL_STATE(564)] = 7635, - [SMALL_STATE(565)] = 7706, - [SMALL_STATE(566)] = 7777, - [SMALL_STATE(567)] = 7848, - [SMALL_STATE(568)] = 7919, - [SMALL_STATE(569)] = 7990, - [SMALL_STATE(570)] = 8061, - [SMALL_STATE(571)] = 8132, - [SMALL_STATE(572)] = 8203, - [SMALL_STATE(573)] = 8274, - [SMALL_STATE(574)] = 8349, - [SMALL_STATE(575)] = 8420, - [SMALL_STATE(576)] = 8495, - [SMALL_STATE(577)] = 8566, - [SMALL_STATE(578)] = 8637, - [SMALL_STATE(579)] = 8708, - [SMALL_STATE(580)] = 8779, - [SMALL_STATE(581)] = 8850, - [SMALL_STATE(582)] = 8921, - [SMALL_STATE(583)] = 8992, - [SMALL_STATE(584)] = 9063, - [SMALL_STATE(585)] = 9138, - [SMALL_STATE(586)] = 9213, - [SMALL_STATE(587)] = 9284, - [SMALL_STATE(588)] = 9355, - [SMALL_STATE(589)] = 9430, - [SMALL_STATE(590)] = 9501, - [SMALL_STATE(591)] = 9576, - [SMALL_STATE(592)] = 9647, - [SMALL_STATE(593)] = 9722, - [SMALL_STATE(594)] = 9797, - [SMALL_STATE(595)] = 9870, - [SMALL_STATE(596)] = 9941, - [SMALL_STATE(597)] = 10014, - [SMALL_STATE(598)] = 10085, - [SMALL_STATE(599)] = 10156, - [SMALL_STATE(600)] = 10227, + [SMALL_STATE(534)] = 5489, + [SMALL_STATE(535)] = 5562, + [SMALL_STATE(536)] = 5635, + [SMALL_STATE(537)] = 5708, + [SMALL_STATE(538)] = 5779, + [SMALL_STATE(539)] = 5850, + [SMALL_STATE(540)] = 5923, + [SMALL_STATE(541)] = 5998, + [SMALL_STATE(542)] = 6069, + [SMALL_STATE(543)] = 6140, + [SMALL_STATE(544)] = 6211, + [SMALL_STATE(545)] = 6282, + [SMALL_STATE(546)] = 6357, + [SMALL_STATE(547)] = 6432, + [SMALL_STATE(548)] = 6507, + [SMALL_STATE(549)] = 6578, + [SMALL_STATE(550)] = 6649, + [SMALL_STATE(551)] = 6720, + [SMALL_STATE(552)] = 6791, + [SMALL_STATE(553)] = 6866, + [SMALL_STATE(554)] = 6941, + [SMALL_STATE(555)] = 7016, + [SMALL_STATE(556)] = 7091, + [SMALL_STATE(557)] = 7162, + [SMALL_STATE(558)] = 7233, + [SMALL_STATE(559)] = 7304, + [SMALL_STATE(560)] = 7375, + [SMALL_STATE(561)] = 7446, + [SMALL_STATE(562)] = 7519, + [SMALL_STATE(563)] = 7590, + [SMALL_STATE(564)] = 7663, + [SMALL_STATE(565)] = 7738, + [SMALL_STATE(566)] = 7809, + [SMALL_STATE(567)] = 7880, + [SMALL_STATE(568)] = 7951, + [SMALL_STATE(569)] = 8022, + [SMALL_STATE(570)] = 8093, + [SMALL_STATE(571)] = 8164, + [SMALL_STATE(572)] = 8235, + [SMALL_STATE(573)] = 8306, + [SMALL_STATE(574)] = 8377, + [SMALL_STATE(575)] = 8448, + [SMALL_STATE(576)] = 8521, + [SMALL_STATE(577)] = 8592, + [SMALL_STATE(578)] = 8663, + [SMALL_STATE(579)] = 8734, + [SMALL_STATE(580)] = 8805, + [SMALL_STATE(581)] = 8876, + [SMALL_STATE(582)] = 8947, + [SMALL_STATE(583)] = 9018, + [SMALL_STATE(584)] = 9093, + [SMALL_STATE(585)] = 9164, + [SMALL_STATE(586)] = 9235, + [SMALL_STATE(587)] = 9306, + [SMALL_STATE(588)] = 9377, + [SMALL_STATE(589)] = 9448, + [SMALL_STATE(590)] = 9519, + [SMALL_STATE(591)] = 9590, + [SMALL_STATE(592)] = 9661, + [SMALL_STATE(593)] = 9732, + [SMALL_STATE(594)] = 9803, + [SMALL_STATE(595)] = 9874, + [SMALL_STATE(596)] = 9945, + [SMALL_STATE(597)] = 10016, + [SMALL_STATE(598)] = 10087, + [SMALL_STATE(599)] = 10158, + [SMALL_STATE(600)] = 10229, [SMALL_STATE(601)] = 10300, [SMALL_STATE(602)] = 10371, [SMALL_STATE(603)] = 10442, @@ -142701,292 +144625,292 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(608)] = 10797, [SMALL_STATE(609)] = 10868, [SMALL_STATE(610)] = 10939, - [SMALL_STATE(611)] = 11016, - [SMALL_STATE(612)] = 11087, - [SMALL_STATE(613)] = 11160, - [SMALL_STATE(614)] = 11235, - [SMALL_STATE(615)] = 11308, - [SMALL_STATE(616)] = 11381, - [SMALL_STATE(617)] = 11454, - [SMALL_STATE(618)] = 11529, - [SMALL_STATE(619)] = 11602, - [SMALL_STATE(620)] = 11675, - [SMALL_STATE(621)] = 11748, - [SMALL_STATE(622)] = 11821, - [SMALL_STATE(623)] = 11892, - [SMALL_STATE(624)] = 11967, - [SMALL_STATE(625)] = 12038, - [SMALL_STATE(626)] = 12109, - [SMALL_STATE(627)] = 12180, - [SMALL_STATE(628)] = 12251, - [SMALL_STATE(629)] = 12322, - [SMALL_STATE(630)] = 12393, - [SMALL_STATE(631)] = 12464, - [SMALL_STATE(632)] = 12537, - [SMALL_STATE(633)] = 12608, - [SMALL_STATE(634)] = 12679, - [SMALL_STATE(635)] = 12754, - [SMALL_STATE(636)] = 12825, - [SMALL_STATE(637)] = 12896, - [SMALL_STATE(638)] = 12967, - [SMALL_STATE(639)] = 13038, - [SMALL_STATE(640)] = 13109, - [SMALL_STATE(641)] = 13180, - [SMALL_STATE(642)] = 13251, - [SMALL_STATE(643)] = 13322, - [SMALL_STATE(644)] = 13393, - [SMALL_STATE(645)] = 13466, - [SMALL_STATE(646)] = 13539, - [SMALL_STATE(647)] = 13610, - [SMALL_STATE(648)] = 13681, - [SMALL_STATE(649)] = 13752, - [SMALL_STATE(650)] = 13823, - [SMALL_STATE(651)] = 13894, - [SMALL_STATE(652)] = 13967, - [SMALL_STATE(653)] = 14038, - [SMALL_STATE(654)] = 14109, - [SMALL_STATE(655)] = 14180, - [SMALL_STATE(656)] = 14251, - [SMALL_STATE(657)] = 14322, - [SMALL_STATE(658)] = 14393, - [SMALL_STATE(659)] = 14464, - [SMALL_STATE(660)] = 14537, - [SMALL_STATE(661)] = 14608, - [SMALL_STATE(662)] = 14679, - [SMALL_STATE(663)] = 14752, - [SMALL_STATE(664)] = 14823, + [SMALL_STATE(611)] = 11010, + [SMALL_STATE(612)] = 11081, + [SMALL_STATE(613)] = 11152, + [SMALL_STATE(614)] = 11223, + [SMALL_STATE(615)] = 11294, + [SMALL_STATE(616)] = 11365, + [SMALL_STATE(617)] = 11436, + [SMALL_STATE(618)] = 11513, + [SMALL_STATE(619)] = 11584, + [SMALL_STATE(620)] = 11655, + [SMALL_STATE(621)] = 11726, + [SMALL_STATE(622)] = 11797, + [SMALL_STATE(623)] = 11868, + [SMALL_STATE(624)] = 11939, + [SMALL_STATE(625)] = 12010, + [SMALL_STATE(626)] = 12081, + [SMALL_STATE(627)] = 12152, + [SMALL_STATE(628)] = 12229, + [SMALL_STATE(629)] = 12300, + [SMALL_STATE(630)] = 12371, + [SMALL_STATE(631)] = 12442, + [SMALL_STATE(632)] = 12513, + [SMALL_STATE(633)] = 12584, + [SMALL_STATE(634)] = 12655, + [SMALL_STATE(635)] = 12726, + [SMALL_STATE(636)] = 12797, + [SMALL_STATE(637)] = 12868, + [SMALL_STATE(638)] = 12939, + [SMALL_STATE(639)] = 13010, + [SMALL_STATE(640)] = 13081, + [SMALL_STATE(641)] = 13152, + [SMALL_STATE(642)] = 13223, + [SMALL_STATE(643)] = 13294, + [SMALL_STATE(644)] = 13365, + [SMALL_STATE(645)] = 13436, + [SMALL_STATE(646)] = 13513, + [SMALL_STATE(647)] = 13584, + [SMALL_STATE(648)] = 13655, + [SMALL_STATE(649)] = 13726, + [SMALL_STATE(650)] = 13797, + [SMALL_STATE(651)] = 13872, + [SMALL_STATE(652)] = 13943, + [SMALL_STATE(653)] = 14016, + [SMALL_STATE(654)] = 14089, + [SMALL_STATE(655)] = 14162, + [SMALL_STATE(656)] = 14235, + [SMALL_STATE(657)] = 14310, + [SMALL_STATE(658)] = 14383, + [SMALL_STATE(659)] = 14456, + [SMALL_STATE(660)] = 14529, + [SMALL_STATE(661)] = 14604, + [SMALL_STATE(662)] = 14677, + [SMALL_STATE(663)] = 14750, + [SMALL_STATE(664)] = 14821, [SMALL_STATE(665)] = 14894, - [SMALL_STATE(666)] = 14967, - [SMALL_STATE(667)] = 15040, - [SMALL_STATE(668)] = 15113, - [SMALL_STATE(669)] = 15185, - [SMALL_STATE(670)] = 15255, - [SMALL_STATE(671)] = 15327, - [SMALL_STATE(672)] = 15397, - [SMALL_STATE(673)] = 15467, - [SMALL_STATE(674)] = 15537, - [SMALL_STATE(675)] = 15607, - [SMALL_STATE(676)] = 15677, - [SMALL_STATE(677)] = 15747, - [SMALL_STATE(678)] = 15817, - [SMALL_STATE(679)] = 15887, - [SMALL_STATE(680)] = 15957, - [SMALL_STATE(681)] = 16027, - [SMALL_STATE(682)] = 16097, - [SMALL_STATE(683)] = 16167, - [SMALL_STATE(684)] = 16237, - [SMALL_STATE(685)] = 16327, - [SMALL_STATE(686)] = 16399, - [SMALL_STATE(687)] = 16471, - [SMALL_STATE(688)] = 16543, - [SMALL_STATE(689)] = 16613, - [SMALL_STATE(690)] = 16685, - [SMALL_STATE(691)] = 16757, - [SMALL_STATE(692)] = 16827, - [SMALL_STATE(693)] = 16899, - [SMALL_STATE(694)] = 16969, - [SMALL_STATE(695)] = 17041, - [SMALL_STATE(696)] = 17113, - [SMALL_STATE(697)] = 17185, - [SMALL_STATE(698)] = 17255, - [SMALL_STATE(699)] = 17327, - [SMALL_STATE(700)] = 17397, - [SMALL_STATE(701)] = 17467, - [SMALL_STATE(702)] = 17537, - [SMALL_STATE(703)] = 17607, - [SMALL_STATE(704)] = 17677, - [SMALL_STATE(705)] = 17747, - [SMALL_STATE(706)] = 17821, - [SMALL_STATE(707)] = 17891, - [SMALL_STATE(708)] = 17961, - [SMALL_STATE(709)] = 18031, - [SMALL_STATE(710)] = 18105, - [SMALL_STATE(711)] = 18175, - [SMALL_STATE(712)] = 18249, - [SMALL_STATE(713)] = 18319, - [SMALL_STATE(714)] = 18389, - [SMALL_STATE(715)] = 18459, - [SMALL_STATE(716)] = 18529, - [SMALL_STATE(717)] = 18599, - [SMALL_STATE(718)] = 18669, - [SMALL_STATE(719)] = 18759, - [SMALL_STATE(720)] = 18829, - [SMALL_STATE(721)] = 18899, - [SMALL_STATE(722)] = 18969, - [SMALL_STATE(723)] = 19039, - [SMALL_STATE(724)] = 19109, - [SMALL_STATE(725)] = 19179, - [SMALL_STATE(726)] = 19249, - [SMALL_STATE(727)] = 19319, - [SMALL_STATE(728)] = 19389, - [SMALL_STATE(729)] = 19461, - [SMALL_STATE(730)] = 19533, - [SMALL_STATE(731)] = 19605, - [SMALL_STATE(732)] = 19675, - [SMALL_STATE(733)] = 19745, - [SMALL_STATE(734)] = 19835, - [SMALL_STATE(735)] = 19905, - [SMALL_STATE(736)] = 19975, - [SMALL_STATE(737)] = 20045, - [SMALL_STATE(738)] = 20115, - [SMALL_STATE(739)] = 20185, - [SMALL_STATE(740)] = 20255, - [SMALL_STATE(741)] = 20325, - [SMALL_STATE(742)] = 20395, - [SMALL_STATE(743)] = 20465, - [SMALL_STATE(744)] = 20537, - [SMALL_STATE(745)] = 20609, - [SMALL_STATE(746)] = 20681, - [SMALL_STATE(747)] = 20753, - [SMALL_STATE(748)] = 20825, - [SMALL_STATE(749)] = 20897, - [SMALL_STATE(750)] = 20969, - [SMALL_STATE(751)] = 21039, - [SMALL_STATE(752)] = 21109, - [SMALL_STATE(753)] = 21181, - [SMALL_STATE(754)] = 21251, - [SMALL_STATE(755)] = 21321, - [SMALL_STATE(756)] = 21391, - [SMALL_STATE(757)] = 21461, - [SMALL_STATE(758)] = 21531, - [SMALL_STATE(759)] = 21605, - [SMALL_STATE(760)] = 21677, - [SMALL_STATE(761)] = 21749, - [SMALL_STATE(762)] = 21819, - [SMALL_STATE(763)] = 21891, - [SMALL_STATE(764)] = 21961, - [SMALL_STATE(765)] = 22031, - [SMALL_STATE(766)] = 22103, - [SMALL_STATE(767)] = 22173, - [SMALL_STATE(768)] = 22243, - [SMALL_STATE(769)] = 22313, - [SMALL_STATE(770)] = 22385, - [SMALL_STATE(771)] = 22455, - [SMALL_STATE(772)] = 22527, - [SMALL_STATE(773)] = 22597, - [SMALL_STATE(774)] = 22669, - [SMALL_STATE(775)] = 22739, - [SMALL_STATE(776)] = 22809, - [SMALL_STATE(777)] = 22879, - [SMALL_STATE(778)] = 22949, - [SMALL_STATE(779)] = 23019, - [SMALL_STATE(780)] = 23089, - [SMALL_STATE(781)] = 23161, - [SMALL_STATE(782)] = 23231, - [SMALL_STATE(783)] = 23301, - [SMALL_STATE(784)] = 23373, - [SMALL_STATE(785)] = 23445, - [SMALL_STATE(786)] = 23517, - [SMALL_STATE(787)] = 23587, - [SMALL_STATE(788)] = 23657, - [SMALL_STATE(789)] = 23729, - [SMALL_STATE(790)] = 23801, - [SMALL_STATE(791)] = 23873, - [SMALL_STATE(792)] = 23945, - [SMALL_STATE(793)] = 24017, - [SMALL_STATE(794)] = 24087, - [SMALL_STATE(795)] = 24157, - [SMALL_STATE(796)] = 24227, - [SMALL_STATE(797)] = 24301, - [SMALL_STATE(798)] = 24375, - [SMALL_STATE(799)] = 24449, - [SMALL_STATE(800)] = 24521, - [SMALL_STATE(801)] = 24591, - [SMALL_STATE(802)] = 24663, - [SMALL_STATE(803)] = 24735, - [SMALL_STATE(804)] = 24805, - [SMALL_STATE(805)] = 24877, - [SMALL_STATE(806)] = 24949, - [SMALL_STATE(807)] = 25019, - [SMALL_STATE(808)] = 25089, - [SMALL_STATE(809)] = 25159, - [SMALL_STATE(810)] = 25231, - [SMALL_STATE(811)] = 25303, - [SMALL_STATE(812)] = 25375, - [SMALL_STATE(813)] = 25447, - [SMALL_STATE(814)] = 25521, - [SMALL_STATE(815)] = 25593, - [SMALL_STATE(816)] = 25683, - [SMALL_STATE(817)] = 25755, - [SMALL_STATE(818)] = 25827, - [SMALL_STATE(819)] = 25899, - [SMALL_STATE(820)] = 25971, - [SMALL_STATE(821)] = 26043, - [SMALL_STATE(822)] = 26115, - [SMALL_STATE(823)] = 26187, - [SMALL_STATE(824)] = 26259, - [SMALL_STATE(825)] = 26329, - [SMALL_STATE(826)] = 26401, - [SMALL_STATE(827)] = 26471, - [SMALL_STATE(828)] = 26543, - [SMALL_STATE(829)] = 26617, - [SMALL_STATE(830)] = 26689, - [SMALL_STATE(831)] = 26759, - [SMALL_STATE(832)] = 26831, - [SMALL_STATE(833)] = 26903, - [SMALL_STATE(834)] = 26975, - [SMALL_STATE(835)] = 27047, - [SMALL_STATE(836)] = 27119, - [SMALL_STATE(837)] = 27189, - [SMALL_STATE(838)] = 27259, - [SMALL_STATE(839)] = 27331, - [SMALL_STATE(840)] = 27403, - [SMALL_STATE(841)] = 27475, - [SMALL_STATE(842)] = 27545, - [SMALL_STATE(843)] = 27617, - [SMALL_STATE(844)] = 27689, - [SMALL_STATE(845)] = 27761, - [SMALL_STATE(846)] = 27833, - [SMALL_STATE(847)] = 27905, - [SMALL_STATE(848)] = 27979, - [SMALL_STATE(849)] = 28051, - [SMALL_STATE(850)] = 28123, - [SMALL_STATE(851)] = 28195, - [SMALL_STATE(852)] = 28267, - [SMALL_STATE(853)] = 28339, - [SMALL_STATE(854)] = 28411, - [SMALL_STATE(855)] = 28481, - [SMALL_STATE(856)] = 28553, - [SMALL_STATE(857)] = 28625, - [SMALL_STATE(858)] = 28697, - [SMALL_STATE(859)] = 28767, - [SMALL_STATE(860)] = 28839, - [SMALL_STATE(861)] = 28911, - [SMALL_STATE(862)] = 28983, - [SMALL_STATE(863)] = 29055, - [SMALL_STATE(864)] = 29127, - [SMALL_STATE(865)] = 29197, - [SMALL_STATE(866)] = 29269, - [SMALL_STATE(867)] = 29341, - [SMALL_STATE(868)] = 29413, - [SMALL_STATE(869)] = 29483, - [SMALL_STATE(870)] = 29555, - [SMALL_STATE(871)] = 29627, - [SMALL_STATE(872)] = 29699, - [SMALL_STATE(873)] = 29771, - [SMALL_STATE(874)] = 29845, - [SMALL_STATE(875)] = 29917, - [SMALL_STATE(876)] = 30007, - [SMALL_STATE(877)] = 30081, - [SMALL_STATE(878)] = 30153, - [SMALL_STATE(879)] = 30225, - [SMALL_STATE(880)] = 30297, - [SMALL_STATE(881)] = 30369, - [SMALL_STATE(882)] = 30441, - [SMALL_STATE(883)] = 30513, - [SMALL_STATE(884)] = 30583, - [SMALL_STATE(885)] = 30655, - [SMALL_STATE(886)] = 30727, - [SMALL_STATE(887)] = 30799, - [SMALL_STATE(888)] = 30871, - [SMALL_STATE(889)] = 30942, - [SMALL_STATE(890)] = 31013, - [SMALL_STATE(891)] = 31084, - [SMALL_STATE(892)] = 31155, - [SMALL_STATE(893)] = 31226, - [SMALL_STATE(894)] = 31297, + [SMALL_STATE(666)] = 14965, + [SMALL_STATE(667)] = 15036, + [SMALL_STATE(668)] = 15109, + [SMALL_STATE(669)] = 15180, + [SMALL_STATE(670)] = 15253, + [SMALL_STATE(671)] = 15326, + [SMALL_STATE(672)] = 15398, + [SMALL_STATE(673)] = 15470, + [SMALL_STATE(674)] = 15540, + [SMALL_STATE(675)] = 15610, + [SMALL_STATE(676)] = 15680, + [SMALL_STATE(677)] = 15750, + [SMALL_STATE(678)] = 15822, + [SMALL_STATE(679)] = 15894, + [SMALL_STATE(680)] = 15984, + [SMALL_STATE(681)] = 16054, + [SMALL_STATE(682)] = 16124, + [SMALL_STATE(683)] = 16198, + [SMALL_STATE(684)] = 16268, + [SMALL_STATE(685)] = 16338, + [SMALL_STATE(686)] = 16408, + [SMALL_STATE(687)] = 16482, + [SMALL_STATE(688)] = 16552, + [SMALL_STATE(689)] = 16622, + [SMALL_STATE(690)] = 16692, + [SMALL_STATE(691)] = 16762, + [SMALL_STATE(692)] = 16832, + [SMALL_STATE(693)] = 16902, + [SMALL_STATE(694)] = 16972, + [SMALL_STATE(695)] = 17042, + [SMALL_STATE(696)] = 17112, + [SMALL_STATE(697)] = 17182, + [SMALL_STATE(698)] = 17252, + [SMALL_STATE(699)] = 17322, + [SMALL_STATE(700)] = 17394, + [SMALL_STATE(701)] = 17464, + [SMALL_STATE(702)] = 17534, + [SMALL_STATE(703)] = 17606, + [SMALL_STATE(704)] = 17676, + [SMALL_STATE(705)] = 17746, + [SMALL_STATE(706)] = 17820, + [SMALL_STATE(707)] = 17890, + [SMALL_STATE(708)] = 17960, + [SMALL_STATE(709)] = 18030, + [SMALL_STATE(710)] = 18100, + [SMALL_STATE(711)] = 18170, + [SMALL_STATE(712)] = 18240, + [SMALL_STATE(713)] = 18310, + [SMALL_STATE(714)] = 18380, + [SMALL_STATE(715)] = 18454, + [SMALL_STATE(716)] = 18544, + [SMALL_STATE(717)] = 18614, + [SMALL_STATE(718)] = 18684, + [SMALL_STATE(719)] = 18758, + [SMALL_STATE(720)] = 18848, + [SMALL_STATE(721)] = 18922, + [SMALL_STATE(722)] = 18996, + [SMALL_STATE(723)] = 19066, + [SMALL_STATE(724)] = 19136, + [SMALL_STATE(725)] = 19210, + [SMALL_STATE(726)] = 19280, + [SMALL_STATE(727)] = 19350, + [SMALL_STATE(728)] = 19420, + [SMALL_STATE(729)] = 19490, + [SMALL_STATE(730)] = 19562, + [SMALL_STATE(731)] = 19634, + [SMALL_STATE(732)] = 19704, + [SMALL_STATE(733)] = 19774, + [SMALL_STATE(734)] = 19844, + [SMALL_STATE(735)] = 19914, + [SMALL_STATE(736)] = 19986, + [SMALL_STATE(737)] = 20058, + [SMALL_STATE(738)] = 20130, + [SMALL_STATE(739)] = 20202, + [SMALL_STATE(740)] = 20274, + [SMALL_STATE(741)] = 20346, + [SMALL_STATE(742)] = 20418, + [SMALL_STATE(743)] = 20490, + [SMALL_STATE(744)] = 20562, + [SMALL_STATE(745)] = 20634, + [SMALL_STATE(746)] = 20706, + [SMALL_STATE(747)] = 20778, + [SMALL_STATE(748)] = 20850, + [SMALL_STATE(749)] = 20922, + [SMALL_STATE(750)] = 20994, + [SMALL_STATE(751)] = 21066, + [SMALL_STATE(752)] = 21136, + [SMALL_STATE(753)] = 21206, + [SMALL_STATE(754)] = 21276, + [SMALL_STATE(755)] = 21348, + [SMALL_STATE(756)] = 21418, + [SMALL_STATE(757)] = 21490, + [SMALL_STATE(758)] = 21560, + [SMALL_STATE(759)] = 21630, + [SMALL_STATE(760)] = 21700, + [SMALL_STATE(761)] = 21770, + [SMALL_STATE(762)] = 21840, + [SMALL_STATE(763)] = 21910, + [SMALL_STATE(764)] = 21980, + [SMALL_STATE(765)] = 22052, + [SMALL_STATE(766)] = 22124, + [SMALL_STATE(767)] = 22194, + [SMALL_STATE(768)] = 22266, + [SMALL_STATE(769)] = 22338, + [SMALL_STATE(770)] = 22410, + [SMALL_STATE(771)] = 22482, + [SMALL_STATE(772)] = 22554, + [SMALL_STATE(773)] = 22626, + [SMALL_STATE(774)] = 22698, + [SMALL_STATE(775)] = 22770, + [SMALL_STATE(776)] = 22842, + [SMALL_STATE(777)] = 22914, + [SMALL_STATE(778)] = 22986, + [SMALL_STATE(779)] = 23058, + [SMALL_STATE(780)] = 23130, + [SMALL_STATE(781)] = 23202, + [SMALL_STATE(782)] = 23274, + [SMALL_STATE(783)] = 23346, + [SMALL_STATE(784)] = 23418, + [SMALL_STATE(785)] = 23490, + [SMALL_STATE(786)] = 23562, + [SMALL_STATE(787)] = 23634, + [SMALL_STATE(788)] = 23706, + [SMALL_STATE(789)] = 23796, + [SMALL_STATE(790)] = 23868, + [SMALL_STATE(791)] = 23938, + [SMALL_STATE(792)] = 24010, + [SMALL_STATE(793)] = 24082, + [SMALL_STATE(794)] = 24154, + [SMALL_STATE(795)] = 24226, + [SMALL_STATE(796)] = 24296, + [SMALL_STATE(797)] = 24368, + [SMALL_STATE(798)] = 24438, + [SMALL_STATE(799)] = 24508, + [SMALL_STATE(800)] = 24580, + [SMALL_STATE(801)] = 24650, + [SMALL_STATE(802)] = 24722, + [SMALL_STATE(803)] = 24794, + [SMALL_STATE(804)] = 24866, + [SMALL_STATE(805)] = 24936, + [SMALL_STATE(806)] = 25006, + [SMALL_STATE(807)] = 25078, + [SMALL_STATE(808)] = 25148, + [SMALL_STATE(809)] = 25220, + [SMALL_STATE(810)] = 25292, + [SMALL_STATE(811)] = 25364, + [SMALL_STATE(812)] = 25438, + [SMALL_STATE(813)] = 25512, + [SMALL_STATE(814)] = 25586, + [SMALL_STATE(815)] = 25656, + [SMALL_STATE(816)] = 25726, + [SMALL_STATE(817)] = 25796, + [SMALL_STATE(818)] = 25866, + [SMALL_STATE(819)] = 25938, + [SMALL_STATE(820)] = 26008, + [SMALL_STATE(821)] = 26078, + [SMALL_STATE(822)] = 26148, + [SMALL_STATE(823)] = 26218, + [SMALL_STATE(824)] = 26288, + [SMALL_STATE(825)] = 26358, + [SMALL_STATE(826)] = 26428, + [SMALL_STATE(827)] = 26498, + [SMALL_STATE(828)] = 26570, + [SMALL_STATE(829)] = 26642, + [SMALL_STATE(830)] = 26714, + [SMALL_STATE(831)] = 26786, + [SMALL_STATE(832)] = 26858, + [SMALL_STATE(833)] = 26928, + [SMALL_STATE(834)] = 27018, + [SMALL_STATE(835)] = 27090, + [SMALL_STATE(836)] = 27160, + [SMALL_STATE(837)] = 27232, + [SMALL_STATE(838)] = 27304, + [SMALL_STATE(839)] = 27376, + [SMALL_STATE(840)] = 27448, + [SMALL_STATE(841)] = 27520, + [SMALL_STATE(842)] = 27592, + [SMALL_STATE(843)] = 27664, + [SMALL_STATE(844)] = 27736, + [SMALL_STATE(845)] = 27806, + [SMALL_STATE(846)] = 27878, + [SMALL_STATE(847)] = 27950, + [SMALL_STATE(848)] = 28022, + [SMALL_STATE(849)] = 28094, + [SMALL_STATE(850)] = 28166, + [SMALL_STATE(851)] = 28236, + [SMALL_STATE(852)] = 28308, + [SMALL_STATE(853)] = 28380, + [SMALL_STATE(854)] = 28452, + [SMALL_STATE(855)] = 28524, + [SMALL_STATE(856)] = 28596, + [SMALL_STATE(857)] = 28668, + [SMALL_STATE(858)] = 28740, + [SMALL_STATE(859)] = 28812, + [SMALL_STATE(860)] = 28884, + [SMALL_STATE(861)] = 28956, + [SMALL_STATE(862)] = 29026, + [SMALL_STATE(863)] = 29098, + [SMALL_STATE(864)] = 29168, + [SMALL_STATE(865)] = 29238, + [SMALL_STATE(866)] = 29308, + [SMALL_STATE(867)] = 29378, + [SMALL_STATE(868)] = 29448, + [SMALL_STATE(869)] = 29522, + [SMALL_STATE(870)] = 29594, + [SMALL_STATE(871)] = 29666, + [SMALL_STATE(872)] = 29736, + [SMALL_STATE(873)] = 29808, + [SMALL_STATE(874)] = 29880, + [SMALL_STATE(875)] = 29950, + [SMALL_STATE(876)] = 30020, + [SMALL_STATE(877)] = 30092, + [SMALL_STATE(878)] = 30164, + [SMALL_STATE(879)] = 30236, + [SMALL_STATE(880)] = 30306, + [SMALL_STATE(881)] = 30376, + [SMALL_STATE(882)] = 30446, + [SMALL_STATE(883)] = 30516, + [SMALL_STATE(884)] = 30586, + [SMALL_STATE(885)] = 30656, + [SMALL_STATE(886)] = 30726, + [SMALL_STATE(887)] = 30796, + [SMALL_STATE(888)] = 30868, + [SMALL_STATE(889)] = 30940, + [SMALL_STATE(890)] = 31010, + [SMALL_STATE(891)] = 31082, + [SMALL_STATE(892)] = 31154, + [SMALL_STATE(893)] = 31224, + [SMALL_STATE(894)] = 31296, [SMALL_STATE(895)] = 31368, - [SMALL_STATE(896)] = 31439, + [SMALL_STATE(896)] = 31440, [SMALL_STATE(897)] = 31510, [SMALL_STATE(898)] = 31581, [SMALL_STATE(899)] = 31652, @@ -143013,15 +144937,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(920)] = 33143, [SMALL_STATE(921)] = 33214, [SMALL_STATE(922)] = 33285, - [SMALL_STATE(923)] = 33356, - [SMALL_STATE(924)] = 33427, - [SMALL_STATE(925)] = 33498, - [SMALL_STATE(926)] = 33569, - [SMALL_STATE(927)] = 33640, - [SMALL_STATE(928)] = 33711, - [SMALL_STATE(929)] = 33782, - [SMALL_STATE(930)] = 33853, - [SMALL_STATE(931)] = 33924, + [SMALL_STATE(923)] = 33372, + [SMALL_STATE(924)] = 33443, + [SMALL_STATE(925)] = 33514, + [SMALL_STATE(926)] = 33585, + [SMALL_STATE(927)] = 33656, + [SMALL_STATE(928)] = 33727, + [SMALL_STATE(929)] = 33798, + [SMALL_STATE(930)] = 33869, + [SMALL_STATE(931)] = 33940, [SMALL_STATE(932)] = 34011, [SMALL_STATE(933)] = 34082, [SMALL_STATE(934)] = 34153, @@ -143029,15 +144953,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(936)] = 34295, [SMALL_STATE(937)] = 34366, [SMALL_STATE(938)] = 34437, - [SMALL_STATE(939)] = 34508, - [SMALL_STATE(940)] = 34579, - [SMALL_STATE(941)] = 34650, - [SMALL_STATE(942)] = 34721, - [SMALL_STATE(943)] = 34792, - [SMALL_STATE(944)] = 34863, - [SMALL_STATE(945)] = 34934, - [SMALL_STATE(946)] = 35005, - [SMALL_STATE(947)] = 35076, + [SMALL_STATE(939)] = 34524, + [SMALL_STATE(940)] = 34595, + [SMALL_STATE(941)] = 34666, + [SMALL_STATE(942)] = 34737, + [SMALL_STATE(943)] = 34808, + [SMALL_STATE(944)] = 34879, + [SMALL_STATE(945)] = 34950, + [SMALL_STATE(946)] = 35021, + [SMALL_STATE(947)] = 35092, [SMALL_STATE(948)] = 35163, [SMALL_STATE(949)] = 35234, [SMALL_STATE(950)] = 35305, @@ -143074,3969 +144998,4065 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(981)] = 37506, [SMALL_STATE(982)] = 37577, [SMALL_STATE(983)] = 37648, - [SMALL_STATE(984)] = 37735, - [SMALL_STATE(985)] = 37806, - [SMALL_STATE(986)] = 37877, - [SMALL_STATE(987)] = 37948, - [SMALL_STATE(988)] = 38019, - [SMALL_STATE(989)] = 38090, - [SMALL_STATE(990)] = 38160, - [SMALL_STATE(991)] = 38250, - [SMALL_STATE(992)] = 38320, - [SMALL_STATE(993)] = 38390, - [SMALL_STATE(994)] = 38460, - [SMALL_STATE(995)] = 38530, - [SMALL_STATE(996)] = 38604, - [SMALL_STATE(997)] = 38674, - [SMALL_STATE(998)] = 38744, - [SMALL_STATE(999)] = 38819, - [SMALL_STATE(1000)] = 38886, - [SMALL_STATE(1001)] = 38953, - [SMALL_STATE(1002)] = 39020, - [SMALL_STATE(1003)] = 39087, - [SMALL_STATE(1004)] = 39154, - [SMALL_STATE(1005)] = 39221, - [SMALL_STATE(1006)] = 39288, - [SMALL_STATE(1007)] = 39363, - [SMALL_STATE(1008)] = 39438, - [SMALL_STATE(1009)] = 39513, - [SMALL_STATE(1010)] = 39589, - [SMALL_STATE(1011)] = 39663, - [SMALL_STATE(1012)] = 39737, - [SMALL_STATE(1013)] = 39811, - [SMALL_STATE(1014)] = 39879, - [SMALL_STATE(1015)] = 39953, - [SMALL_STATE(1016)] = 40025, - [SMALL_STATE(1017)] = 40101, - [SMALL_STATE(1018)] = 40179, - [SMALL_STATE(1019)] = 40255, - [SMALL_STATE(1020)] = 40333, - [SMALL_STATE(1021)] = 40409, - [SMALL_STATE(1022)] = 40477, - [SMALL_STATE(1023)] = 40553, - [SMALL_STATE(1024)] = 40629, - [SMALL_STATE(1025)] = 40705, - [SMALL_STATE(1026)] = 40781, - [SMALL_STATE(1027)] = 40849, - [SMALL_STATE(1028)] = 40923, - [SMALL_STATE(1029)] = 40999, - [SMALL_STATE(1030)] = 41075, - [SMALL_STATE(1031)] = 41151, - [SMALL_STATE(1032)] = 41223, - [SMALL_STATE(1033)] = 41291, - [SMALL_STATE(1034)] = 41365, - [SMALL_STATE(1035)] = 41433, - [SMALL_STATE(1036)] = 41509, - [SMALL_STATE(1037)] = 41583, - [SMALL_STATE(1038)] = 41651, - [SMALL_STATE(1039)] = 41727, - [SMALL_STATE(1040)] = 41795, - [SMALL_STATE(1041)] = 41871, - [SMALL_STATE(1042)] = 41947, - [SMALL_STATE(1043)] = 42023, - [SMALL_STATE(1044)] = 42097, - [SMALL_STATE(1045)] = 42172, - [SMALL_STATE(1046)] = 42247, - [SMALL_STATE(1047)] = 42320, - [SMALL_STATE(1048)] = 42391, - [SMALL_STATE(1049)] = 42462, - [SMALL_STATE(1050)] = 42535, - [SMALL_STATE(1051)] = 42610, - [SMALL_STATE(1052)] = 42683, - [SMALL_STATE(1053)] = 42759, - [SMALL_STATE(1054)] = 42831, - [SMALL_STATE(1055)] = 42907, - [SMALL_STATE(1056)] = 42979, - [SMALL_STATE(1057)] = 43051, - [SMALL_STATE(1058)] = 43122, - [SMALL_STATE(1059)] = 43197, - [SMALL_STATE(1060)] = 43272, - [SMALL_STATE(1061)] = 43343, - [SMALL_STATE(1062)] = 43414, - [SMALL_STATE(1063)] = 43485, - [SMALL_STATE(1064)] = 43558, - [SMALL_STATE(1065)] = 43626, - [SMALL_STATE(1066)] = 43698, - [SMALL_STATE(1067)] = 43768, - [SMALL_STATE(1068)] = 43822, - [SMALL_STATE(1069)] = 43890, - [SMALL_STATE(1070)] = 43960, - [SMALL_STATE(1071)] = 44014, - [SMALL_STATE(1072)] = 44074, - [SMALL_STATE(1073)] = 44133, - [SMALL_STATE(1074)] = 44192, - [SMALL_STATE(1075)] = 44245, - [SMALL_STATE(1076)] = 44302, - [SMALL_STATE(1077)] = 44355, - [SMALL_STATE(1078)] = 44414, - [SMALL_STATE(1079)] = 44479, - [SMALL_STATE(1080)] = 44538, - [SMALL_STATE(1081)] = 44591, - [SMALL_STATE(1082)] = 44644, - [SMALL_STATE(1083)] = 44701, - [SMALL_STATE(1084)] = 44758, - [SMALL_STATE(1085)] = 44812, - [SMALL_STATE(1086)] = 44866, - [SMALL_STATE(1087)] = 44920, - [SMALL_STATE(1088)] = 44974, - [SMALL_STATE(1089)] = 45028, - [SMALL_STATE(1090)] = 45128, - [SMALL_STATE(1091)] = 45182, - [SMALL_STATE(1092)] = 45282, - [SMALL_STATE(1093)] = 45336, - [SMALL_STATE(1094)] = 45390, - [SMALL_STATE(1095)] = 45490, - [SMALL_STATE(1096)] = 45546, - [SMALL_STATE(1097)] = 45602, - [SMALL_STATE(1098)] = 45656, - [SMALL_STATE(1099)] = 45710, - [SMALL_STATE(1100)] = 45764, - [SMALL_STATE(1101)] = 45818, - [SMALL_STATE(1102)] = 45872, - [SMALL_STATE(1103)] = 45926, - [SMALL_STATE(1104)] = 45980, - [SMALL_STATE(1105)] = 46034, - [SMALL_STATE(1106)] = 46088, - [SMALL_STATE(1107)] = 46142, - [SMALL_STATE(1108)] = 46196, - [SMALL_STATE(1109)] = 46250, - [SMALL_STATE(1110)] = 46304, - [SMALL_STATE(1111)] = 46358, - [SMALL_STATE(1112)] = 46424, - [SMALL_STATE(1113)] = 46480, - [SMALL_STATE(1114)] = 46548, - [SMALL_STATE(1115)] = 46602, - [SMALL_STATE(1116)] = 46656, - [SMALL_STATE(1117)] = 46752, - [SMALL_STATE(1118)] = 46836, - [SMALL_STATE(1119)] = 46906, - [SMALL_STATE(1120)] = 46980, - [SMALL_STATE(1121)] = 47072, - [SMALL_STATE(1122)] = 47172, - [SMALL_STATE(1123)] = 47226, - [SMALL_STATE(1124)] = 47326, - [SMALL_STATE(1125)] = 47416, - [SMALL_STATE(1126)] = 47504, - [SMALL_STATE(1127)] = 47572, - [SMALL_STATE(1128)] = 47648, - [SMALL_STATE(1129)] = 47702, - [SMALL_STATE(1130)] = 47756, - [SMALL_STATE(1131)] = 47850, - [SMALL_STATE(1132)] = 47904, - [SMALL_STATE(1133)] = 47958, - [SMALL_STATE(1134)] = 48012, - [SMALL_STATE(1135)] = 48066, - [SMALL_STATE(1136)] = 48158, - [SMALL_STATE(1137)] = 48212, - [SMALL_STATE(1138)] = 48266, - [SMALL_STATE(1139)] = 48320, - [SMALL_STATE(1140)] = 48374, - [SMALL_STATE(1141)] = 48428, - [SMALL_STATE(1142)] = 48482, - [SMALL_STATE(1143)] = 48536, - [SMALL_STATE(1144)] = 48636, - [SMALL_STATE(1145)] = 48690, - [SMALL_STATE(1146)] = 48790, - [SMALL_STATE(1147)] = 48844, - [SMALL_STATE(1148)] = 48898, - [SMALL_STATE(1149)] = 48998, - [SMALL_STATE(1150)] = 49052, - [SMALL_STATE(1151)] = 49152, - [SMALL_STATE(1152)] = 49206, - [SMALL_STATE(1153)] = 49260, - [SMALL_STATE(1154)] = 49314, - [SMALL_STATE(1155)] = 49368, - [SMALL_STATE(1156)] = 49438, - [SMALL_STATE(1157)] = 49492, - [SMALL_STATE(1158)] = 49546, - [SMALL_STATE(1159)] = 49600, - [SMALL_STATE(1160)] = 49654, - [SMALL_STATE(1161)] = 49708, - [SMALL_STATE(1162)] = 49762, - [SMALL_STATE(1163)] = 49862, - [SMALL_STATE(1164)] = 49916, - [SMALL_STATE(1165)] = 49970, - [SMALL_STATE(1166)] = 50024, - [SMALL_STATE(1167)] = 50078, - [SMALL_STATE(1168)] = 50158, - [SMALL_STATE(1169)] = 50258, - [SMALL_STATE(1170)] = 50312, - [SMALL_STATE(1171)] = 50412, - [SMALL_STATE(1172)] = 50466, - [SMALL_STATE(1173)] = 50520, - [SMALL_STATE(1174)] = 50580, - [SMALL_STATE(1175)] = 50634, - [SMALL_STATE(1176)] = 50734, - [SMALL_STATE(1177)] = 50788, - [SMALL_STATE(1178)] = 50842, - [SMALL_STATE(1179)] = 50941, - [SMALL_STATE(1180)] = 51042, - [SMALL_STATE(1181)] = 51141, - [SMALL_STATE(1182)] = 51244, - [SMALL_STATE(1183)] = 51343, - [SMALL_STATE(1184)] = 51396, - [SMALL_STATE(1185)] = 51495, - [SMALL_STATE(1186)] = 51594, - [SMALL_STATE(1187)] = 51673, - [SMALL_STATE(1188)] = 51776, - [SMALL_STATE(1189)] = 51879, - [SMALL_STATE(1190)] = 51948, - [SMALL_STATE(1191)] = 52039, - [SMALL_STATE(1192)] = 52132, - [SMALL_STATE(1193)] = 52207, - [SMALL_STATE(1194)] = 52294, - [SMALL_STATE(1195)] = 52383, - [SMALL_STATE(1196)] = 52474, - [SMALL_STATE(1197)] = 52547, - [SMALL_STATE(1198)] = 52616, - [SMALL_STATE(1199)] = 52699, - [SMALL_STATE(1200)] = 52794, - [SMALL_STATE(1201)] = 52893, - [SMALL_STATE(1202)] = 52992, - [SMALL_STATE(1203)] = 53047, - [SMALL_STATE(1204)] = 53150, - [SMALL_STATE(1205)] = 53253, - [SMALL_STATE(1206)] = 53356, - [SMALL_STATE(1207)] = 53459, - [SMALL_STATE(1208)] = 53512, - [SMALL_STATE(1209)] = 53569, - [SMALL_STATE(1210)] = 53632, - [SMALL_STATE(1211)] = 53735, - [SMALL_STATE(1212)] = 53838, - [SMALL_STATE(1213)] = 53937, - [SMALL_STATE(1214)] = 54036, - [SMALL_STATE(1215)] = 54135, - [SMALL_STATE(1216)] = 54234, - [SMALL_STATE(1217)] = 54337, - [SMALL_STATE(1218)] = 54440, - [SMALL_STATE(1219)] = 54539, - [SMALL_STATE(1220)] = 54594, - [SMALL_STATE(1221)] = 54649, - [SMALL_STATE(1222)] = 54748, - [SMALL_STATE(1223)] = 54851, - [SMALL_STATE(1224)] = 54906, - [SMALL_STATE(1225)] = 55009, - [SMALL_STATE(1226)] = 55108, - [SMALL_STATE(1227)] = 55211, - [SMALL_STATE(1228)] = 55314, - [SMALL_STATE(1229)] = 55417, - [SMALL_STATE(1230)] = 55472, - [SMALL_STATE(1231)] = 55575, - [SMALL_STATE(1232)] = 55674, - [SMALL_STATE(1233)] = 55729, - [SMALL_STATE(1234)] = 55832, - [SMALL_STATE(1235)] = 55887, - [SMALL_STATE(1236)] = 55986, - [SMALL_STATE(1237)] = 56045, - [SMALL_STATE(1238)] = 56144, - [SMALL_STATE(1239)] = 56243, - [SMALL_STATE(1240)] = 56300, - [SMALL_STATE(1241)] = 56399, - [SMALL_STATE(1242)] = 56502, - [SMALL_STATE(1243)] = 56601, - [SMALL_STATE(1244)] = 56700, - [SMALL_STATE(1245)] = 56795, - [SMALL_STATE(1246)] = 56878, - [SMALL_STATE(1247)] = 56947, - [SMALL_STATE(1248)] = 57020, - [SMALL_STATE(1249)] = 57111, - [SMALL_STATE(1250)] = 57200, - [SMALL_STATE(1251)] = 57287, - [SMALL_STATE(1252)] = 57362, - [SMALL_STATE(1253)] = 57455, - [SMALL_STATE(1254)] = 57546, - [SMALL_STATE(1255)] = 57615, - [SMALL_STATE(1256)] = 57694, - [SMALL_STATE(1257)] = 57793, - [SMALL_STATE(1258)] = 57892, - [SMALL_STATE(1259)] = 57947, - [SMALL_STATE(1260)] = 58046, - [SMALL_STATE(1261)] = 58145, - [SMALL_STATE(1262)] = 58244, - [SMALL_STATE(1263)] = 58346, - [SMALL_STATE(1264)] = 58398, - [SMALL_STATE(1265)] = 58450, - [SMALL_STATE(1266)] = 58552, - [SMALL_STATE(1267)] = 58654, - [SMALL_STATE(1268)] = 58706, - [SMALL_STATE(1269)] = 58758, - [SMALL_STATE(1270)] = 58856, - [SMALL_STATE(1271)] = 58908, - [SMALL_STATE(1272)] = 58966, - [SMALL_STATE(1273)] = 59068, - [SMALL_STATE(1274)] = 59120, - [SMALL_STATE(1275)] = 59222, - [SMALL_STATE(1276)] = 59274, - [SMALL_STATE(1277)] = 59326, - [SMALL_STATE(1278)] = 59378, - [SMALL_STATE(1279)] = 59430, - [SMALL_STATE(1280)] = 59532, - [SMALL_STATE(1281)] = 59586, - [SMALL_STATE(1282)] = 59638, - [SMALL_STATE(1283)] = 59740, - [SMALL_STATE(1284)] = 59792, - [SMALL_STATE(1285)] = 59894, - [SMALL_STATE(1286)] = 59996, - [SMALL_STATE(1287)] = 60048, - [SMALL_STATE(1288)] = 60150, - [SMALL_STATE(1289)] = 60206, - [SMALL_STATE(1290)] = 60258, - [SMALL_STATE(1291)] = 60310, - [SMALL_STATE(1292)] = 60362, - [SMALL_STATE(1293)] = 60420, - [SMALL_STATE(1294)] = 60472, - [SMALL_STATE(1295)] = 60524, - [SMALL_STATE(1296)] = 60626, - [SMALL_STATE(1297)] = 60678, - [SMALL_STATE(1298)] = 60736, - [SMALL_STATE(1299)] = 60788, - [SMALL_STATE(1300)] = 60890, - [SMALL_STATE(1301)] = 60992, - [SMALL_STATE(1302)] = 61094, - [SMALL_STATE(1303)] = 61146, - [SMALL_STATE(1304)] = 61198, - [SMALL_STATE(1305)] = 61300, - [SMALL_STATE(1306)] = 61352, - [SMALL_STATE(1307)] = 61450, - [SMALL_STATE(1308)] = 61552, - [SMALL_STATE(1309)] = 61604, - [SMALL_STATE(1310)] = 61656, - [SMALL_STATE(1311)] = 61708, - [SMALL_STATE(1312)] = 61810, - [SMALL_STATE(1313)] = 61862, - [SMALL_STATE(1314)] = 61914, - [SMALL_STATE(1315)] = 61968, - [SMALL_STATE(1316)] = 62070, - [SMALL_STATE(1317)] = 62172, - [SMALL_STATE(1318)] = 62228, - [SMALL_STATE(1319)] = 62284, - [SMALL_STATE(1320)] = 62340, - [SMALL_STATE(1321)] = 62442, - [SMALL_STATE(1322)] = 62544, - [SMALL_STATE(1323)] = 62598, - [SMALL_STATE(1324)] = 62656, - [SMALL_STATE(1325)] = 62758, - [SMALL_STATE(1326)] = 62810, - [SMALL_STATE(1327)] = 62912, - [SMALL_STATE(1328)] = 62968, - [SMALL_STATE(1329)] = 63020, - [SMALL_STATE(1330)] = 63122, - [SMALL_STATE(1331)] = 63224, - [SMALL_STATE(1332)] = 63276, - [SMALL_STATE(1333)] = 63378, - [SMALL_STATE(1334)] = 63480, - [SMALL_STATE(1335)] = 63532, - [SMALL_STATE(1336)] = 63586, - [SMALL_STATE(1337)] = 63642, - [SMALL_STATE(1338)] = 63694, - [SMALL_STATE(1339)] = 63746, - [SMALL_STATE(1340)] = 63802, - [SMALL_STATE(1341)] = 63904, - [SMALL_STATE(1342)] = 63956, - [SMALL_STATE(1343)] = 64008, - [SMALL_STATE(1344)] = 64060, - [SMALL_STATE(1345)] = 64112, - [SMALL_STATE(1346)] = 64210, - [SMALL_STATE(1347)] = 64262, - [SMALL_STATE(1348)] = 64314, - [SMALL_STATE(1349)] = 64370, - [SMALL_STATE(1350)] = 64472, - [SMALL_STATE(1351)] = 64528, - [SMALL_STATE(1352)] = 64584, - [SMALL_STATE(1353)] = 64640, - [SMALL_STATE(1354)] = 64696, - [SMALL_STATE(1355)] = 64748, - [SMALL_STATE(1356)] = 64850, - [SMALL_STATE(1357)] = 64906, - [SMALL_STATE(1358)] = 64962, - [SMALL_STATE(1359)] = 65014, - [SMALL_STATE(1360)] = 65066, - [SMALL_STATE(1361)] = 65118, - [SMALL_STATE(1362)] = 65176, - [SMALL_STATE(1363)] = 65228, - [SMALL_STATE(1364)] = 65280, - [SMALL_STATE(1365)] = 65332, - [SMALL_STATE(1366)] = 65434, - [SMALL_STATE(1367)] = 65486, - [SMALL_STATE(1368)] = 65538, - [SMALL_STATE(1369)] = 65590, - [SMALL_STATE(1370)] = 65642, - [SMALL_STATE(1371)] = 65744, - [SMALL_STATE(1372)] = 65796, - [SMALL_STATE(1373)] = 65898, - [SMALL_STATE(1374)] = 65995, - [SMALL_STATE(1375)] = 66092, - [SMALL_STATE(1376)] = 66181, - [SMALL_STATE(1377)] = 66278, - [SMALL_STATE(1378)] = 66375, - [SMALL_STATE(1379)] = 66452, - [SMALL_STATE(1380)] = 66551, - [SMALL_STATE(1381)] = 66648, - [SMALL_STATE(1382)] = 66747, - [SMALL_STATE(1383)] = 66846, - [SMALL_STATE(1384)] = 66943, - [SMALL_STATE(1385)] = 67040, - [SMALL_STATE(1386)] = 67133, - [SMALL_STATE(1387)] = 67230, - [SMALL_STATE(1388)] = 67327, - [SMALL_STATE(1389)] = 67424, - [SMALL_STATE(1390)] = 67521, - [SMALL_STATE(1391)] = 67620, - [SMALL_STATE(1392)] = 67687, - [SMALL_STATE(1393)] = 67774, - [SMALL_STATE(1394)] = 67855, - [SMALL_STATE(1395)] = 67944, - [SMALL_STATE(1396)] = 68011, - [SMALL_STATE(1397)] = 68102, - [SMALL_STATE(1398)] = 68173, - [SMALL_STATE(1399)] = 68270, - [SMALL_STATE(1400)] = 68367, - [SMALL_STATE(1401)] = 68440, - [SMALL_STATE(1402)] = 68539, - [SMALL_STATE(1403)] = 68594, - [SMALL_STATE(1404)] = 68679, - [SMALL_STATE(1405)] = 68776, - [SMALL_STATE(1406)] = 68831, - [SMALL_STATE(1407)] = 68928, - [SMALL_STATE(1408)] = 69025, - [SMALL_STATE(1409)] = 69122, - [SMALL_STATE(1410)] = 69219, - [SMALL_STATE(1411)] = 69316, - [SMALL_STATE(1412)] = 69413, - [SMALL_STATE(1413)] = 69468, - [SMALL_STATE(1414)] = 69564, - [SMALL_STATE(1415)] = 69636, - [SMALL_STATE(1416)] = 69732, - [SMALL_STATE(1417)] = 69824, - [SMALL_STATE(1418)] = 69904, - [SMALL_STATE(1419)] = 69970, - [SMALL_STATE(1420)] = 70026, - [SMALL_STATE(1421)] = 70082, - [SMALL_STATE(1422)] = 70180, - [SMALL_STATE(1423)] = 70276, - [SMALL_STATE(1424)] = 70346, - [SMALL_STATE(1425)] = 70402, - [SMALL_STATE(1426)] = 70490, - [SMALL_STATE(1427)] = 70586, - [SMALL_STATE(1428)] = 70672, - [SMALL_STATE(1429)] = 70768, - [SMALL_STATE(1430)] = 70864, - [SMALL_STATE(1431)] = 70960, - [SMALL_STATE(1432)] = 71056, - [SMALL_STATE(1433)] = 71152, - [SMALL_STATE(1434)] = 71248, - [SMALL_STATE(1435)] = 71344, - [SMALL_STATE(1436)] = 71400, - [SMALL_STATE(1437)] = 71496, - [SMALL_STATE(1438)] = 71592, - [SMALL_STATE(1439)] = 71688, - [SMALL_STATE(1440)] = 71784, - [SMALL_STATE(1441)] = 71868, - [SMALL_STATE(1442)] = 71964, - [SMALL_STATE(1443)] = 72060, - [SMALL_STATE(1444)] = 72156, - [SMALL_STATE(1445)] = 72252, - [SMALL_STATE(1446)] = 72328, - [SMALL_STATE(1447)] = 72424, - [SMALL_STATE(1448)] = 72490, - [SMALL_STATE(1449)] = 72578, - [SMALL_STATE(1450)] = 72668, - [SMALL_STATE(1451)] = 72761, - [SMALL_STATE(1452)] = 72854, - [SMALL_STATE(1453)] = 72949, - [SMALL_STATE(1454)] = 73044, - [SMALL_STATE(1455)] = 73139, - [SMALL_STATE(1456)] = 73194, - [SMALL_STATE(1457)] = 73249, - [SMALL_STATE(1458)] = 73304, - [SMALL_STATE(1459)] = 73399, - [SMALL_STATE(1460)] = 73494, - [SMALL_STATE(1461)] = 73589, - [SMALL_STATE(1462)] = 73644, - [SMALL_STATE(1463)] = 73695, - [SMALL_STATE(1464)] = 73746, - [SMALL_STATE(1465)] = 73841, - [SMALL_STATE(1466)] = 73928, - [SMALL_STATE(1467)] = 74015, - [SMALL_STATE(1468)] = 74102, - [SMALL_STATE(1469)] = 74189, - [SMALL_STATE(1470)] = 74276, - [SMALL_STATE(1471)] = 74363, - [SMALL_STATE(1472)] = 74448, - [SMALL_STATE(1473)] = 74535, - [SMALL_STATE(1474)] = 74622, - [SMALL_STATE(1475)] = 74709, - [SMALL_STATE(1476)] = 74796, - [SMALL_STATE(1477)] = 74883, - [SMALL_STATE(1478)] = 74970, - [SMALL_STATE(1479)] = 75057, - [SMALL_STATE(1480)] = 75144, - [SMALL_STATE(1481)] = 75231, - [SMALL_STATE(1482)] = 75318, - [SMALL_STATE(1483)] = 75405, - [SMALL_STATE(1484)] = 75492, - [SMALL_STATE(1485)] = 75579, - [SMALL_STATE(1486)] = 75666, - [SMALL_STATE(1487)] = 75753, - [SMALL_STATE(1488)] = 75840, - [SMALL_STATE(1489)] = 75927, - [SMALL_STATE(1490)] = 75993, - [SMALL_STATE(1491)] = 76065, - [SMALL_STATE(1492)] = 76131, - [SMALL_STATE(1493)] = 76192, - [SMALL_STATE(1494)] = 76255, - [SMALL_STATE(1495)] = 76318, - [SMALL_STATE(1496)] = 76383, - [SMALL_STATE(1497)] = 76446, - [SMALL_STATE(1498)] = 76511, - [SMALL_STATE(1499)] = 76576, - [SMALL_STATE(1500)] = 76639, - [SMALL_STATE(1501)] = 76702, - [SMALL_STATE(1502)] = 76765, - [SMALL_STATE(1503)] = 76830, - [SMALL_STATE(1504)] = 76893, - [SMALL_STATE(1505)] = 76958, - [SMALL_STATE(1506)] = 77023, - [SMALL_STATE(1507)] = 77088, - [SMALL_STATE(1508)] = 77146, - [SMALL_STATE(1509)] = 77204, - [SMALL_STATE(1510)] = 77262, - [SMALL_STATE(1511)] = 77320, - [SMALL_STATE(1512)] = 77378, - [SMALL_STATE(1513)] = 77436, - [SMALL_STATE(1514)] = 77496, - [SMALL_STATE(1515)] = 77554, - [SMALL_STATE(1516)] = 77609, - [SMALL_STATE(1517)] = 77666, - [SMALL_STATE(1518)] = 77733, - [SMALL_STATE(1519)] = 77787, - [SMALL_STATE(1520)] = 77841, - [SMALL_STATE(1521)] = 77903, - [SMALL_STATE(1522)] = 77955, - [SMALL_STATE(1523)] = 78007, - [SMALL_STATE(1524)] = 78059, - [SMALL_STATE(1525)] = 78109, - [SMALL_STATE(1526)] = 78163, - [SMALL_STATE(1527)] = 78225, - [SMALL_STATE(1528)] = 78281, - [SMALL_STATE(1529)] = 78328, - [SMALL_STATE(1530)] = 78375, - [SMALL_STATE(1531)] = 78408, - [SMALL_STATE(1532)] = 78455, - [SMALL_STATE(1533)] = 78502, - [SMALL_STATE(1534)] = 78549, - [SMALL_STATE(1535)] = 78582, - [SMALL_STATE(1536)] = 78619, - [SMALL_STATE(1537)] = 78666, - [SMALL_STATE(1538)] = 78713, - [SMALL_STATE(1539)] = 78743, - [SMALL_STATE(1540)] = 78773, - [SMALL_STATE(1541)] = 78803, - [SMALL_STATE(1542)] = 78833, - [SMALL_STATE(1543)] = 78863, - [SMALL_STATE(1544)] = 78893, - [SMALL_STATE(1545)] = 78923, - [SMALL_STATE(1546)] = 78953, - [SMALL_STATE(1547)] = 78983, - [SMALL_STATE(1548)] = 79013, - [SMALL_STATE(1549)] = 79043, - [SMALL_STATE(1550)] = 79073, - [SMALL_STATE(1551)] = 79103, - [SMALL_STATE(1552)] = 79133, - [SMALL_STATE(1553)] = 79163, - [SMALL_STATE(1554)] = 79193, - [SMALL_STATE(1555)] = 79223, - [SMALL_STATE(1556)] = 79253, - [SMALL_STATE(1557)] = 79283, - [SMALL_STATE(1558)] = 79313, - [SMALL_STATE(1559)] = 79343, - [SMALL_STATE(1560)] = 79373, - [SMALL_STATE(1561)] = 79403, - [SMALL_STATE(1562)] = 79433, - [SMALL_STATE(1563)] = 79463, - [SMALL_STATE(1564)] = 79493, - [SMALL_STATE(1565)] = 79525, - [SMALL_STATE(1566)] = 79555, - [SMALL_STATE(1567)] = 79585, - [SMALL_STATE(1568)] = 79619, - [SMALL_STATE(1569)] = 79655, - [SMALL_STATE(1570)] = 79685, - [SMALL_STATE(1571)] = 79715, - [SMALL_STATE(1572)] = 79745, - [SMALL_STATE(1573)] = 79775, - [SMALL_STATE(1574)] = 79805, - [SMALL_STATE(1575)] = 79835, - [SMALL_STATE(1576)] = 79865, - [SMALL_STATE(1577)] = 79895, - [SMALL_STATE(1578)] = 79925, - [SMALL_STATE(1579)] = 79955, - [SMALL_STATE(1580)] = 79985, - [SMALL_STATE(1581)] = 80036, - [SMALL_STATE(1582)] = 80085, - [SMALL_STATE(1583)] = 80114, - [SMALL_STATE(1584)] = 80163, - [SMALL_STATE(1585)] = 80208, - [SMALL_STATE(1586)] = 80257, - [SMALL_STATE(1587)] = 80290, - [SMALL_STATE(1588)] = 80339, - [SMALL_STATE(1589)] = 80386, - [SMALL_STATE(1590)] = 80437, - [SMALL_STATE(1591)] = 80484, - [SMALL_STATE(1592)] = 80512, - [SMALL_STATE(1593)] = 80554, - [SMALL_STATE(1594)] = 80602, - [SMALL_STATE(1595)] = 80644, - [SMALL_STATE(1596)] = 80672, - [SMALL_STATE(1597)] = 80720, - [SMALL_STATE(1598)] = 80762, - [SMALL_STATE(1599)] = 80804, - [SMALL_STATE(1600)] = 80846, - [SMALL_STATE(1601)] = 80894, - [SMALL_STATE(1602)] = 80942, - [SMALL_STATE(1603)] = 80988, - [SMALL_STATE(1604)] = 81030, - [SMALL_STATE(1605)] = 81072, - [SMALL_STATE(1606)] = 81114, - [SMALL_STATE(1607)] = 81156, - [SMALL_STATE(1608)] = 81198, - [SMALL_STATE(1609)] = 81240, - [SMALL_STATE(1610)] = 81282, - [SMALL_STATE(1611)] = 81330, - [SMALL_STATE(1612)] = 81372, - [SMALL_STATE(1613)] = 81414, - [SMALL_STATE(1614)] = 81442, - [SMALL_STATE(1615)] = 81484, - [SMALL_STATE(1616)] = 81526, - [SMALL_STATE(1617)] = 81568, - [SMALL_STATE(1618)] = 81614, - [SMALL_STATE(1619)] = 81656, - [SMALL_STATE(1620)] = 81698, - [SMALL_STATE(1621)] = 81746, - [SMALL_STATE(1622)] = 81788, - [SMALL_STATE(1623)] = 81830, - [SMALL_STATE(1624)] = 81872, - [SMALL_STATE(1625)] = 81920, - [SMALL_STATE(1626)] = 81948, - [SMALL_STATE(1627)] = 81976, - [SMALL_STATE(1628)] = 82018, - [SMALL_STATE(1629)] = 82060, - [SMALL_STATE(1630)] = 82088, - [SMALL_STATE(1631)] = 82115, - [SMALL_STATE(1632)] = 82154, - [SMALL_STATE(1633)] = 82181, - [SMALL_STATE(1634)] = 82220, - [SMALL_STATE(1635)] = 82247, - [SMALL_STATE(1636)] = 82286, - [SMALL_STATE(1637)] = 82325, - [SMALL_STATE(1638)] = 82352, - [SMALL_STATE(1639)] = 82391, - [SMALL_STATE(1640)] = 82430, - [SMALL_STATE(1641)] = 82457, - [SMALL_STATE(1642)] = 82484, - [SMALL_STATE(1643)] = 82523, - [SMALL_STATE(1644)] = 82550, - [SMALL_STATE(1645)] = 82589, - [SMALL_STATE(1646)] = 82616, - [SMALL_STATE(1647)] = 82643, - [SMALL_STATE(1648)] = 82682, - [SMALL_STATE(1649)] = 82721, - [SMALL_STATE(1650)] = 82748, - [SMALL_STATE(1651)] = 82787, - [SMALL_STATE(1652)] = 82826, - [SMALL_STATE(1653)] = 82865, - [SMALL_STATE(1654)] = 82892, - [SMALL_STATE(1655)] = 82931, - [SMALL_STATE(1656)] = 82970, - [SMALL_STATE(1657)] = 83009, - [SMALL_STATE(1658)] = 83048, - [SMALL_STATE(1659)] = 83087, - [SMALL_STATE(1660)] = 83128, - [SMALL_STATE(1661)] = 83169, - [SMALL_STATE(1662)] = 83210, - [SMALL_STATE(1663)] = 83251, - [SMALL_STATE(1664)] = 83292, - [SMALL_STATE(1665)] = 83330, - [SMALL_STATE(1666)] = 83368, - [SMALL_STATE(1667)] = 83406, - [SMALL_STATE(1668)] = 83444, - [SMALL_STATE(1669)] = 83482, - [SMALL_STATE(1670)] = 83520, - [SMALL_STATE(1671)] = 83558, - [SMALL_STATE(1672)] = 83594, - [SMALL_STATE(1673)] = 83633, - [SMALL_STATE(1674)] = 83672, - [SMALL_STATE(1675)] = 83711, - [SMALL_STATE(1676)] = 83744, - [SMALL_STATE(1677)] = 83783, - [SMALL_STATE(1678)] = 83819, - [SMALL_STATE(1679)] = 83855, - [SMALL_STATE(1680)] = 83891, - [SMALL_STATE(1681)] = 83927, - [SMALL_STATE(1682)] = 83963, - [SMALL_STATE(1683)] = 83999, - [SMALL_STATE(1684)] = 84035, - [SMALL_STATE(1685)] = 84071, - [SMALL_STATE(1686)] = 84104, - [SMALL_STATE(1687)] = 84137, - [SMALL_STATE(1688)] = 84170, - [SMALL_STATE(1689)] = 84203, - [SMALL_STATE(1690)] = 84236, - [SMALL_STATE(1691)] = 84269, - [SMALL_STATE(1692)] = 84302, - [SMALL_STATE(1693)] = 84335, - [SMALL_STATE(1694)] = 84368, - [SMALL_STATE(1695)] = 84401, - [SMALL_STATE(1696)] = 84434, - [SMALL_STATE(1697)] = 84467, - [SMALL_STATE(1698)] = 84500, - [SMALL_STATE(1699)] = 84533, - [SMALL_STATE(1700)] = 84566, - [SMALL_STATE(1701)] = 84595, - [SMALL_STATE(1702)] = 84628, - [SMALL_STATE(1703)] = 84661, - [SMALL_STATE(1704)] = 84694, - [SMALL_STATE(1705)] = 84727, - [SMALL_STATE(1706)] = 84760, - [SMALL_STATE(1707)] = 84791, - [SMALL_STATE(1708)] = 84822, - [SMALL_STATE(1709)] = 84856, - [SMALL_STATE(1710)] = 84890, - [SMALL_STATE(1711)] = 84919, - [SMALL_STATE(1712)] = 84948, - [SMALL_STATE(1713)] = 84969, - [SMALL_STATE(1714)] = 85000, - [SMALL_STATE(1715)] = 85029, - [SMALL_STATE(1716)] = 85058, - [SMALL_STATE(1717)] = 85087, - [SMALL_STATE(1718)] = 85106, - [SMALL_STATE(1719)] = 85125, - [SMALL_STATE(1720)] = 85154, - [SMALL_STATE(1721)] = 85173, - [SMALL_STATE(1722)] = 85202, - [SMALL_STATE(1723)] = 85231, - [SMALL_STATE(1724)] = 85260, - [SMALL_STATE(1725)] = 85289, - [SMALL_STATE(1726)] = 85318, - [SMALL_STATE(1727)] = 85347, - [SMALL_STATE(1728)] = 85366, - [SMALL_STATE(1729)] = 85395, - [SMALL_STATE(1730)] = 85414, - [SMALL_STATE(1731)] = 85443, - [SMALL_STATE(1732)] = 85472, - [SMALL_STATE(1733)] = 85503, - [SMALL_STATE(1734)] = 85532, - [SMALL_STATE(1735)] = 85561, - [SMALL_STATE(1736)] = 85590, - [SMALL_STATE(1737)] = 85619, - [SMALL_STATE(1738)] = 85638, - [SMALL_STATE(1739)] = 85667, - [SMALL_STATE(1740)] = 85692, - [SMALL_STATE(1741)] = 85723, - [SMALL_STATE(1742)] = 85746, - [SMALL_STATE(1743)] = 85771, - [SMALL_STATE(1744)] = 85792, - [SMALL_STATE(1745)] = 85823, - [SMALL_STATE(1746)] = 85849, - [SMALL_STATE(1747)] = 85873, - [SMALL_STATE(1748)] = 85899, - [SMALL_STATE(1749)] = 85925, - [SMALL_STATE(1750)] = 85951, - [SMALL_STATE(1751)] = 85969, - [SMALL_STATE(1752)] = 85995, - [SMALL_STATE(1753)] = 86013, - [SMALL_STATE(1754)] = 86039, - [SMALL_STATE(1755)] = 86065, - [SMALL_STATE(1756)] = 86083, - [SMALL_STATE(1757)] = 86109, - [SMALL_STATE(1758)] = 86135, - [SMALL_STATE(1759)] = 86155, - [SMALL_STATE(1760)] = 86181, - [SMALL_STATE(1761)] = 86207, - [SMALL_STATE(1762)] = 86225, - [SMALL_STATE(1763)] = 86247, - [SMALL_STATE(1764)] = 86273, - [SMALL_STATE(1765)] = 86299, - [SMALL_STATE(1766)] = 86325, - [SMALL_STATE(1767)] = 86343, - [SMALL_STATE(1768)] = 86369, - [SMALL_STATE(1769)] = 86387, - [SMALL_STATE(1770)] = 86413, - [SMALL_STATE(1771)] = 86431, - [SMALL_STATE(1772)] = 86457, - [SMALL_STATE(1773)] = 86475, - [SMALL_STATE(1774)] = 86493, - [SMALL_STATE(1775)] = 86517, - [SMALL_STATE(1776)] = 86535, - [SMALL_STATE(1777)] = 86553, - [SMALL_STATE(1778)] = 86579, - [SMALL_STATE(1779)] = 86605, - [SMALL_STATE(1780)] = 86623, - [SMALL_STATE(1781)] = 86649, - [SMALL_STATE(1782)] = 86669, - [SMALL_STATE(1783)] = 86687, - [SMALL_STATE(1784)] = 86705, - [SMALL_STATE(1785)] = 86731, - [SMALL_STATE(1786)] = 86757, - [SMALL_STATE(1787)] = 86785, - [SMALL_STATE(1788)] = 86813, - [SMALL_STATE(1789)] = 86839, - [SMALL_STATE(1790)] = 86865, - [SMALL_STATE(1791)] = 86891, - [SMALL_STATE(1792)] = 86917, - [SMALL_STATE(1793)] = 86943, - [SMALL_STATE(1794)] = 86961, - [SMALL_STATE(1795)] = 86987, - [SMALL_STATE(1796)] = 87011, - [SMALL_STATE(1797)] = 87036, - [SMALL_STATE(1798)] = 87057, - [SMALL_STATE(1799)] = 87082, - [SMALL_STATE(1800)] = 87107, - [SMALL_STATE(1801)] = 87124, - [SMALL_STATE(1802)] = 87149, - [SMALL_STATE(1803)] = 87174, - [SMALL_STATE(1804)] = 87191, - [SMALL_STATE(1805)] = 87216, - [SMALL_STATE(1806)] = 87241, - [SMALL_STATE(1807)] = 87258, - [SMALL_STATE(1808)] = 87275, - [SMALL_STATE(1809)] = 87292, - [SMALL_STATE(1810)] = 87309, - [SMALL_STATE(1811)] = 87334, - [SMALL_STATE(1812)] = 87351, - [SMALL_STATE(1813)] = 87368, - [SMALL_STATE(1814)] = 87393, - [SMALL_STATE(1815)] = 87418, - [SMALL_STATE(1816)] = 87435, - [SMALL_STATE(1817)] = 87460, - [SMALL_STATE(1818)] = 87477, - [SMALL_STATE(1819)] = 87498, - [SMALL_STATE(1820)] = 87523, - [SMALL_STATE(1821)] = 87548, - [SMALL_STATE(1822)] = 87567, - [SMALL_STATE(1823)] = 87592, - [SMALL_STATE(1824)] = 87609, - [SMALL_STATE(1825)] = 87634, - [SMALL_STATE(1826)] = 87659, - [SMALL_STATE(1827)] = 87676, - [SMALL_STATE(1828)] = 87695, - [SMALL_STATE(1829)] = 87712, - [SMALL_STATE(1830)] = 87737, - [SMALL_STATE(1831)] = 87762, - [SMALL_STATE(1832)] = 87787, - [SMALL_STATE(1833)] = 87812, - [SMALL_STATE(1834)] = 87837, - [SMALL_STATE(1835)] = 87862, - [SMALL_STATE(1836)] = 87879, - [SMALL_STATE(1837)] = 87896, - [SMALL_STATE(1838)] = 87915, - [SMALL_STATE(1839)] = 87932, - [SMALL_STATE(1840)] = 87957, - [SMALL_STATE(1841)] = 87974, - [SMALL_STATE(1842)] = 87991, - [SMALL_STATE(1843)] = 88008, - [SMALL_STATE(1844)] = 88025, - [SMALL_STATE(1845)] = 88042, - [SMALL_STATE(1846)] = 88059, - [SMALL_STATE(1847)] = 88084, - [SMALL_STATE(1848)] = 88101, - [SMALL_STATE(1849)] = 88118, - [SMALL_STATE(1850)] = 88143, - [SMALL_STATE(1851)] = 88168, - [SMALL_STATE(1852)] = 88185, - [SMALL_STATE(1853)] = 88210, - [SMALL_STATE(1854)] = 88227, - [SMALL_STATE(1855)] = 88244, - [SMALL_STATE(1856)] = 88269, - [SMALL_STATE(1857)] = 88286, - [SMALL_STATE(1858)] = 88303, - [SMALL_STATE(1859)] = 88320, - [SMALL_STATE(1860)] = 88337, - [SMALL_STATE(1861)] = 88358, - [SMALL_STATE(1862)] = 88375, - [SMALL_STATE(1863)] = 88400, - [SMALL_STATE(1864)] = 88417, - [SMALL_STATE(1865)] = 88442, - [SMALL_STATE(1866)] = 88463, - [SMALL_STATE(1867)] = 88488, - [SMALL_STATE(1868)] = 88505, - [SMALL_STATE(1869)] = 88522, - [SMALL_STATE(1870)] = 88539, - [SMALL_STATE(1871)] = 88556, - [SMALL_STATE(1872)] = 88581, - [SMALL_STATE(1873)] = 88606, - [SMALL_STATE(1874)] = 88628, - [SMALL_STATE(1875)] = 88650, - [SMALL_STATE(1876)] = 88672, - [SMALL_STATE(1877)] = 88694, - [SMALL_STATE(1878)] = 88716, - [SMALL_STATE(1879)] = 88736, - [SMALL_STATE(1880)] = 88756, - [SMALL_STATE(1881)] = 88776, - [SMALL_STATE(1882)] = 88798, - [SMALL_STATE(1883)] = 88818, - [SMALL_STATE(1884)] = 88834, - [SMALL_STATE(1885)] = 88852, - [SMALL_STATE(1886)] = 88870, - [SMALL_STATE(1887)] = 88892, - [SMALL_STATE(1888)] = 88912, - [SMALL_STATE(1889)] = 88932, - [SMALL_STATE(1890)] = 88952, - [SMALL_STATE(1891)] = 88972, - [SMALL_STATE(1892)] = 88990, - [SMALL_STATE(1893)] = 89008, - [SMALL_STATE(1894)] = 89024, - [SMALL_STATE(1895)] = 89044, - [SMALL_STATE(1896)] = 89062, - [SMALL_STATE(1897)] = 89082, - [SMALL_STATE(1898)] = 89102, - [SMALL_STATE(1899)] = 89124, - [SMALL_STATE(1900)] = 89144, - [SMALL_STATE(1901)] = 89166, - [SMALL_STATE(1902)] = 89186, - [SMALL_STATE(1903)] = 89206, - [SMALL_STATE(1904)] = 89228, - [SMALL_STATE(1905)] = 89248, - [SMALL_STATE(1906)] = 89268, - [SMALL_STATE(1907)] = 89290, - [SMALL_STATE(1908)] = 89312, - [SMALL_STATE(1909)] = 89332, - [SMALL_STATE(1910)] = 89352, - [SMALL_STATE(1911)] = 89372, - [SMALL_STATE(1912)] = 89394, - [SMALL_STATE(1913)] = 89416, - [SMALL_STATE(1914)] = 89434, - [SMALL_STATE(1915)] = 89454, - [SMALL_STATE(1916)] = 89474, - [SMALL_STATE(1917)] = 89494, - [SMALL_STATE(1918)] = 89516, - [SMALL_STATE(1919)] = 89536, - [SMALL_STATE(1920)] = 89558, - [SMALL_STATE(1921)] = 89578, - [SMALL_STATE(1922)] = 89598, - [SMALL_STATE(1923)] = 89620, - [SMALL_STATE(1924)] = 89636, - [SMALL_STATE(1925)] = 89658, - [SMALL_STATE(1926)] = 89678, - [SMALL_STATE(1927)] = 89698, - [SMALL_STATE(1928)] = 89720, - [SMALL_STATE(1929)] = 89740, - [SMALL_STATE(1930)] = 89760, - [SMALL_STATE(1931)] = 89780, - [SMALL_STATE(1932)] = 89796, - [SMALL_STATE(1933)] = 89818, - [SMALL_STATE(1934)] = 89840, - [SMALL_STATE(1935)] = 89862, - [SMALL_STATE(1936)] = 89882, - [SMALL_STATE(1937)] = 89902, - [SMALL_STATE(1938)] = 89922, - [SMALL_STATE(1939)] = 89942, - [SMALL_STATE(1940)] = 89962, - [SMALL_STATE(1941)] = 89982, - [SMALL_STATE(1942)] = 90004, - [SMALL_STATE(1943)] = 90024, - [SMALL_STATE(1944)] = 90044, - [SMALL_STATE(1945)] = 90066, - [SMALL_STATE(1946)] = 90086, - [SMALL_STATE(1947)] = 90106, - [SMALL_STATE(1948)] = 90128, - [SMALL_STATE(1949)] = 90150, - [SMALL_STATE(1950)] = 90172, - [SMALL_STATE(1951)] = 90194, - [SMALL_STATE(1952)] = 90216, - [SMALL_STATE(1953)] = 90236, - [SMALL_STATE(1954)] = 90256, - [SMALL_STATE(1955)] = 90276, - [SMALL_STATE(1956)] = 90296, - [SMALL_STATE(1957)] = 90318, - [SMALL_STATE(1958)] = 90334, - [SMALL_STATE(1959)] = 90356, - [SMALL_STATE(1960)] = 90376, - [SMALL_STATE(1961)] = 90396, - [SMALL_STATE(1962)] = 90412, - [SMALL_STATE(1963)] = 90428, - [SMALL_STATE(1964)] = 90446, - [SMALL_STATE(1965)] = 90468, - [SMALL_STATE(1966)] = 90484, - [SMALL_STATE(1967)] = 90500, - [SMALL_STATE(1968)] = 90520, - [SMALL_STATE(1969)] = 90540, - [SMALL_STATE(1970)] = 90556, - [SMALL_STATE(1971)] = 90578, - [SMALL_STATE(1972)] = 90598, - [SMALL_STATE(1973)] = 90620, - [SMALL_STATE(1974)] = 90642, - [SMALL_STATE(1975)] = 90664, - [SMALL_STATE(1976)] = 90686, - [SMALL_STATE(1977)] = 90708, - [SMALL_STATE(1978)] = 90730, - [SMALL_STATE(1979)] = 90752, - [SMALL_STATE(1980)] = 90774, - [SMALL_STATE(1981)] = 90796, - [SMALL_STATE(1982)] = 90816, - [SMALL_STATE(1983)] = 90838, - [SMALL_STATE(1984)] = 90858, - [SMALL_STATE(1985)] = 90880, - [SMALL_STATE(1986)] = 90896, - [SMALL_STATE(1987)] = 90918, - [SMALL_STATE(1988)] = 90940, - [SMALL_STATE(1989)] = 90962, - [SMALL_STATE(1990)] = 90984, - [SMALL_STATE(1991)] = 91006, - [SMALL_STATE(1992)] = 91026, - [SMALL_STATE(1993)] = 91048, - [SMALL_STATE(1994)] = 91068, - [SMALL_STATE(1995)] = 91088, - [SMALL_STATE(1996)] = 91104, - [SMALL_STATE(1997)] = 91126, - [SMALL_STATE(1998)] = 91148, - [SMALL_STATE(1999)] = 91170, - [SMALL_STATE(2000)] = 91192, - [SMALL_STATE(2001)] = 91214, - [SMALL_STATE(2002)] = 91236, - [SMALL_STATE(2003)] = 91258, - [SMALL_STATE(2004)] = 91280, - [SMALL_STATE(2005)] = 91302, - [SMALL_STATE(2006)] = 91321, - [SMALL_STATE(2007)] = 91340, - [SMALL_STATE(2008)] = 91359, - [SMALL_STATE(2009)] = 91378, - [SMALL_STATE(2010)] = 91395, - [SMALL_STATE(2011)] = 91414, - [SMALL_STATE(2012)] = 91433, - [SMALL_STATE(2013)] = 91452, - [SMALL_STATE(2014)] = 91471, - [SMALL_STATE(2015)] = 91488, - [SMALL_STATE(2016)] = 91505, - [SMALL_STATE(2017)] = 91524, - [SMALL_STATE(2018)] = 91541, - [SMALL_STATE(2019)] = 91560, - [SMALL_STATE(2020)] = 91579, - [SMALL_STATE(2021)] = 91598, - [SMALL_STATE(2022)] = 91617, - [SMALL_STATE(2023)] = 91636, - [SMALL_STATE(2024)] = 91655, - [SMALL_STATE(2025)] = 91672, - [SMALL_STATE(2026)] = 91691, - [SMALL_STATE(2027)] = 91710, - [SMALL_STATE(2028)] = 91725, - [SMALL_STATE(2029)] = 91742, - [SMALL_STATE(2030)] = 91761, - [SMALL_STATE(2031)] = 91780, - [SMALL_STATE(2032)] = 91795, - [SMALL_STATE(2033)] = 91814, - [SMALL_STATE(2034)] = 91833, - [SMALL_STATE(2035)] = 91852, - [SMALL_STATE(2036)] = 91871, - [SMALL_STATE(2037)] = 91890, - [SMALL_STATE(2038)] = 91909, - [SMALL_STATE(2039)] = 91928, - [SMALL_STATE(2040)] = 91945, - [SMALL_STATE(2041)] = 91962, - [SMALL_STATE(2042)] = 91977, - [SMALL_STATE(2043)] = 91996, - [SMALL_STATE(2044)] = 92015, - [SMALL_STATE(2045)] = 92030, - [SMALL_STATE(2046)] = 92049, - [SMALL_STATE(2047)] = 92068, - [SMALL_STATE(2048)] = 92087, - [SMALL_STATE(2049)] = 92106, - [SMALL_STATE(2050)] = 92125, - [SMALL_STATE(2051)] = 92144, - [SMALL_STATE(2052)] = 92159, - [SMALL_STATE(2053)] = 92178, - [SMALL_STATE(2054)] = 92197, - [SMALL_STATE(2055)] = 92214, - [SMALL_STATE(2056)] = 92233, - [SMALL_STATE(2057)] = 92248, - [SMALL_STATE(2058)] = 92265, - [SMALL_STATE(2059)] = 92284, - [SMALL_STATE(2060)] = 92303, - [SMALL_STATE(2061)] = 92322, - [SMALL_STATE(2062)] = 92341, - [SMALL_STATE(2063)] = 92356, - [SMALL_STATE(2064)] = 92375, - [SMALL_STATE(2065)] = 92394, - [SMALL_STATE(2066)] = 92413, - [SMALL_STATE(2067)] = 92432, - [SMALL_STATE(2068)] = 92451, - [SMALL_STATE(2069)] = 92470, - [SMALL_STATE(2070)] = 92485, - [SMALL_STATE(2071)] = 92504, - [SMALL_STATE(2072)] = 92523, - [SMALL_STATE(2073)] = 92542, - [SMALL_STATE(2074)] = 92561, - [SMALL_STATE(2075)] = 92580, - [SMALL_STATE(2076)] = 92599, - [SMALL_STATE(2077)] = 92616, - [SMALL_STATE(2078)] = 92635, - [SMALL_STATE(2079)] = 92654, - [SMALL_STATE(2080)] = 92673, - [SMALL_STATE(2081)] = 92692, - [SMALL_STATE(2082)] = 92711, - [SMALL_STATE(2083)] = 92728, - [SMALL_STATE(2084)] = 92743, - [SMALL_STATE(2085)] = 92762, - [SMALL_STATE(2086)] = 92779, - [SMALL_STATE(2087)] = 92796, - [SMALL_STATE(2088)] = 92815, - [SMALL_STATE(2089)] = 92834, - [SMALL_STATE(2090)] = 92853, - [SMALL_STATE(2091)] = 92872, - [SMALL_STATE(2092)] = 92891, - [SMALL_STATE(2093)] = 92906, - [SMALL_STATE(2094)] = 92925, - [SMALL_STATE(2095)] = 92944, - [SMALL_STATE(2096)] = 92961, - [SMALL_STATE(2097)] = 92980, - [SMALL_STATE(2098)] = 92999, - [SMALL_STATE(2099)] = 93018, - [SMALL_STATE(2100)] = 93033, - [SMALL_STATE(2101)] = 93052, - [SMALL_STATE(2102)] = 93069, - [SMALL_STATE(2103)] = 93088, - [SMALL_STATE(2104)] = 93107, - [SMALL_STATE(2105)] = 93126, - [SMALL_STATE(2106)] = 93145, - [SMALL_STATE(2107)] = 93162, - [SMALL_STATE(2108)] = 93181, - [SMALL_STATE(2109)] = 93196, - [SMALL_STATE(2110)] = 93215, - [SMALL_STATE(2111)] = 93234, - [SMALL_STATE(2112)] = 93251, - [SMALL_STATE(2113)] = 93270, - [SMALL_STATE(2114)] = 93289, - [SMALL_STATE(2115)] = 93308, - [SMALL_STATE(2116)] = 93323, - [SMALL_STATE(2117)] = 93338, - [SMALL_STATE(2118)] = 93353, - [SMALL_STATE(2119)] = 93368, - [SMALL_STATE(2120)] = 93385, - [SMALL_STATE(2121)] = 93404, - [SMALL_STATE(2122)] = 93423, - [SMALL_STATE(2123)] = 93440, - [SMALL_STATE(2124)] = 93455, - [SMALL_STATE(2125)] = 93474, - [SMALL_STATE(2126)] = 93493, - [SMALL_STATE(2127)] = 93512, - [SMALL_STATE(2128)] = 93531, - [SMALL_STATE(2129)] = 93546, - [SMALL_STATE(2130)] = 93563, - [SMALL_STATE(2131)] = 93580, - [SMALL_STATE(2132)] = 93599, - [SMALL_STATE(2133)] = 93616, - [SMALL_STATE(2134)] = 93635, - [SMALL_STATE(2135)] = 93654, - [SMALL_STATE(2136)] = 93671, - [SMALL_STATE(2137)] = 93688, - [SMALL_STATE(2138)] = 93707, - [SMALL_STATE(2139)] = 93722, - [SMALL_STATE(2140)] = 93741, - [SMALL_STATE(2141)] = 93760, - [SMALL_STATE(2142)] = 93779, - [SMALL_STATE(2143)] = 93798, - [SMALL_STATE(2144)] = 93817, - [SMALL_STATE(2145)] = 93836, - [SMALL_STATE(2146)] = 93851, - [SMALL_STATE(2147)] = 93870, - [SMALL_STATE(2148)] = 93889, - [SMALL_STATE(2149)] = 93906, - [SMALL_STATE(2150)] = 93925, - [SMALL_STATE(2151)] = 93942, - [SMALL_STATE(2152)] = 93961, - [SMALL_STATE(2153)] = 93980, - [SMALL_STATE(2154)] = 93995, - [SMALL_STATE(2155)] = 94011, - [SMALL_STATE(2156)] = 94025, - [SMALL_STATE(2157)] = 94041, - [SMALL_STATE(2158)] = 94055, - [SMALL_STATE(2159)] = 94071, - [SMALL_STATE(2160)] = 94087, - [SMALL_STATE(2161)] = 94103, - [SMALL_STATE(2162)] = 94119, - [SMALL_STATE(2163)] = 94135, - [SMALL_STATE(2164)] = 94151, - [SMALL_STATE(2165)] = 94167, - [SMALL_STATE(2166)] = 94181, - [SMALL_STATE(2167)] = 94197, - [SMALL_STATE(2168)] = 94213, - [SMALL_STATE(2169)] = 94229, - [SMALL_STATE(2170)] = 94245, - [SMALL_STATE(2171)] = 94261, - [SMALL_STATE(2172)] = 94277, - [SMALL_STATE(2173)] = 94291, - [SMALL_STATE(2174)] = 94307, - [SMALL_STATE(2175)] = 94321, - [SMALL_STATE(2176)] = 94335, - [SMALL_STATE(2177)] = 94349, - [SMALL_STATE(2178)] = 94365, - [SMALL_STATE(2179)] = 94381, - [SMALL_STATE(2180)] = 94397, - [SMALL_STATE(2181)] = 94413, - [SMALL_STATE(2182)] = 94427, - [SMALL_STATE(2183)] = 94443, - [SMALL_STATE(2184)] = 94457, - [SMALL_STATE(2185)] = 94471, - [SMALL_STATE(2186)] = 94485, - [SMALL_STATE(2187)] = 94501, - [SMALL_STATE(2188)] = 94515, - [SMALL_STATE(2189)] = 94531, - [SMALL_STATE(2190)] = 94545, - [SMALL_STATE(2191)] = 94559, - [SMALL_STATE(2192)] = 94575, - [SMALL_STATE(2193)] = 94591, - [SMALL_STATE(2194)] = 94607, - [SMALL_STATE(2195)] = 94623, - [SMALL_STATE(2196)] = 94639, - [SMALL_STATE(2197)] = 94655, - [SMALL_STATE(2198)] = 94671, - [SMALL_STATE(2199)] = 94687, - [SMALL_STATE(2200)] = 94703, - [SMALL_STATE(2201)] = 94719, - [SMALL_STATE(2202)] = 94733, - [SMALL_STATE(2203)] = 94749, - [SMALL_STATE(2204)] = 94765, - [SMALL_STATE(2205)] = 94781, - [SMALL_STATE(2206)] = 94797, - [SMALL_STATE(2207)] = 94813, - [SMALL_STATE(2208)] = 94829, - [SMALL_STATE(2209)] = 94845, - [SMALL_STATE(2210)] = 94859, - [SMALL_STATE(2211)] = 94875, - [SMALL_STATE(2212)] = 94889, - [SMALL_STATE(2213)] = 94903, - [SMALL_STATE(2214)] = 94917, - [SMALL_STATE(2215)] = 94933, - [SMALL_STATE(2216)] = 94947, - [SMALL_STATE(2217)] = 94961, - [SMALL_STATE(2218)] = 94975, - [SMALL_STATE(2219)] = 94989, - [SMALL_STATE(2220)] = 95003, - [SMALL_STATE(2221)] = 95019, - [SMALL_STATE(2222)] = 95035, - [SMALL_STATE(2223)] = 95051, - [SMALL_STATE(2224)] = 95067, - [SMALL_STATE(2225)] = 95083, - [SMALL_STATE(2226)] = 95099, - [SMALL_STATE(2227)] = 95115, - [SMALL_STATE(2228)] = 95131, - [SMALL_STATE(2229)] = 95147, - [SMALL_STATE(2230)] = 95161, - [SMALL_STATE(2231)] = 95177, - [SMALL_STATE(2232)] = 95191, - [SMALL_STATE(2233)] = 95205, - [SMALL_STATE(2234)] = 95219, - [SMALL_STATE(2235)] = 95235, - [SMALL_STATE(2236)] = 95249, - [SMALL_STATE(2237)] = 95263, - [SMALL_STATE(2238)] = 95279, - [SMALL_STATE(2239)] = 95295, - [SMALL_STATE(2240)] = 95311, - [SMALL_STATE(2241)] = 95327, - [SMALL_STATE(2242)] = 95343, - [SMALL_STATE(2243)] = 95359, - [SMALL_STATE(2244)] = 95375, - [SMALL_STATE(2245)] = 95391, - [SMALL_STATE(2246)] = 95407, - [SMALL_STATE(2247)] = 95423, - [SMALL_STATE(2248)] = 95439, - [SMALL_STATE(2249)] = 95455, - [SMALL_STATE(2250)] = 95469, - [SMALL_STATE(2251)] = 95485, - [SMALL_STATE(2252)] = 95499, - [SMALL_STATE(2253)] = 95515, - [SMALL_STATE(2254)] = 95529, - [SMALL_STATE(2255)] = 95545, - [SMALL_STATE(2256)] = 95561, - [SMALL_STATE(2257)] = 95577, - [SMALL_STATE(2258)] = 95593, - [SMALL_STATE(2259)] = 95607, - [SMALL_STATE(2260)] = 95623, - [SMALL_STATE(2261)] = 95639, - [SMALL_STATE(2262)] = 95655, - [SMALL_STATE(2263)] = 95671, - [SMALL_STATE(2264)] = 95687, - [SMALL_STATE(2265)] = 95703, - [SMALL_STATE(2266)] = 95719, - [SMALL_STATE(2267)] = 95733, - [SMALL_STATE(2268)] = 95749, - [SMALL_STATE(2269)] = 95765, - [SMALL_STATE(2270)] = 95781, - [SMALL_STATE(2271)] = 95797, - [SMALL_STATE(2272)] = 95813, - [SMALL_STATE(2273)] = 95827, - [SMALL_STATE(2274)] = 95841, - [SMALL_STATE(2275)] = 95857, - [SMALL_STATE(2276)] = 95873, - [SMALL_STATE(2277)] = 95887, - [SMALL_STATE(2278)] = 95901, - [SMALL_STATE(2279)] = 95917, - [SMALL_STATE(2280)] = 95933, - [SMALL_STATE(2281)] = 95949, - [SMALL_STATE(2282)] = 95965, - [SMALL_STATE(2283)] = 95979, - [SMALL_STATE(2284)] = 95993, - [SMALL_STATE(2285)] = 96009, - [SMALL_STATE(2286)] = 96025, - [SMALL_STATE(2287)] = 96041, - [SMALL_STATE(2288)] = 96057, - [SMALL_STATE(2289)] = 96071, - [SMALL_STATE(2290)] = 96085, - [SMALL_STATE(2291)] = 96099, - [SMALL_STATE(2292)] = 96113, - [SMALL_STATE(2293)] = 96127, - [SMALL_STATE(2294)] = 96141, - [SMALL_STATE(2295)] = 96157, - [SMALL_STATE(2296)] = 96173, - [SMALL_STATE(2297)] = 96189, - [SMALL_STATE(2298)] = 96205, - [SMALL_STATE(2299)] = 96221, - [SMALL_STATE(2300)] = 96237, - [SMALL_STATE(2301)] = 96251, - [SMALL_STATE(2302)] = 96267, - [SMALL_STATE(2303)] = 96283, - [SMALL_STATE(2304)] = 96297, - [SMALL_STATE(2305)] = 96313, - [SMALL_STATE(2306)] = 96329, - [SMALL_STATE(2307)] = 96345, - [SMALL_STATE(2308)] = 96361, - [SMALL_STATE(2309)] = 96375, - [SMALL_STATE(2310)] = 96389, - [SMALL_STATE(2311)] = 96405, - [SMALL_STATE(2312)] = 96421, - [SMALL_STATE(2313)] = 96435, - [SMALL_STATE(2314)] = 96449, - [SMALL_STATE(2315)] = 96463, - [SMALL_STATE(2316)] = 96477, - [SMALL_STATE(2317)] = 96491, - [SMALL_STATE(2318)] = 96507, - [SMALL_STATE(2319)] = 96523, - [SMALL_STATE(2320)] = 96537, - [SMALL_STATE(2321)] = 96553, - [SMALL_STATE(2322)] = 96567, - [SMALL_STATE(2323)] = 96581, - [SMALL_STATE(2324)] = 96597, - [SMALL_STATE(2325)] = 96613, - [SMALL_STATE(2326)] = 96629, - [SMALL_STATE(2327)] = 96645, - [SMALL_STATE(2328)] = 96661, - [SMALL_STATE(2329)] = 96677, - [SMALL_STATE(2330)] = 96693, - [SMALL_STATE(2331)] = 96707, - [SMALL_STATE(2332)] = 96721, - [SMALL_STATE(2333)] = 96737, - [SMALL_STATE(2334)] = 96751, - [SMALL_STATE(2335)] = 96767, - [SMALL_STATE(2336)] = 96781, - [SMALL_STATE(2337)] = 96797, - [SMALL_STATE(2338)] = 96813, - [SMALL_STATE(2339)] = 96827, - [SMALL_STATE(2340)] = 96843, - [SMALL_STATE(2341)] = 96857, - [SMALL_STATE(2342)] = 96873, - [SMALL_STATE(2343)] = 96887, - [SMALL_STATE(2344)] = 96903, - [SMALL_STATE(2345)] = 96917, - [SMALL_STATE(2346)] = 96931, - [SMALL_STATE(2347)] = 96947, - [SMALL_STATE(2348)] = 96963, - [SMALL_STATE(2349)] = 96979, - [SMALL_STATE(2350)] = 96993, - [SMALL_STATE(2351)] = 97007, - [SMALL_STATE(2352)] = 97023, - [SMALL_STATE(2353)] = 97039, - [SMALL_STATE(2354)] = 97055, - [SMALL_STATE(2355)] = 97071, - [SMALL_STATE(2356)] = 97087, - [SMALL_STATE(2357)] = 97103, - [SMALL_STATE(2358)] = 97119, - [SMALL_STATE(2359)] = 97135, - [SMALL_STATE(2360)] = 97151, - [SMALL_STATE(2361)] = 97167, - [SMALL_STATE(2362)] = 97183, - [SMALL_STATE(2363)] = 97199, - [SMALL_STATE(2364)] = 97215, - [SMALL_STATE(2365)] = 97231, - [SMALL_STATE(2366)] = 97247, - [SMALL_STATE(2367)] = 97263, - [SMALL_STATE(2368)] = 97279, - [SMALL_STATE(2369)] = 97295, - [SMALL_STATE(2370)] = 97311, - [SMALL_STATE(2371)] = 97327, - [SMALL_STATE(2372)] = 97341, - [SMALL_STATE(2373)] = 97357, - [SMALL_STATE(2374)] = 97373, - [SMALL_STATE(2375)] = 97389, - [SMALL_STATE(2376)] = 97405, - [SMALL_STATE(2377)] = 97421, - [SMALL_STATE(2378)] = 97437, - [SMALL_STATE(2379)] = 97453, - [SMALL_STATE(2380)] = 97469, - [SMALL_STATE(2381)] = 97485, - [SMALL_STATE(2382)] = 97501, - [SMALL_STATE(2383)] = 97517, - [SMALL_STATE(2384)] = 97531, - [SMALL_STATE(2385)] = 97547, - [SMALL_STATE(2386)] = 97561, - [SMALL_STATE(2387)] = 97577, - [SMALL_STATE(2388)] = 97593, - [SMALL_STATE(2389)] = 97607, - [SMALL_STATE(2390)] = 97623, - [SMALL_STATE(2391)] = 97637, - [SMALL_STATE(2392)] = 97653, - [SMALL_STATE(2393)] = 97669, - [SMALL_STATE(2394)] = 97685, - [SMALL_STATE(2395)] = 97701, - [SMALL_STATE(2396)] = 97717, - [SMALL_STATE(2397)] = 97733, - [SMALL_STATE(2398)] = 97749, - [SMALL_STATE(2399)] = 97765, - [SMALL_STATE(2400)] = 97779, - [SMALL_STATE(2401)] = 97793, - [SMALL_STATE(2402)] = 97809, - [SMALL_STATE(2403)] = 97825, - [SMALL_STATE(2404)] = 97841, - [SMALL_STATE(2405)] = 97857, - [SMALL_STATE(2406)] = 97871, - [SMALL_STATE(2407)] = 97887, - [SMALL_STATE(2408)] = 97903, - [SMALL_STATE(2409)] = 97919, - [SMALL_STATE(2410)] = 97935, - [SMALL_STATE(2411)] = 97951, - [SMALL_STATE(2412)] = 97967, - [SMALL_STATE(2413)] = 97983, - [SMALL_STATE(2414)] = 97999, - [SMALL_STATE(2415)] = 98013, - [SMALL_STATE(2416)] = 98029, - [SMALL_STATE(2417)] = 98045, - [SMALL_STATE(2418)] = 98059, - [SMALL_STATE(2419)] = 98075, - [SMALL_STATE(2420)] = 98091, - [SMALL_STATE(2421)] = 98107, - [SMALL_STATE(2422)] = 98121, - [SMALL_STATE(2423)] = 98137, - [SMALL_STATE(2424)] = 98153, - [SMALL_STATE(2425)] = 98169, - [SMALL_STATE(2426)] = 98185, - [SMALL_STATE(2427)] = 98201, - [SMALL_STATE(2428)] = 98215, - [SMALL_STATE(2429)] = 98231, - [SMALL_STATE(2430)] = 98245, - [SMALL_STATE(2431)] = 98259, - [SMALL_STATE(2432)] = 98273, - [SMALL_STATE(2433)] = 98287, - [SMALL_STATE(2434)] = 98303, - [SMALL_STATE(2435)] = 98319, - [SMALL_STATE(2436)] = 98335, - [SMALL_STATE(2437)] = 98351, - [SMALL_STATE(2438)] = 98367, - [SMALL_STATE(2439)] = 98381, - [SMALL_STATE(2440)] = 98395, - [SMALL_STATE(2441)] = 98409, - [SMALL_STATE(2442)] = 98423, - [SMALL_STATE(2443)] = 98437, - [SMALL_STATE(2444)] = 98453, - [SMALL_STATE(2445)] = 98467, - [SMALL_STATE(2446)] = 98481, - [SMALL_STATE(2447)] = 98495, - [SMALL_STATE(2448)] = 98511, - [SMALL_STATE(2449)] = 98527, - [SMALL_STATE(2450)] = 98543, - [SMALL_STATE(2451)] = 98557, - [SMALL_STATE(2452)] = 98571, - [SMALL_STATE(2453)] = 98587, - [SMALL_STATE(2454)] = 98601, - [SMALL_STATE(2455)] = 98615, - [SMALL_STATE(2456)] = 98631, - [SMALL_STATE(2457)] = 98647, - [SMALL_STATE(2458)] = 98663, - [SMALL_STATE(2459)] = 98679, - [SMALL_STATE(2460)] = 98695, - [SMALL_STATE(2461)] = 98711, - [SMALL_STATE(2462)] = 98727, - [SMALL_STATE(2463)] = 98743, - [SMALL_STATE(2464)] = 98759, - [SMALL_STATE(2465)] = 98775, - [SMALL_STATE(2466)] = 98791, - [SMALL_STATE(2467)] = 98805, - [SMALL_STATE(2468)] = 98821, - [SMALL_STATE(2469)] = 98837, - [SMALL_STATE(2470)] = 98853, - [SMALL_STATE(2471)] = 98869, - [SMALL_STATE(2472)] = 98885, - [SMALL_STATE(2473)] = 98901, - [SMALL_STATE(2474)] = 98917, - [SMALL_STATE(2475)] = 98933, - [SMALL_STATE(2476)] = 98949, - [SMALL_STATE(2477)] = 98965, - [SMALL_STATE(2478)] = 98981, - [SMALL_STATE(2479)] = 98997, - [SMALL_STATE(2480)] = 99011, - [SMALL_STATE(2481)] = 99027, - [SMALL_STATE(2482)] = 99043, - [SMALL_STATE(2483)] = 99059, - [SMALL_STATE(2484)] = 99075, - [SMALL_STATE(2485)] = 99089, - [SMALL_STATE(2486)] = 99103, - [SMALL_STATE(2487)] = 99119, - [SMALL_STATE(2488)] = 99135, - [SMALL_STATE(2489)] = 99151, - [SMALL_STATE(2490)] = 99165, - [SMALL_STATE(2491)] = 99181, - [SMALL_STATE(2492)] = 99197, - [SMALL_STATE(2493)] = 99213, - [SMALL_STATE(2494)] = 99229, - [SMALL_STATE(2495)] = 99245, - [SMALL_STATE(2496)] = 99259, - [SMALL_STATE(2497)] = 99275, - [SMALL_STATE(2498)] = 99291, - [SMALL_STATE(2499)] = 99307, - [SMALL_STATE(2500)] = 99323, - [SMALL_STATE(2501)] = 99339, - [SMALL_STATE(2502)] = 99355, - [SMALL_STATE(2503)] = 99369, - [SMALL_STATE(2504)] = 99385, - [SMALL_STATE(2505)] = 99401, - [SMALL_STATE(2506)] = 99415, - [SMALL_STATE(2507)] = 99429, - [SMALL_STATE(2508)] = 99443, - [SMALL_STATE(2509)] = 99459, - [SMALL_STATE(2510)] = 99473, - [SMALL_STATE(2511)] = 99487, - [SMALL_STATE(2512)] = 99501, - [SMALL_STATE(2513)] = 99515, - [SMALL_STATE(2514)] = 99531, - [SMALL_STATE(2515)] = 99547, - [SMALL_STATE(2516)] = 99563, - [SMALL_STATE(2517)] = 99577, - [SMALL_STATE(2518)] = 99591, - [SMALL_STATE(2519)] = 99607, - [SMALL_STATE(2520)] = 99621, - [SMALL_STATE(2521)] = 99635, - [SMALL_STATE(2522)] = 99651, - [SMALL_STATE(2523)] = 99667, - [SMALL_STATE(2524)] = 99681, - [SMALL_STATE(2525)] = 99697, - [SMALL_STATE(2526)] = 99711, - [SMALL_STATE(2527)] = 99725, - [SMALL_STATE(2528)] = 99739, - [SMALL_STATE(2529)] = 99753, - [SMALL_STATE(2530)] = 99767, - [SMALL_STATE(2531)] = 99783, - [SMALL_STATE(2532)] = 99797, - [SMALL_STATE(2533)] = 99811, - [SMALL_STATE(2534)] = 99827, - [SMALL_STATE(2535)] = 99841, - [SMALL_STATE(2536)] = 99855, - [SMALL_STATE(2537)] = 99871, - [SMALL_STATE(2538)] = 99885, - [SMALL_STATE(2539)] = 99899, - [SMALL_STATE(2540)] = 99913, - [SMALL_STATE(2541)] = 99927, - [SMALL_STATE(2542)] = 99941, - [SMALL_STATE(2543)] = 99957, - [SMALL_STATE(2544)] = 99971, - [SMALL_STATE(2545)] = 99985, - [SMALL_STATE(2546)] = 99999, - [SMALL_STATE(2547)] = 100013, - [SMALL_STATE(2548)] = 100029, - [SMALL_STATE(2549)] = 100045, - [SMALL_STATE(2550)] = 100059, - [SMALL_STATE(2551)] = 100073, - [SMALL_STATE(2552)] = 100087, - [SMALL_STATE(2553)] = 100103, - [SMALL_STATE(2554)] = 100117, - [SMALL_STATE(2555)] = 100131, - [SMALL_STATE(2556)] = 100147, - [SMALL_STATE(2557)] = 100163, - [SMALL_STATE(2558)] = 100177, - [SMALL_STATE(2559)] = 100193, - [SMALL_STATE(2560)] = 100207, - [SMALL_STATE(2561)] = 100223, - [SMALL_STATE(2562)] = 100239, - [SMALL_STATE(2563)] = 100253, - [SMALL_STATE(2564)] = 100267, - [SMALL_STATE(2565)] = 100281, - [SMALL_STATE(2566)] = 100295, - [SMALL_STATE(2567)] = 100311, - [SMALL_STATE(2568)] = 100327, - [SMALL_STATE(2569)] = 100343, - [SMALL_STATE(2570)] = 100359, - [SMALL_STATE(2571)] = 100373, - [SMALL_STATE(2572)] = 100389, - [SMALL_STATE(2573)] = 100403, - [SMALL_STATE(2574)] = 100419, - [SMALL_STATE(2575)] = 100435, - [SMALL_STATE(2576)] = 100451, - [SMALL_STATE(2577)] = 100467, - [SMALL_STATE(2578)] = 100481, - [SMALL_STATE(2579)] = 100495, - [SMALL_STATE(2580)] = 100509, - [SMALL_STATE(2581)] = 100525, - [SMALL_STATE(2582)] = 100539, - [SMALL_STATE(2583)] = 100555, - [SMALL_STATE(2584)] = 100571, - [SMALL_STATE(2585)] = 100587, - [SMALL_STATE(2586)] = 100603, - [SMALL_STATE(2587)] = 100619, - [SMALL_STATE(2588)] = 100635, - [SMALL_STATE(2589)] = 100649, - [SMALL_STATE(2590)] = 100663, - [SMALL_STATE(2591)] = 100677, - [SMALL_STATE(2592)] = 100691, - [SMALL_STATE(2593)] = 100707, - [SMALL_STATE(2594)] = 100723, - [SMALL_STATE(2595)] = 100739, - [SMALL_STATE(2596)] = 100753, - [SMALL_STATE(2597)] = 100767, - [SMALL_STATE(2598)] = 100781, - [SMALL_STATE(2599)] = 100797, - [SMALL_STATE(2600)] = 100811, - [SMALL_STATE(2601)] = 100825, - [SMALL_STATE(2602)] = 100841, - [SMALL_STATE(2603)] = 100855, - [SMALL_STATE(2604)] = 100869, - [SMALL_STATE(2605)] = 100883, - [SMALL_STATE(2606)] = 100897, - [SMALL_STATE(2607)] = 100913, - [SMALL_STATE(2608)] = 100929, - [SMALL_STATE(2609)] = 100945, - [SMALL_STATE(2610)] = 100959, - [SMALL_STATE(2611)] = 100975, - [SMALL_STATE(2612)] = 100991, - [SMALL_STATE(2613)] = 101007, - [SMALL_STATE(2614)] = 101023, - [SMALL_STATE(2615)] = 101039, - [SMALL_STATE(2616)] = 101055, - [SMALL_STATE(2617)] = 101071, - [SMALL_STATE(2618)] = 101087, - [SMALL_STATE(2619)] = 101103, - [SMALL_STATE(2620)] = 101119, - [SMALL_STATE(2621)] = 101135, - [SMALL_STATE(2622)] = 101151, - [SMALL_STATE(2623)] = 101167, - [SMALL_STATE(2624)] = 101183, - [SMALL_STATE(2625)] = 101199, - [SMALL_STATE(2626)] = 101215, - [SMALL_STATE(2627)] = 101231, - [SMALL_STATE(2628)] = 101247, - [SMALL_STATE(2629)] = 101263, - [SMALL_STATE(2630)] = 101279, - [SMALL_STATE(2631)] = 101295, - [SMALL_STATE(2632)] = 101311, - [SMALL_STATE(2633)] = 101327, - [SMALL_STATE(2634)] = 101343, - [SMALL_STATE(2635)] = 101359, - [SMALL_STATE(2636)] = 101375, - [SMALL_STATE(2637)] = 101389, - [SMALL_STATE(2638)] = 101405, - [SMALL_STATE(2639)] = 101421, - [SMALL_STATE(2640)] = 101437, - [SMALL_STATE(2641)] = 101453, - [SMALL_STATE(2642)] = 101469, - [SMALL_STATE(2643)] = 101485, - [SMALL_STATE(2644)] = 101499, - [SMALL_STATE(2645)] = 101513, - [SMALL_STATE(2646)] = 101527, - [SMALL_STATE(2647)] = 101541, - [SMALL_STATE(2648)] = 101555, - [SMALL_STATE(2649)] = 101571, - [SMALL_STATE(2650)] = 101585, - [SMALL_STATE(2651)] = 101599, - [SMALL_STATE(2652)] = 101615, - [SMALL_STATE(2653)] = 101631, - [SMALL_STATE(2654)] = 101647, - [SMALL_STATE(2655)] = 101661, - [SMALL_STATE(2656)] = 101675, - [SMALL_STATE(2657)] = 101689, - [SMALL_STATE(2658)] = 101703, - [SMALL_STATE(2659)] = 101719, - [SMALL_STATE(2660)] = 101735, - [SMALL_STATE(2661)] = 101751, - [SMALL_STATE(2662)] = 101767, - [SMALL_STATE(2663)] = 101783, - [SMALL_STATE(2664)] = 101799, - [SMALL_STATE(2665)] = 101815, - [SMALL_STATE(2666)] = 101829, - [SMALL_STATE(2667)] = 101843, - [SMALL_STATE(2668)] = 101857, - [SMALL_STATE(2669)] = 101873, - [SMALL_STATE(2670)] = 101889, - [SMALL_STATE(2671)] = 101903, - [SMALL_STATE(2672)] = 101919, - [SMALL_STATE(2673)] = 101935, - [SMALL_STATE(2674)] = 101951, - [SMALL_STATE(2675)] = 101967, - [SMALL_STATE(2676)] = 101983, - [SMALL_STATE(2677)] = 101999, - [SMALL_STATE(2678)] = 102015, - [SMALL_STATE(2679)] = 102031, - [SMALL_STATE(2680)] = 102045, - [SMALL_STATE(2681)] = 102059, - [SMALL_STATE(2682)] = 102073, - [SMALL_STATE(2683)] = 102089, - [SMALL_STATE(2684)] = 102105, - [SMALL_STATE(2685)] = 102121, - [SMALL_STATE(2686)] = 102134, - [SMALL_STATE(2687)] = 102147, - [SMALL_STATE(2688)] = 102160, - [SMALL_STATE(2689)] = 102173, - [SMALL_STATE(2690)] = 102186, - [SMALL_STATE(2691)] = 102199, - [SMALL_STATE(2692)] = 102212, - [SMALL_STATE(2693)] = 102225, - [SMALL_STATE(2694)] = 102238, - [SMALL_STATE(2695)] = 102251, - [SMALL_STATE(2696)] = 102264, - [SMALL_STATE(2697)] = 102277, - [SMALL_STATE(2698)] = 102290, - [SMALL_STATE(2699)] = 102303, - [SMALL_STATE(2700)] = 102316, - [SMALL_STATE(2701)] = 102329, - [SMALL_STATE(2702)] = 102342, - [SMALL_STATE(2703)] = 102355, - [SMALL_STATE(2704)] = 102368, - [SMALL_STATE(2705)] = 102381, - [SMALL_STATE(2706)] = 102394, - [SMALL_STATE(2707)] = 102407, - [SMALL_STATE(2708)] = 102420, - [SMALL_STATE(2709)] = 102433, - [SMALL_STATE(2710)] = 102446, - [SMALL_STATE(2711)] = 102459, - [SMALL_STATE(2712)] = 102472, - [SMALL_STATE(2713)] = 102485, - [SMALL_STATE(2714)] = 102498, - [SMALL_STATE(2715)] = 102511, - [SMALL_STATE(2716)] = 102524, - [SMALL_STATE(2717)] = 102537, - [SMALL_STATE(2718)] = 102550, - [SMALL_STATE(2719)] = 102563, - [SMALL_STATE(2720)] = 102576, - [SMALL_STATE(2721)] = 102589, - [SMALL_STATE(2722)] = 102602, - [SMALL_STATE(2723)] = 102615, - [SMALL_STATE(2724)] = 102628, - [SMALL_STATE(2725)] = 102641, - [SMALL_STATE(2726)] = 102654, - [SMALL_STATE(2727)] = 102667, - [SMALL_STATE(2728)] = 102680, - [SMALL_STATE(2729)] = 102693, - [SMALL_STATE(2730)] = 102706, - [SMALL_STATE(2731)] = 102719, - [SMALL_STATE(2732)] = 102732, - [SMALL_STATE(2733)] = 102745, - [SMALL_STATE(2734)] = 102758, - [SMALL_STATE(2735)] = 102771, - [SMALL_STATE(2736)] = 102784, - [SMALL_STATE(2737)] = 102797, - [SMALL_STATE(2738)] = 102810, - [SMALL_STATE(2739)] = 102823, - [SMALL_STATE(2740)] = 102836, - [SMALL_STATE(2741)] = 102849, - [SMALL_STATE(2742)] = 102862, - [SMALL_STATE(2743)] = 102875, - [SMALL_STATE(2744)] = 102888, - [SMALL_STATE(2745)] = 102901, - [SMALL_STATE(2746)] = 102914, - [SMALL_STATE(2747)] = 102927, - [SMALL_STATE(2748)] = 102940, - [SMALL_STATE(2749)] = 102953, - [SMALL_STATE(2750)] = 102966, - [SMALL_STATE(2751)] = 102979, - [SMALL_STATE(2752)] = 102992, - [SMALL_STATE(2753)] = 103005, - [SMALL_STATE(2754)] = 103018, - [SMALL_STATE(2755)] = 103031, - [SMALL_STATE(2756)] = 103044, - [SMALL_STATE(2757)] = 103057, - [SMALL_STATE(2758)] = 103070, - [SMALL_STATE(2759)] = 103083, - [SMALL_STATE(2760)] = 103096, - [SMALL_STATE(2761)] = 103109, - [SMALL_STATE(2762)] = 103122, - [SMALL_STATE(2763)] = 103135, - [SMALL_STATE(2764)] = 103148, - [SMALL_STATE(2765)] = 103161, - [SMALL_STATE(2766)] = 103174, - [SMALL_STATE(2767)] = 103187, - [SMALL_STATE(2768)] = 103200, - [SMALL_STATE(2769)] = 103213, - [SMALL_STATE(2770)] = 103226, - [SMALL_STATE(2771)] = 103239, - [SMALL_STATE(2772)] = 103252, - [SMALL_STATE(2773)] = 103265, - [SMALL_STATE(2774)] = 103278, - [SMALL_STATE(2775)] = 103291, - [SMALL_STATE(2776)] = 103304, - [SMALL_STATE(2777)] = 103317, - [SMALL_STATE(2778)] = 103330, - [SMALL_STATE(2779)] = 103343, - [SMALL_STATE(2780)] = 103356, - [SMALL_STATE(2781)] = 103369, - [SMALL_STATE(2782)] = 103382, - [SMALL_STATE(2783)] = 103395, - [SMALL_STATE(2784)] = 103408, - [SMALL_STATE(2785)] = 103421, - [SMALL_STATE(2786)] = 103434, - [SMALL_STATE(2787)] = 103447, - [SMALL_STATE(2788)] = 103460, - [SMALL_STATE(2789)] = 103473, - [SMALL_STATE(2790)] = 103486, - [SMALL_STATE(2791)] = 103499, - [SMALL_STATE(2792)] = 103512, - [SMALL_STATE(2793)] = 103525, - [SMALL_STATE(2794)] = 103538, - [SMALL_STATE(2795)] = 103551, - [SMALL_STATE(2796)] = 103564, - [SMALL_STATE(2797)] = 103577, - [SMALL_STATE(2798)] = 103590, - [SMALL_STATE(2799)] = 103603, - [SMALL_STATE(2800)] = 103616, - [SMALL_STATE(2801)] = 103629, - [SMALL_STATE(2802)] = 103642, - [SMALL_STATE(2803)] = 103655, - [SMALL_STATE(2804)] = 103668, - [SMALL_STATE(2805)] = 103681, - [SMALL_STATE(2806)] = 103694, - [SMALL_STATE(2807)] = 103707, - [SMALL_STATE(2808)] = 103720, - [SMALL_STATE(2809)] = 103733, - [SMALL_STATE(2810)] = 103746, - [SMALL_STATE(2811)] = 103759, - [SMALL_STATE(2812)] = 103772, - [SMALL_STATE(2813)] = 103785, - [SMALL_STATE(2814)] = 103798, - [SMALL_STATE(2815)] = 103811, + [SMALL_STATE(984)] = 37719, + [SMALL_STATE(985)] = 37790, + [SMALL_STATE(986)] = 37861, + [SMALL_STATE(987)] = 37932, + [SMALL_STATE(988)] = 38003, + [SMALL_STATE(989)] = 38074, + [SMALL_STATE(990)] = 38145, + [SMALL_STATE(991)] = 38216, + [SMALL_STATE(992)] = 38287, + [SMALL_STATE(993)] = 38374, + [SMALL_STATE(994)] = 38445, + [SMALL_STATE(995)] = 38516, + [SMALL_STATE(996)] = 38587, + [SMALL_STATE(997)] = 38658, + [SMALL_STATE(998)] = 38729, + [SMALL_STATE(999)] = 38800, + [SMALL_STATE(1000)] = 38871, + [SMALL_STATE(1001)] = 38942, + [SMALL_STATE(1002)] = 39012, + [SMALL_STATE(1003)] = 39082, + [SMALL_STATE(1004)] = 39152, + [SMALL_STATE(1005)] = 39222, + [SMALL_STATE(1006)] = 39292, + [SMALL_STATE(1007)] = 39362, + [SMALL_STATE(1008)] = 39452, + [SMALL_STATE(1009)] = 39526, + [SMALL_STATE(1010)] = 39596, + [SMALL_STATE(1011)] = 39671, + [SMALL_STATE(1012)] = 39738, + [SMALL_STATE(1013)] = 39805, + [SMALL_STATE(1014)] = 39880, + [SMALL_STATE(1015)] = 39955, + [SMALL_STATE(1016)] = 40030, + [SMALL_STATE(1017)] = 40097, + [SMALL_STATE(1018)] = 40164, + [SMALL_STATE(1019)] = 40231, + [SMALL_STATE(1020)] = 40298, + [SMALL_STATE(1021)] = 40365, + [SMALL_STATE(1022)] = 40443, + [SMALL_STATE(1023)] = 40519, + [SMALL_STATE(1024)] = 40595, + [SMALL_STATE(1025)] = 40671, + [SMALL_STATE(1026)] = 40749, + [SMALL_STATE(1027)] = 40821, + [SMALL_STATE(1028)] = 40897, + [SMALL_STATE(1029)] = 40973, + [SMALL_STATE(1030)] = 41049, + [SMALL_STATE(1031)] = 41117, + [SMALL_STATE(1032)] = 41185, + [SMALL_STATE(1033)] = 41261, + [SMALL_STATE(1034)] = 41333, + [SMALL_STATE(1035)] = 41409, + [SMALL_STATE(1036)] = 41483, + [SMALL_STATE(1037)] = 41557, + [SMALL_STATE(1038)] = 41633, + [SMALL_STATE(1039)] = 41701, + [SMALL_STATE(1040)] = 41775, + [SMALL_STATE(1041)] = 41849, + [SMALL_STATE(1042)] = 41923, + [SMALL_STATE(1043)] = 41999, + [SMALL_STATE(1044)] = 42075, + [SMALL_STATE(1045)] = 42151, + [SMALL_STATE(1046)] = 42219, + [SMALL_STATE(1047)] = 42293, + [SMALL_STATE(1048)] = 42369, + [SMALL_STATE(1049)] = 42437, + [SMALL_STATE(1050)] = 42511, + [SMALL_STATE(1051)] = 42587, + [SMALL_STATE(1052)] = 42663, + [SMALL_STATE(1053)] = 42739, + [SMALL_STATE(1054)] = 42813, + [SMALL_STATE(1055)] = 42881, + [SMALL_STATE(1056)] = 42949, + [SMALL_STATE(1057)] = 43020, + [SMALL_STATE(1058)] = 43093, + [SMALL_STATE(1059)] = 43164, + [SMALL_STATE(1060)] = 43237, + [SMALL_STATE(1061)] = 43312, + [SMALL_STATE(1062)] = 43387, + [SMALL_STATE(1063)] = 43460, + [SMALL_STATE(1064)] = 43535, + [SMALL_STATE(1065)] = 43607, + [SMALL_STATE(1066)] = 43679, + [SMALL_STATE(1067)] = 43751, + [SMALL_STATE(1068)] = 43827, + [SMALL_STATE(1069)] = 43903, + [SMALL_STATE(1070)] = 43974, + [SMALL_STATE(1071)] = 44045, + [SMALL_STATE(1072)] = 44120, + [SMALL_STATE(1073)] = 44195, + [SMALL_STATE(1074)] = 44266, + [SMALL_STATE(1075)] = 44337, + [SMALL_STATE(1076)] = 44410, + [SMALL_STATE(1077)] = 44478, + [SMALL_STATE(1078)] = 44550, + [SMALL_STATE(1079)] = 44610, + [SMALL_STATE(1080)] = 44680, + [SMALL_STATE(1081)] = 44748, + [SMALL_STATE(1082)] = 44802, + [SMALL_STATE(1083)] = 44872, + [SMALL_STATE(1084)] = 44926, + [SMALL_STATE(1085)] = 44985, + [SMALL_STATE(1086)] = 45050, + [SMALL_STATE(1087)] = 45109, + [SMALL_STATE(1088)] = 45162, + [SMALL_STATE(1089)] = 45221, + [SMALL_STATE(1090)] = 45274, + [SMALL_STATE(1091)] = 45331, + [SMALL_STATE(1092)] = 45384, + [SMALL_STATE(1093)] = 45441, + [SMALL_STATE(1094)] = 45494, + [SMALL_STATE(1095)] = 45553, + [SMALL_STATE(1096)] = 45610, + [SMALL_STATE(1097)] = 45702, + [SMALL_STATE(1098)] = 45756, + [SMALL_STATE(1099)] = 45810, + [SMALL_STATE(1100)] = 45864, + [SMALL_STATE(1101)] = 45934, + [SMALL_STATE(1102)] = 46034, + [SMALL_STATE(1103)] = 46088, + [SMALL_STATE(1104)] = 46182, + [SMALL_STATE(1105)] = 46258, + [SMALL_STATE(1106)] = 46346, + [SMALL_STATE(1107)] = 46436, + [SMALL_STATE(1108)] = 46528, + [SMALL_STATE(1109)] = 46602, + [SMALL_STATE(1110)] = 46672, + [SMALL_STATE(1111)] = 46756, + [SMALL_STATE(1112)] = 46852, + [SMALL_STATE(1113)] = 46918, + [SMALL_STATE(1114)] = 46972, + [SMALL_STATE(1115)] = 47026, + [SMALL_STATE(1116)] = 47080, + [SMALL_STATE(1117)] = 47134, + [SMALL_STATE(1118)] = 47234, + [SMALL_STATE(1119)] = 47288, + [SMALL_STATE(1120)] = 47388, + [SMALL_STATE(1121)] = 47442, + [SMALL_STATE(1122)] = 47502, + [SMALL_STATE(1123)] = 47556, + [SMALL_STATE(1124)] = 47624, + [SMALL_STATE(1125)] = 47678, + [SMALL_STATE(1126)] = 47734, + [SMALL_STATE(1127)] = 47788, + [SMALL_STATE(1128)] = 47842, + [SMALL_STATE(1129)] = 47896, + [SMALL_STATE(1130)] = 47950, + [SMALL_STATE(1131)] = 48004, + [SMALL_STATE(1132)] = 48104, + [SMALL_STATE(1133)] = 48158, + [SMALL_STATE(1134)] = 48258, + [SMALL_STATE(1135)] = 48312, + [SMALL_STATE(1136)] = 48366, + [SMALL_STATE(1137)] = 48466, + [SMALL_STATE(1138)] = 48520, + [SMALL_STATE(1139)] = 48574, + [SMALL_STATE(1140)] = 48628, + [SMALL_STATE(1141)] = 48682, + [SMALL_STATE(1142)] = 48736, + [SMALL_STATE(1143)] = 48790, + [SMALL_STATE(1144)] = 48844, + [SMALL_STATE(1145)] = 48898, + [SMALL_STATE(1146)] = 48952, + [SMALL_STATE(1147)] = 49006, + [SMALL_STATE(1148)] = 49060, + [SMALL_STATE(1149)] = 49114, + [SMALL_STATE(1150)] = 49168, + [SMALL_STATE(1151)] = 49222, + [SMALL_STATE(1152)] = 49276, + [SMALL_STATE(1153)] = 49330, + [SMALL_STATE(1154)] = 49384, + [SMALL_STATE(1155)] = 49464, + [SMALL_STATE(1156)] = 49564, + [SMALL_STATE(1157)] = 49618, + [SMALL_STATE(1158)] = 49674, + [SMALL_STATE(1159)] = 49728, + [SMALL_STATE(1160)] = 49828, + [SMALL_STATE(1161)] = 49896, + [SMALL_STATE(1162)] = 49950, + [SMALL_STATE(1163)] = 50004, + [SMALL_STATE(1164)] = 50058, + [SMALL_STATE(1165)] = 50112, + [SMALL_STATE(1166)] = 50166, + [SMALL_STATE(1167)] = 50220, + [SMALL_STATE(1168)] = 50274, + [SMALL_STATE(1169)] = 50328, + [SMALL_STATE(1170)] = 50382, + [SMALL_STATE(1171)] = 50482, + [SMALL_STATE(1172)] = 50536, + [SMALL_STATE(1173)] = 50590, + [SMALL_STATE(1174)] = 50690, + [SMALL_STATE(1175)] = 50744, + [SMALL_STATE(1176)] = 50844, + [SMALL_STATE(1177)] = 50898, + [SMALL_STATE(1178)] = 50954, + [SMALL_STATE(1179)] = 51008, + [SMALL_STATE(1180)] = 51108, + [SMALL_STATE(1181)] = 51162, + [SMALL_STATE(1182)] = 51216, + [SMALL_STATE(1183)] = 51316, + [SMALL_STATE(1184)] = 51370, + [SMALL_STATE(1185)] = 51424, + [SMALL_STATE(1186)] = 51478, + [SMALL_STATE(1187)] = 51532, + [SMALL_STATE(1188)] = 51586, + [SMALL_STATE(1189)] = 51640, + [SMALL_STATE(1190)] = 51694, + [SMALL_STATE(1191)] = 51795, + [SMALL_STATE(1192)] = 51870, + [SMALL_STATE(1193)] = 51939, + [SMALL_STATE(1194)] = 52012, + [SMALL_STATE(1195)] = 52103, + [SMALL_STATE(1196)] = 52192, + [SMALL_STATE(1197)] = 52279, + [SMALL_STATE(1198)] = 52354, + [SMALL_STATE(1199)] = 52447, + [SMALL_STATE(1200)] = 52538, + [SMALL_STATE(1201)] = 52607, + [SMALL_STATE(1202)] = 52710, + [SMALL_STATE(1203)] = 52813, + [SMALL_STATE(1204)] = 52866, + [SMALL_STATE(1205)] = 52945, + [SMALL_STATE(1206)] = 53044, + [SMALL_STATE(1207)] = 53143, + [SMALL_STATE(1208)] = 53242, + [SMALL_STATE(1209)] = 53341, + [SMALL_STATE(1210)] = 53444, + [SMALL_STATE(1211)] = 53547, + [SMALL_STATE(1212)] = 53650, + [SMALL_STATE(1213)] = 53749, + [SMALL_STATE(1214)] = 53804, + [SMALL_STATE(1215)] = 53903, + [SMALL_STATE(1216)] = 53998, + [SMALL_STATE(1217)] = 54101, + [SMALL_STATE(1218)] = 54156, + [SMALL_STATE(1219)] = 54255, + [SMALL_STATE(1220)] = 54358, + [SMALL_STATE(1221)] = 54457, + [SMALL_STATE(1222)] = 54560, + [SMALL_STATE(1223)] = 54663, + [SMALL_STATE(1224)] = 54766, + [SMALL_STATE(1225)] = 54869, + [SMALL_STATE(1226)] = 54968, + [SMALL_STATE(1227)] = 55021, + [SMALL_STATE(1228)] = 55124, + [SMALL_STATE(1229)] = 55227, + [SMALL_STATE(1230)] = 55326, + [SMALL_STATE(1231)] = 55425, + [SMALL_STATE(1232)] = 55508, + [SMALL_STATE(1233)] = 55607, + [SMALL_STATE(1234)] = 55706, + [SMALL_STATE(1235)] = 55809, + [SMALL_STATE(1236)] = 55888, + [SMALL_STATE(1237)] = 55957, + [SMALL_STATE(1238)] = 56012, + [SMALL_STATE(1239)] = 56115, + [SMALL_STATE(1240)] = 56214, + [SMALL_STATE(1241)] = 56277, + [SMALL_STATE(1242)] = 56376, + [SMALL_STATE(1243)] = 56475, + [SMALL_STATE(1244)] = 56532, + [SMALL_STATE(1245)] = 56631, + [SMALL_STATE(1246)] = 56722, + [SMALL_STATE(1247)] = 56815, + [SMALL_STATE(1248)] = 56870, + [SMALL_STATE(1249)] = 56969, + [SMALL_STATE(1250)] = 57072, + [SMALL_STATE(1251)] = 57159, + [SMALL_STATE(1252)] = 57248, + [SMALL_STATE(1253)] = 57347, + [SMALL_STATE(1254)] = 57438, + [SMALL_STATE(1255)] = 57497, + [SMALL_STATE(1256)] = 57600, + [SMALL_STATE(1257)] = 57655, + [SMALL_STATE(1258)] = 57750, + [SMALL_STATE(1259)] = 57849, + [SMALL_STATE(1260)] = 57922, + [SMALL_STATE(1261)] = 58021, + [SMALL_STATE(1262)] = 58090, + [SMALL_STATE(1263)] = 58189, + [SMALL_STATE(1264)] = 58272, + [SMALL_STATE(1265)] = 58371, + [SMALL_STATE(1266)] = 58470, + [SMALL_STATE(1267)] = 58527, + [SMALL_STATE(1268)] = 58630, + [SMALL_STATE(1269)] = 58685, + [SMALL_STATE(1270)] = 58740, + [SMALL_STATE(1271)] = 58843, + [SMALL_STATE(1272)] = 58942, + [SMALL_STATE(1273)] = 59041, + [SMALL_STATE(1274)] = 59096, + [SMALL_STATE(1275)] = 59148, + [SMALL_STATE(1276)] = 59250, + [SMALL_STATE(1277)] = 59302, + [SMALL_STATE(1278)] = 59354, + [SMALL_STATE(1279)] = 59406, + [SMALL_STATE(1280)] = 59458, + [SMALL_STATE(1281)] = 59560, + [SMALL_STATE(1282)] = 59616, + [SMALL_STATE(1283)] = 59714, + [SMALL_STATE(1284)] = 59766, + [SMALL_STATE(1285)] = 59818, + [SMALL_STATE(1286)] = 59870, + [SMALL_STATE(1287)] = 59922, + [SMALL_STATE(1288)] = 59974, + [SMALL_STATE(1289)] = 60026, + [SMALL_STATE(1290)] = 60078, + [SMALL_STATE(1291)] = 60180, + [SMALL_STATE(1292)] = 60236, + [SMALL_STATE(1293)] = 60338, + [SMALL_STATE(1294)] = 60440, + [SMALL_STATE(1295)] = 60542, + [SMALL_STATE(1296)] = 60594, + [SMALL_STATE(1297)] = 60646, + [SMALL_STATE(1298)] = 60698, + [SMALL_STATE(1299)] = 60750, + [SMALL_STATE(1300)] = 60852, + [SMALL_STATE(1301)] = 60954, + [SMALL_STATE(1302)] = 61056, + [SMALL_STATE(1303)] = 61158, + [SMALL_STATE(1304)] = 61260, + [SMALL_STATE(1305)] = 61318, + [SMALL_STATE(1306)] = 61420, + [SMALL_STATE(1307)] = 61522, + [SMALL_STATE(1308)] = 61578, + [SMALL_STATE(1309)] = 61630, + [SMALL_STATE(1310)] = 61682, + [SMALL_STATE(1311)] = 61784, + [SMALL_STATE(1312)] = 61836, + [SMALL_STATE(1313)] = 61888, + [SMALL_STATE(1314)] = 61990, + [SMALL_STATE(1315)] = 62092, + [SMALL_STATE(1316)] = 62194, + [SMALL_STATE(1317)] = 62246, + [SMALL_STATE(1318)] = 62298, + [SMALL_STATE(1319)] = 62350, + [SMALL_STATE(1320)] = 62402, + [SMALL_STATE(1321)] = 62504, + [SMALL_STATE(1322)] = 62556, + [SMALL_STATE(1323)] = 62612, + [SMALL_STATE(1324)] = 62668, + [SMALL_STATE(1325)] = 62724, + [SMALL_STATE(1326)] = 62826, + [SMALL_STATE(1327)] = 62928, + [SMALL_STATE(1328)] = 63026, + [SMALL_STATE(1329)] = 63078, + [SMALL_STATE(1330)] = 63130, + [SMALL_STATE(1331)] = 63182, + [SMALL_STATE(1332)] = 63238, + [SMALL_STATE(1333)] = 63290, + [SMALL_STATE(1334)] = 63342, + [SMALL_STATE(1335)] = 63394, + [SMALL_STATE(1336)] = 63448, + [SMALL_STATE(1337)] = 63550, + [SMALL_STATE(1338)] = 63602, + [SMALL_STATE(1339)] = 63660, + [SMALL_STATE(1340)] = 63762, + [SMALL_STATE(1341)] = 63864, + [SMALL_STATE(1342)] = 63918, + [SMALL_STATE(1343)] = 64020, + [SMALL_STATE(1344)] = 64072, + [SMALL_STATE(1345)] = 64174, + [SMALL_STATE(1346)] = 64232, + [SMALL_STATE(1347)] = 64330, + [SMALL_STATE(1348)] = 64432, + [SMALL_STATE(1349)] = 64484, + [SMALL_STATE(1350)] = 64586, + [SMALL_STATE(1351)] = 64638, + [SMALL_STATE(1352)] = 64690, + [SMALL_STATE(1353)] = 64792, + [SMALL_STATE(1354)] = 64844, + [SMALL_STATE(1355)] = 64900, + [SMALL_STATE(1356)] = 64952, + [SMALL_STATE(1357)] = 65004, + [SMALL_STATE(1358)] = 65106, + [SMALL_STATE(1359)] = 65162, + [SMALL_STATE(1360)] = 65214, + [SMALL_STATE(1361)] = 65316, + [SMALL_STATE(1362)] = 65418, + [SMALL_STATE(1363)] = 65520, + [SMALL_STATE(1364)] = 65574, + [SMALL_STATE(1365)] = 65628, + [SMALL_STATE(1366)] = 65686, + [SMALL_STATE(1367)] = 65738, + [SMALL_STATE(1368)] = 65794, + [SMALL_STATE(1369)] = 65850, + [SMALL_STATE(1370)] = 65902, + [SMALL_STATE(1371)] = 65954, + [SMALL_STATE(1372)] = 66006, + [SMALL_STATE(1373)] = 66058, + [SMALL_STATE(1374)] = 66110, + [SMALL_STATE(1375)] = 66162, + [SMALL_STATE(1376)] = 66214, + [SMALL_STATE(1377)] = 66266, + [SMALL_STATE(1378)] = 66322, + [SMALL_STATE(1379)] = 66380, + [SMALL_STATE(1380)] = 66482, + [SMALL_STATE(1381)] = 66538, + [SMALL_STATE(1382)] = 66590, + [SMALL_STATE(1383)] = 66642, + [SMALL_STATE(1384)] = 66694, + [SMALL_STATE(1385)] = 66750, + [SMALL_STATE(1386)] = 66849, + [SMALL_STATE(1387)] = 66946, + [SMALL_STATE(1388)] = 67001, + [SMALL_STATE(1389)] = 67100, + [SMALL_STATE(1390)] = 67199, + [SMALL_STATE(1391)] = 67296, + [SMALL_STATE(1392)] = 67351, + [SMALL_STATE(1393)] = 67450, + [SMALL_STATE(1394)] = 67547, + [SMALL_STATE(1395)] = 67644, + [SMALL_STATE(1396)] = 67741, + [SMALL_STATE(1397)] = 67838, + [SMALL_STATE(1398)] = 67935, + [SMALL_STATE(1399)] = 68032, + [SMALL_STATE(1400)] = 68129, + [SMALL_STATE(1401)] = 68226, + [SMALL_STATE(1402)] = 68281, + [SMALL_STATE(1403)] = 68358, + [SMALL_STATE(1404)] = 68455, + [SMALL_STATE(1405)] = 68548, + [SMALL_STATE(1406)] = 68619, + [SMALL_STATE(1407)] = 68700, + [SMALL_STATE(1408)] = 68797, + [SMALL_STATE(1409)] = 68864, + [SMALL_STATE(1410)] = 68961, + [SMALL_STATE(1411)] = 69058, + [SMALL_STATE(1412)] = 69147, + [SMALL_STATE(1413)] = 69234, + [SMALL_STATE(1414)] = 69319, + [SMALL_STATE(1415)] = 69392, + [SMALL_STATE(1416)] = 69483, + [SMALL_STATE(1417)] = 69572, + [SMALL_STATE(1418)] = 69639, + [SMALL_STATE(1419)] = 69738, + [SMALL_STATE(1420)] = 69835, + [SMALL_STATE(1421)] = 69932, + [SMALL_STATE(1422)] = 70029, + [SMALL_STATE(1423)] = 70126, + [SMALL_STATE(1424)] = 70223, + [SMALL_STATE(1425)] = 70320, + [SMALL_STATE(1426)] = 70408, + [SMALL_STATE(1427)] = 70504, + [SMALL_STATE(1428)] = 70560, + [SMALL_STATE(1429)] = 70656, + [SMALL_STATE(1430)] = 70752, + [SMALL_STATE(1431)] = 70848, + [SMALL_STATE(1432)] = 70944, + [SMALL_STATE(1433)] = 71040, + [SMALL_STATE(1434)] = 71136, + [SMALL_STATE(1435)] = 71232, + [SMALL_STATE(1436)] = 71328, + [SMALL_STATE(1437)] = 71424, + [SMALL_STATE(1438)] = 71520, + [SMALL_STATE(1439)] = 71576, + [SMALL_STATE(1440)] = 71632, + [SMALL_STATE(1441)] = 71688, + [SMALL_STATE(1442)] = 71784, + [SMALL_STATE(1443)] = 71880, + [SMALL_STATE(1444)] = 71976, + [SMALL_STATE(1445)] = 72072, + [SMALL_STATE(1446)] = 72168, + [SMALL_STATE(1447)] = 72264, + [SMALL_STATE(1448)] = 72360, + [SMALL_STATE(1449)] = 72452, + [SMALL_STATE(1450)] = 72528, + [SMALL_STATE(1451)] = 72594, + [SMALL_STATE(1452)] = 72690, + [SMALL_STATE(1453)] = 72788, + [SMALL_STATE(1454)] = 72878, + [SMALL_STATE(1455)] = 72950, + [SMALL_STATE(1456)] = 73034, + [SMALL_STATE(1457)] = 73120, + [SMALL_STATE(1458)] = 73200, + [SMALL_STATE(1459)] = 73288, + [SMALL_STATE(1460)] = 73384, + [SMALL_STATE(1461)] = 73450, + [SMALL_STATE(1462)] = 73520, + [SMALL_STATE(1463)] = 73615, + [SMALL_STATE(1464)] = 73666, + [SMALL_STATE(1465)] = 73721, + [SMALL_STATE(1466)] = 73814, + [SMALL_STATE(1467)] = 73869, + [SMALL_STATE(1468)] = 73962, + [SMALL_STATE(1469)] = 74057, + [SMALL_STATE(1470)] = 74152, + [SMALL_STATE(1471)] = 74207, + [SMALL_STATE(1472)] = 74302, + [SMALL_STATE(1473)] = 74397, + [SMALL_STATE(1474)] = 74448, + [SMALL_STATE(1475)] = 74543, + [SMALL_STATE(1476)] = 74598, + [SMALL_STATE(1477)] = 74693, + [SMALL_STATE(1478)] = 74780, + [SMALL_STATE(1479)] = 74867, + [SMALL_STATE(1480)] = 74954, + [SMALL_STATE(1481)] = 75041, + [SMALL_STATE(1482)] = 75126, + [SMALL_STATE(1483)] = 75213, + [SMALL_STATE(1484)] = 75300, + [SMALL_STATE(1485)] = 75387, + [SMALL_STATE(1486)] = 75474, + [SMALL_STATE(1487)] = 75561, + [SMALL_STATE(1488)] = 75648, + [SMALL_STATE(1489)] = 75735, + [SMALL_STATE(1490)] = 75822, + [SMALL_STATE(1491)] = 75909, + [SMALL_STATE(1492)] = 75996, + [SMALL_STATE(1493)] = 76083, + [SMALL_STATE(1494)] = 76170, + [SMALL_STATE(1495)] = 76257, + [SMALL_STATE(1496)] = 76344, + [SMALL_STATE(1497)] = 76431, + [SMALL_STATE(1498)] = 76518, + [SMALL_STATE(1499)] = 76605, + [SMALL_STATE(1500)] = 76692, + [SMALL_STATE(1501)] = 76779, + [SMALL_STATE(1502)] = 76856, + [SMALL_STATE(1503)] = 76922, + [SMALL_STATE(1504)] = 76994, + [SMALL_STATE(1505)] = 77060, + [SMALL_STATE(1506)] = 77121, + [SMALL_STATE(1507)] = 77186, + [SMALL_STATE(1508)] = 77249, + [SMALL_STATE(1509)] = 77314, + [SMALL_STATE(1510)] = 77379, + [SMALL_STATE(1511)] = 77444, + [SMALL_STATE(1512)] = 77507, + [SMALL_STATE(1513)] = 77570, + [SMALL_STATE(1514)] = 77633, + [SMALL_STATE(1515)] = 77698, + [SMALL_STATE(1516)] = 77761, + [SMALL_STATE(1517)] = 77826, + [SMALL_STATE(1518)] = 77891, + [SMALL_STATE(1519)] = 77954, + [SMALL_STATE(1520)] = 78017, + [SMALL_STATE(1521)] = 78075, + [SMALL_STATE(1522)] = 78133, + [SMALL_STATE(1523)] = 78191, + [SMALL_STATE(1524)] = 78249, + [SMALL_STATE(1525)] = 78309, + [SMALL_STATE(1526)] = 78367, + [SMALL_STATE(1527)] = 78425, + [SMALL_STATE(1528)] = 78483, + [SMALL_STATE(1529)] = 78542, + [SMALL_STATE(1530)] = 78599, + [SMALL_STATE(1531)] = 78654, + [SMALL_STATE(1532)] = 78711, + [SMALL_STATE(1533)] = 78778, + [SMALL_STATE(1534)] = 78832, + [SMALL_STATE(1535)] = 78894, + [SMALL_STATE(1536)] = 78946, + [SMALL_STATE(1537)] = 78996, + [SMALL_STATE(1538)] = 79048, + [SMALL_STATE(1539)] = 79110, + [SMALL_STATE(1540)] = 79164, + [SMALL_STATE(1541)] = 79220, + [SMALL_STATE(1542)] = 79272, + [SMALL_STATE(1543)] = 79326, + [SMALL_STATE(1544)] = 79378, + [SMALL_STATE(1545)] = 79425, + [SMALL_STATE(1546)] = 79472, + [SMALL_STATE(1547)] = 79505, + [SMALL_STATE(1548)] = 79542, + [SMALL_STATE(1549)] = 79575, + [SMALL_STATE(1550)] = 79622, + [SMALL_STATE(1551)] = 79669, + [SMALL_STATE(1552)] = 79716, + [SMALL_STATE(1553)] = 79763, + [SMALL_STATE(1554)] = 79810, + [SMALL_STATE(1555)] = 79840, + [SMALL_STATE(1556)] = 79870, + [SMALL_STATE(1557)] = 79900, + [SMALL_STATE(1558)] = 79930, + [SMALL_STATE(1559)] = 79960, + [SMALL_STATE(1560)] = 79990, + [SMALL_STATE(1561)] = 80020, + [SMALL_STATE(1562)] = 80050, + [SMALL_STATE(1563)] = 80080, + [SMALL_STATE(1564)] = 80110, + [SMALL_STATE(1565)] = 80140, + [SMALL_STATE(1566)] = 80170, + [SMALL_STATE(1567)] = 80200, + [SMALL_STATE(1568)] = 80230, + [SMALL_STATE(1569)] = 80260, + [SMALL_STATE(1570)] = 80290, + [SMALL_STATE(1571)] = 80320, + [SMALL_STATE(1572)] = 80350, + [SMALL_STATE(1573)] = 80380, + [SMALL_STATE(1574)] = 80412, + [SMALL_STATE(1575)] = 80442, + [SMALL_STATE(1576)] = 80472, + [SMALL_STATE(1577)] = 80502, + [SMALL_STATE(1578)] = 80532, + [SMALL_STATE(1579)] = 80562, + [SMALL_STATE(1580)] = 80592, + [SMALL_STATE(1581)] = 80622, + [SMALL_STATE(1582)] = 80652, + [SMALL_STATE(1583)] = 80682, + [SMALL_STATE(1584)] = 80718, + [SMALL_STATE(1585)] = 80748, + [SMALL_STATE(1586)] = 80778, + [SMALL_STATE(1587)] = 80808, + [SMALL_STATE(1588)] = 80838, + [SMALL_STATE(1589)] = 80868, + [SMALL_STATE(1590)] = 80898, + [SMALL_STATE(1591)] = 80928, + [SMALL_STATE(1592)] = 80958, + [SMALL_STATE(1593)] = 80988, + [SMALL_STATE(1594)] = 81018, + [SMALL_STATE(1595)] = 81048, + [SMALL_STATE(1596)] = 81082, + [SMALL_STATE(1597)] = 81131, + [SMALL_STATE(1598)] = 81164, + [SMALL_STATE(1599)] = 81213, + [SMALL_STATE(1600)] = 81258, + [SMALL_STATE(1601)] = 81287, + [SMALL_STATE(1602)] = 81334, + [SMALL_STATE(1603)] = 81385, + [SMALL_STATE(1604)] = 81434, + [SMALL_STATE(1605)] = 81481, + [SMALL_STATE(1606)] = 81532, + [SMALL_STATE(1607)] = 81581, + [SMALL_STATE(1608)] = 81623, + [SMALL_STATE(1609)] = 81665, + [SMALL_STATE(1610)] = 81707, + [SMALL_STATE(1611)] = 81753, + [SMALL_STATE(1612)] = 81801, + [SMALL_STATE(1613)] = 81843, + [SMALL_STATE(1614)] = 81871, + [SMALL_STATE(1615)] = 81919, + [SMALL_STATE(1616)] = 81947, + [SMALL_STATE(1617)] = 81989, + [SMALL_STATE(1618)] = 82031, + [SMALL_STATE(1619)] = 82077, + [SMALL_STATE(1620)] = 82125, + [SMALL_STATE(1621)] = 82167, + [SMALL_STATE(1622)] = 82209, + [SMALL_STATE(1623)] = 82237, + [SMALL_STATE(1624)] = 82279, + [SMALL_STATE(1625)] = 82321, + [SMALL_STATE(1626)] = 82349, + [SMALL_STATE(1627)] = 82391, + [SMALL_STATE(1628)] = 82439, + [SMALL_STATE(1629)] = 82481, + [SMALL_STATE(1630)] = 82523, + [SMALL_STATE(1631)] = 82565, + [SMALL_STATE(1632)] = 82607, + [SMALL_STATE(1633)] = 82649, + [SMALL_STATE(1634)] = 82697, + [SMALL_STATE(1635)] = 82739, + [SMALL_STATE(1636)] = 82781, + [SMALL_STATE(1637)] = 82829, + [SMALL_STATE(1638)] = 82857, + [SMALL_STATE(1639)] = 82899, + [SMALL_STATE(1640)] = 82941, + [SMALL_STATE(1641)] = 82983, + [SMALL_STATE(1642)] = 83025, + [SMALL_STATE(1643)] = 83073, + [SMALL_STATE(1644)] = 83115, + [SMALL_STATE(1645)] = 83157, + [SMALL_STATE(1646)] = 83185, + [SMALL_STATE(1647)] = 83212, + [SMALL_STATE(1648)] = 83251, + [SMALL_STATE(1649)] = 83290, + [SMALL_STATE(1650)] = 83329, + [SMALL_STATE(1651)] = 83356, + [SMALL_STATE(1652)] = 83395, + [SMALL_STATE(1653)] = 83422, + [SMALL_STATE(1654)] = 83449, + [SMALL_STATE(1655)] = 83488, + [SMALL_STATE(1656)] = 83527, + [SMALL_STATE(1657)] = 83554, + [SMALL_STATE(1658)] = 83593, + [SMALL_STATE(1659)] = 83620, + [SMALL_STATE(1660)] = 83659, + [SMALL_STATE(1661)] = 83698, + [SMALL_STATE(1662)] = 83737, + [SMALL_STATE(1663)] = 83776, + [SMALL_STATE(1664)] = 83815, + [SMALL_STATE(1665)] = 83854, + [SMALL_STATE(1666)] = 83881, + [SMALL_STATE(1667)] = 83908, + [SMALL_STATE(1668)] = 83935, + [SMALL_STATE(1669)] = 83974, + [SMALL_STATE(1670)] = 84013, + [SMALL_STATE(1671)] = 84040, + [SMALL_STATE(1672)] = 84079, + [SMALL_STATE(1673)] = 84118, + [SMALL_STATE(1674)] = 84157, + [SMALL_STATE(1675)] = 84184, + [SMALL_STATE(1676)] = 84225, + [SMALL_STATE(1677)] = 84266, + [SMALL_STATE(1678)] = 84307, + [SMALL_STATE(1679)] = 84348, + [SMALL_STATE(1680)] = 84389, + [SMALL_STATE(1681)] = 84430, + [SMALL_STATE(1682)] = 84469, + [SMALL_STATE(1683)] = 84510, + [SMALL_STATE(1684)] = 84551, + [SMALL_STATE(1685)] = 84592, + [SMALL_STATE(1686)] = 84633, + [SMALL_STATE(1687)] = 84674, + [SMALL_STATE(1688)] = 84715, + [SMALL_STATE(1689)] = 84751, + [SMALL_STATE(1690)] = 84790, + [SMALL_STATE(1691)] = 84829, + [SMALL_STATE(1692)] = 84868, + [SMALL_STATE(1693)] = 84907, + [SMALL_STATE(1694)] = 84943, + [SMALL_STATE(1695)] = 84979, + [SMALL_STATE(1696)] = 85015, + [SMALL_STATE(1697)] = 85051, + [SMALL_STATE(1698)] = 85087, + [SMALL_STATE(1699)] = 85123, + [SMALL_STATE(1700)] = 85159, + [SMALL_STATE(1701)] = 85195, + [SMALL_STATE(1702)] = 85226, + [SMALL_STATE(1703)] = 85259, + [SMALL_STATE(1704)] = 85292, + [SMALL_STATE(1705)] = 85325, + [SMALL_STATE(1706)] = 85358, + [SMALL_STATE(1707)] = 85391, + [SMALL_STATE(1708)] = 85424, + [SMALL_STATE(1709)] = 85455, + [SMALL_STATE(1710)] = 85484, + [SMALL_STATE(1711)] = 85517, + [SMALL_STATE(1712)] = 85550, + [SMALL_STATE(1713)] = 85583, + [SMALL_STATE(1714)] = 85616, + [SMALL_STATE(1715)] = 85649, + [SMALL_STATE(1716)] = 85682, + [SMALL_STATE(1717)] = 85715, + [SMALL_STATE(1718)] = 85748, + [SMALL_STATE(1719)] = 85781, + [SMALL_STATE(1720)] = 85814, + [SMALL_STATE(1721)] = 85847, + [SMALL_STATE(1722)] = 85880, + [SMALL_STATE(1723)] = 85913, + [SMALL_STATE(1724)] = 85946, + [SMALL_STATE(1725)] = 85980, + [SMALL_STATE(1726)] = 86014, + [SMALL_STATE(1727)] = 86043, + [SMALL_STATE(1728)] = 86074, + [SMALL_STATE(1729)] = 86103, + [SMALL_STATE(1730)] = 86132, + [SMALL_STATE(1731)] = 86163, + [SMALL_STATE(1732)] = 86192, + [SMALL_STATE(1733)] = 86221, + [SMALL_STATE(1734)] = 86250, + [SMALL_STATE(1735)] = 86279, + [SMALL_STATE(1736)] = 86298, + [SMALL_STATE(1737)] = 86327, + [SMALL_STATE(1738)] = 86356, + [SMALL_STATE(1739)] = 86385, + [SMALL_STATE(1740)] = 86414, + [SMALL_STATE(1741)] = 86443, + [SMALL_STATE(1742)] = 86464, + [SMALL_STATE(1743)] = 86493, + [SMALL_STATE(1744)] = 86512, + [SMALL_STATE(1745)] = 86541, + [SMALL_STATE(1746)] = 86572, + [SMALL_STATE(1747)] = 86601, + [SMALL_STATE(1748)] = 86630, + [SMALL_STATE(1749)] = 86649, + [SMALL_STATE(1750)] = 86668, + [SMALL_STATE(1751)] = 86691, + [SMALL_STATE(1752)] = 86720, + [SMALL_STATE(1753)] = 86751, + [SMALL_STATE(1754)] = 86780, + [SMALL_STATE(1755)] = 86809, + [SMALL_STATE(1756)] = 86830, + [SMALL_STATE(1757)] = 86855, + [SMALL_STATE(1758)] = 86874, + [SMALL_STATE(1759)] = 86903, + [SMALL_STATE(1760)] = 86928, + [SMALL_STATE(1761)] = 86947, + [SMALL_STATE(1762)] = 86965, + [SMALL_STATE(1763)] = 86991, + [SMALL_STATE(1764)] = 87009, + [SMALL_STATE(1765)] = 87027, + [SMALL_STATE(1766)] = 87045, + [SMALL_STATE(1767)] = 87071, + [SMALL_STATE(1768)] = 87089, + [SMALL_STATE(1769)] = 87115, + [SMALL_STATE(1770)] = 87141, + [SMALL_STATE(1771)] = 87167, + [SMALL_STATE(1772)] = 87185, + [SMALL_STATE(1773)] = 87211, + [SMALL_STATE(1774)] = 87229, + [SMALL_STATE(1775)] = 87247, + [SMALL_STATE(1776)] = 87265, + [SMALL_STATE(1777)] = 87283, + [SMALL_STATE(1778)] = 87311, + [SMALL_STATE(1779)] = 87335, + [SMALL_STATE(1780)] = 87355, + [SMALL_STATE(1781)] = 87373, + [SMALL_STATE(1782)] = 87395, + [SMALL_STATE(1783)] = 87413, + [SMALL_STATE(1784)] = 87437, + [SMALL_STATE(1785)] = 87455, + [SMALL_STATE(1786)] = 87473, + [SMALL_STATE(1787)] = 87499, + [SMALL_STATE(1788)] = 87525, + [SMALL_STATE(1789)] = 87543, + [SMALL_STATE(1790)] = 87569, + [SMALL_STATE(1791)] = 87595, + [SMALL_STATE(1792)] = 87621, + [SMALL_STATE(1793)] = 87647, + [SMALL_STATE(1794)] = 87665, + [SMALL_STATE(1795)] = 87691, + [SMALL_STATE(1796)] = 87717, + [SMALL_STATE(1797)] = 87743, + [SMALL_STATE(1798)] = 87761, + [SMALL_STATE(1799)] = 87779, + [SMALL_STATE(1800)] = 87805, + [SMALL_STATE(1801)] = 87823, + [SMALL_STATE(1802)] = 87841, + [SMALL_STATE(1803)] = 87859, + [SMALL_STATE(1804)] = 87877, + [SMALL_STATE(1805)] = 87903, + [SMALL_STATE(1806)] = 87927, + [SMALL_STATE(1807)] = 87945, + [SMALL_STATE(1808)] = 87971, + [SMALL_STATE(1809)] = 87997, + [SMALL_STATE(1810)] = 88015, + [SMALL_STATE(1811)] = 88033, + [SMALL_STATE(1812)] = 88059, + [SMALL_STATE(1813)] = 88077, + [SMALL_STATE(1814)] = 88103, + [SMALL_STATE(1815)] = 88131, + [SMALL_STATE(1816)] = 88149, + [SMALL_STATE(1817)] = 88167, + [SMALL_STATE(1818)] = 88185, + [SMALL_STATE(1819)] = 88211, + [SMALL_STATE(1820)] = 88237, + [SMALL_STATE(1821)] = 88255, + [SMALL_STATE(1822)] = 88273, + [SMALL_STATE(1823)] = 88293, + [SMALL_STATE(1824)] = 88319, + [SMALL_STATE(1825)] = 88345, + [SMALL_STATE(1826)] = 88363, + [SMALL_STATE(1827)] = 88381, + [SMALL_STATE(1828)] = 88407, + [SMALL_STATE(1829)] = 88433, + [SMALL_STATE(1830)] = 88451, + [SMALL_STATE(1831)] = 88477, + [SMALL_STATE(1832)] = 88502, + [SMALL_STATE(1833)] = 88527, + [SMALL_STATE(1834)] = 88552, + [SMALL_STATE(1835)] = 88573, + [SMALL_STATE(1836)] = 88590, + [SMALL_STATE(1837)] = 88615, + [SMALL_STATE(1838)] = 88634, + [SMALL_STATE(1839)] = 88659, + [SMALL_STATE(1840)] = 88684, + [SMALL_STATE(1841)] = 88709, + [SMALL_STATE(1842)] = 88726, + [SMALL_STATE(1843)] = 88751, + [SMALL_STATE(1844)] = 88776, + [SMALL_STATE(1845)] = 88801, + [SMALL_STATE(1846)] = 88818, + [SMALL_STATE(1847)] = 88843, + [SMALL_STATE(1848)] = 88868, + [SMALL_STATE(1849)] = 88885, + [SMALL_STATE(1850)] = 88902, + [SMALL_STATE(1851)] = 88927, + [SMALL_STATE(1852)] = 88952, + [SMALL_STATE(1853)] = 88969, + [SMALL_STATE(1854)] = 88988, + [SMALL_STATE(1855)] = 89013, + [SMALL_STATE(1856)] = 89030, + [SMALL_STATE(1857)] = 89055, + [SMALL_STATE(1858)] = 89072, + [SMALL_STATE(1859)] = 89097, + [SMALL_STATE(1860)] = 89122, + [SMALL_STATE(1861)] = 89139, + [SMALL_STATE(1862)] = 89164, + [SMALL_STATE(1863)] = 89185, + [SMALL_STATE(1864)] = 89202, + [SMALL_STATE(1865)] = 89219, + [SMALL_STATE(1866)] = 89236, + [SMALL_STATE(1867)] = 89261, + [SMALL_STATE(1868)] = 89278, + [SMALL_STATE(1869)] = 89297, + [SMALL_STATE(1870)] = 89314, + [SMALL_STATE(1871)] = 89331, + [SMALL_STATE(1872)] = 89348, + [SMALL_STATE(1873)] = 89371, + [SMALL_STATE(1874)] = 89396, + [SMALL_STATE(1875)] = 89421, + [SMALL_STATE(1876)] = 89446, + [SMALL_STATE(1877)] = 89463, + [SMALL_STATE(1878)] = 89488, + [SMALL_STATE(1879)] = 89513, + [SMALL_STATE(1880)] = 89538, + [SMALL_STATE(1881)] = 89563, + [SMALL_STATE(1882)] = 89588, + [SMALL_STATE(1883)] = 89609, + [SMALL_STATE(1884)] = 89634, + [SMALL_STATE(1885)] = 89659, + [SMALL_STATE(1886)] = 89684, + [SMALL_STATE(1887)] = 89701, + [SMALL_STATE(1888)] = 89718, + [SMALL_STATE(1889)] = 89743, + [SMALL_STATE(1890)] = 89768, + [SMALL_STATE(1891)] = 89789, + [SMALL_STATE(1892)] = 89806, + [SMALL_STATE(1893)] = 89826, + [SMALL_STATE(1894)] = 89846, + [SMALL_STATE(1895)] = 89868, + [SMALL_STATE(1896)] = 89884, + [SMALL_STATE(1897)] = 89906, + [SMALL_STATE(1898)] = 89926, + [SMALL_STATE(1899)] = 89948, + [SMALL_STATE(1900)] = 89968, + [SMALL_STATE(1901)] = 89986, + [SMALL_STATE(1902)] = 90004, + [SMALL_STATE(1903)] = 90026, + [SMALL_STATE(1904)] = 90048, + [SMALL_STATE(1905)] = 90070, + [SMALL_STATE(1906)] = 90090, + [SMALL_STATE(1907)] = 90112, + [SMALL_STATE(1908)] = 90132, + [SMALL_STATE(1909)] = 90148, + [SMALL_STATE(1910)] = 90168, + [SMALL_STATE(1911)] = 90188, + [SMALL_STATE(1912)] = 90208, + [SMALL_STATE(1913)] = 90228, + [SMALL_STATE(1914)] = 90248, + [SMALL_STATE(1915)] = 90268, + [SMALL_STATE(1916)] = 90288, + [SMALL_STATE(1917)] = 90308, + [SMALL_STATE(1918)] = 90330, + [SMALL_STATE(1919)] = 90352, + [SMALL_STATE(1920)] = 90374, + [SMALL_STATE(1921)] = 90396, + [SMALL_STATE(1922)] = 90418, + [SMALL_STATE(1923)] = 90438, + [SMALL_STATE(1924)] = 90458, + [SMALL_STATE(1925)] = 90480, + [SMALL_STATE(1926)] = 90502, + [SMALL_STATE(1927)] = 90522, + [SMALL_STATE(1928)] = 90542, + [SMALL_STATE(1929)] = 90564, + [SMALL_STATE(1930)] = 90586, + [SMALL_STATE(1931)] = 90608, + [SMALL_STATE(1932)] = 90630, + [SMALL_STATE(1933)] = 90650, + [SMALL_STATE(1934)] = 90672, + [SMALL_STATE(1935)] = 90692, + [SMALL_STATE(1936)] = 90714, + [SMALL_STATE(1937)] = 90734, + [SMALL_STATE(1938)] = 90756, + [SMALL_STATE(1939)] = 90778, + [SMALL_STATE(1940)] = 90800, + [SMALL_STATE(1941)] = 90822, + [SMALL_STATE(1942)] = 90842, + [SMALL_STATE(1943)] = 90858, + [SMALL_STATE(1944)] = 90874, + [SMALL_STATE(1945)] = 90896, + [SMALL_STATE(1946)] = 90918, + [SMALL_STATE(1947)] = 90940, + [SMALL_STATE(1948)] = 90956, + [SMALL_STATE(1949)] = 90972, + [SMALL_STATE(1950)] = 90992, + [SMALL_STATE(1951)] = 91014, + [SMALL_STATE(1952)] = 91034, + [SMALL_STATE(1953)] = 91056, + [SMALL_STATE(1954)] = 91072, + [SMALL_STATE(1955)] = 91092, + [SMALL_STATE(1956)] = 91112, + [SMALL_STATE(1957)] = 91132, + [SMALL_STATE(1958)] = 91154, + [SMALL_STATE(1959)] = 91174, + [SMALL_STATE(1960)] = 91196, + [SMALL_STATE(1961)] = 91216, + [SMALL_STATE(1962)] = 91238, + [SMALL_STATE(1963)] = 91260, + [SMALL_STATE(1964)] = 91282, + [SMALL_STATE(1965)] = 91302, + [SMALL_STATE(1966)] = 91320, + [SMALL_STATE(1967)] = 91340, + [SMALL_STATE(1968)] = 91360, + [SMALL_STATE(1969)] = 91380, + [SMALL_STATE(1970)] = 91400, + [SMALL_STATE(1971)] = 91420, + [SMALL_STATE(1972)] = 91436, + [SMALL_STATE(1973)] = 91456, + [SMALL_STATE(1974)] = 91472, + [SMALL_STATE(1975)] = 91492, + [SMALL_STATE(1976)] = 91514, + [SMALL_STATE(1977)] = 91536, + [SMALL_STATE(1978)] = 91558, + [SMALL_STATE(1979)] = 91578, + [SMALL_STATE(1980)] = 91598, + [SMALL_STATE(1981)] = 91618, + [SMALL_STATE(1982)] = 91640, + [SMALL_STATE(1983)] = 91662, + [SMALL_STATE(1984)] = 91684, + [SMALL_STATE(1985)] = 91702, + [SMALL_STATE(1986)] = 91724, + [SMALL_STATE(1987)] = 91744, + [SMALL_STATE(1988)] = 91766, + [SMALL_STATE(1989)] = 91784, + [SMALL_STATE(1990)] = 91806, + [SMALL_STATE(1991)] = 91824, + [SMALL_STATE(1992)] = 91844, + [SMALL_STATE(1993)] = 91866, + [SMALL_STATE(1994)] = 91882, + [SMALL_STATE(1995)] = 91902, + [SMALL_STATE(1996)] = 91922, + [SMALL_STATE(1997)] = 91942, + [SMALL_STATE(1998)] = 91964, + [SMALL_STATE(1999)] = 91984, + [SMALL_STATE(2000)] = 92004, + [SMALL_STATE(2001)] = 92022, + [SMALL_STATE(2002)] = 92044, + [SMALL_STATE(2003)] = 92064, + [SMALL_STATE(2004)] = 92086, + [SMALL_STATE(2005)] = 92106, + [SMALL_STATE(2006)] = 92128, + [SMALL_STATE(2007)] = 92150, + [SMALL_STATE(2008)] = 92170, + [SMALL_STATE(2009)] = 92190, + [SMALL_STATE(2010)] = 92212, + [SMALL_STATE(2011)] = 92234, + [SMALL_STATE(2012)] = 92256, + [SMALL_STATE(2013)] = 92278, + [SMALL_STATE(2014)] = 92300, + [SMALL_STATE(2015)] = 92322, + [SMALL_STATE(2016)] = 92344, + [SMALL_STATE(2017)] = 92366, + [SMALL_STATE(2018)] = 92388, + [SMALL_STATE(2019)] = 92410, + [SMALL_STATE(2020)] = 92432, + [SMALL_STATE(2021)] = 92454, + [SMALL_STATE(2022)] = 92476, + [SMALL_STATE(2023)] = 92498, + [SMALL_STATE(2024)] = 92518, + [SMALL_STATE(2025)] = 92538, + [SMALL_STATE(2026)] = 92560, + [SMALL_STATE(2027)] = 92582, + [SMALL_STATE(2028)] = 92602, + [SMALL_STATE(2029)] = 92624, + [SMALL_STATE(2030)] = 92646, + [SMALL_STATE(2031)] = 92668, + [SMALL_STATE(2032)] = 92688, + [SMALL_STATE(2033)] = 92708, + [SMALL_STATE(2034)] = 92728, + [SMALL_STATE(2035)] = 92747, + [SMALL_STATE(2036)] = 92766, + [SMALL_STATE(2037)] = 92785, + [SMALL_STATE(2038)] = 92804, + [SMALL_STATE(2039)] = 92823, + [SMALL_STATE(2040)] = 92842, + [SMALL_STATE(2041)] = 92861, + [SMALL_STATE(2042)] = 92880, + [SMALL_STATE(2043)] = 92899, + [SMALL_STATE(2044)] = 92918, + [SMALL_STATE(2045)] = 92935, + [SMALL_STATE(2046)] = 92954, + [SMALL_STATE(2047)] = 92973, + [SMALL_STATE(2048)] = 92992, + [SMALL_STATE(2049)] = 93009, + [SMALL_STATE(2050)] = 93026, + [SMALL_STATE(2051)] = 93045, + [SMALL_STATE(2052)] = 93064, + [SMALL_STATE(2053)] = 93083, + [SMALL_STATE(2054)] = 93100, + [SMALL_STATE(2055)] = 93119, + [SMALL_STATE(2056)] = 93134, + [SMALL_STATE(2057)] = 93153, + [SMALL_STATE(2058)] = 93172, + [SMALL_STATE(2059)] = 93187, + [SMALL_STATE(2060)] = 93206, + [SMALL_STATE(2061)] = 93225, + [SMALL_STATE(2062)] = 93242, + [SMALL_STATE(2063)] = 93257, + [SMALL_STATE(2064)] = 93276, + [SMALL_STATE(2065)] = 93295, + [SMALL_STATE(2066)] = 93310, + [SMALL_STATE(2067)] = 93329, + [SMALL_STATE(2068)] = 93348, + [SMALL_STATE(2069)] = 93363, + [SMALL_STATE(2070)] = 93382, + [SMALL_STATE(2071)] = 93399, + [SMALL_STATE(2072)] = 93416, + [SMALL_STATE(2073)] = 93435, + [SMALL_STATE(2074)] = 93454, + [SMALL_STATE(2075)] = 93473, + [SMALL_STATE(2076)] = 93492, + [SMALL_STATE(2077)] = 93511, + [SMALL_STATE(2078)] = 93530, + [SMALL_STATE(2079)] = 93549, + [SMALL_STATE(2080)] = 93566, + [SMALL_STATE(2081)] = 93585, + [SMALL_STATE(2082)] = 93604, + [SMALL_STATE(2083)] = 93619, + [SMALL_STATE(2084)] = 93638, + [SMALL_STATE(2085)] = 93657, + [SMALL_STATE(2086)] = 93676, + [SMALL_STATE(2087)] = 93695, + [SMALL_STATE(2088)] = 93714, + [SMALL_STATE(2089)] = 93733, + [SMALL_STATE(2090)] = 93752, + [SMALL_STATE(2091)] = 93771, + [SMALL_STATE(2092)] = 93788, + [SMALL_STATE(2093)] = 93807, + [SMALL_STATE(2094)] = 93826, + [SMALL_STATE(2095)] = 93845, + [SMALL_STATE(2096)] = 93860, + [SMALL_STATE(2097)] = 93879, + [SMALL_STATE(2098)] = 93896, + [SMALL_STATE(2099)] = 93915, + [SMALL_STATE(2100)] = 93934, + [SMALL_STATE(2101)] = 93953, + [SMALL_STATE(2102)] = 93970, + [SMALL_STATE(2103)] = 93987, + [SMALL_STATE(2104)] = 94004, + [SMALL_STATE(2105)] = 94019, + [SMALL_STATE(2106)] = 94036, + [SMALL_STATE(2107)] = 94055, + [SMALL_STATE(2108)] = 94070, + [SMALL_STATE(2109)] = 94089, + [SMALL_STATE(2110)] = 94108, + [SMALL_STATE(2111)] = 94127, + [SMALL_STATE(2112)] = 94144, + [SMALL_STATE(2113)] = 94163, + [SMALL_STATE(2114)] = 94182, + [SMALL_STATE(2115)] = 94199, + [SMALL_STATE(2116)] = 94218, + [SMALL_STATE(2117)] = 94233, + [SMALL_STATE(2118)] = 94252, + [SMALL_STATE(2119)] = 94271, + [SMALL_STATE(2120)] = 94286, + [SMALL_STATE(2121)] = 94305, + [SMALL_STATE(2122)] = 94324, + [SMALL_STATE(2123)] = 94343, + [SMALL_STATE(2124)] = 94362, + [SMALL_STATE(2125)] = 94381, + [SMALL_STATE(2126)] = 94398, + [SMALL_STATE(2127)] = 94417, + [SMALL_STATE(2128)] = 94432, + [SMALL_STATE(2129)] = 94451, + [SMALL_STATE(2130)] = 94470, + [SMALL_STATE(2131)] = 94487, + [SMALL_STATE(2132)] = 94506, + [SMALL_STATE(2133)] = 94525, + [SMALL_STATE(2134)] = 94544, + [SMALL_STATE(2135)] = 94563, + [SMALL_STATE(2136)] = 94582, + [SMALL_STATE(2137)] = 94601, + [SMALL_STATE(2138)] = 94620, + [SMALL_STATE(2139)] = 94639, + [SMALL_STATE(2140)] = 94658, + [SMALL_STATE(2141)] = 94677, + [SMALL_STATE(2142)] = 94696, + [SMALL_STATE(2143)] = 94715, + [SMALL_STATE(2144)] = 94734, + [SMALL_STATE(2145)] = 94749, + [SMALL_STATE(2146)] = 94764, + [SMALL_STATE(2147)] = 94783, + [SMALL_STATE(2148)] = 94802, + [SMALL_STATE(2149)] = 94821, + [SMALL_STATE(2150)] = 94840, + [SMALL_STATE(2151)] = 94859, + [SMALL_STATE(2152)] = 94874, + [SMALL_STATE(2153)] = 94893, + [SMALL_STATE(2154)] = 94908, + [SMALL_STATE(2155)] = 94927, + [SMALL_STATE(2156)] = 94946, + [SMALL_STATE(2157)] = 94965, + [SMALL_STATE(2158)] = 94982, + [SMALL_STATE(2159)] = 94999, + [SMALL_STATE(2160)] = 95016, + [SMALL_STATE(2161)] = 95035, + [SMALL_STATE(2162)] = 95054, + [SMALL_STATE(2163)] = 95073, + [SMALL_STATE(2164)] = 95092, + [SMALL_STATE(2165)] = 95109, + [SMALL_STATE(2166)] = 95126, + [SMALL_STATE(2167)] = 95145, + [SMALL_STATE(2168)] = 95164, + [SMALL_STATE(2169)] = 95179, + [SMALL_STATE(2170)] = 95196, + [SMALL_STATE(2171)] = 95215, + [SMALL_STATE(2172)] = 95234, + [SMALL_STATE(2173)] = 95249, + [SMALL_STATE(2174)] = 95268, + [SMALL_STATE(2175)] = 95285, + [SMALL_STATE(2176)] = 95302, + [SMALL_STATE(2177)] = 95321, + [SMALL_STATE(2178)] = 95340, + [SMALL_STATE(2179)] = 95355, + [SMALL_STATE(2180)] = 95374, + [SMALL_STATE(2181)] = 95393, + [SMALL_STATE(2182)] = 95410, + [SMALL_STATE(2183)] = 95427, + [SMALL_STATE(2184)] = 95442, + [SMALL_STATE(2185)] = 95457, + [SMALL_STATE(2186)] = 95472, + [SMALL_STATE(2187)] = 95491, + [SMALL_STATE(2188)] = 95510, + [SMALL_STATE(2189)] = 95527, + [SMALL_STATE(2190)] = 95546, + [SMALL_STATE(2191)] = 95562, + [SMALL_STATE(2192)] = 95578, + [SMALL_STATE(2193)] = 95594, + [SMALL_STATE(2194)] = 95610, + [SMALL_STATE(2195)] = 95626, + [SMALL_STATE(2196)] = 95642, + [SMALL_STATE(2197)] = 95658, + [SMALL_STATE(2198)] = 95674, + [SMALL_STATE(2199)] = 95690, + [SMALL_STATE(2200)] = 95706, + [SMALL_STATE(2201)] = 95720, + [SMALL_STATE(2202)] = 95734, + [SMALL_STATE(2203)] = 95748, + [SMALL_STATE(2204)] = 95764, + [SMALL_STATE(2205)] = 95778, + [SMALL_STATE(2206)] = 95792, + [SMALL_STATE(2207)] = 95808, + [SMALL_STATE(2208)] = 95824, + [SMALL_STATE(2209)] = 95840, + [SMALL_STATE(2210)] = 95856, + [SMALL_STATE(2211)] = 95870, + [SMALL_STATE(2212)] = 95884, + [SMALL_STATE(2213)] = 95898, + [SMALL_STATE(2214)] = 95914, + [SMALL_STATE(2215)] = 95928, + [SMALL_STATE(2216)] = 95942, + [SMALL_STATE(2217)] = 95958, + [SMALL_STATE(2218)] = 95974, + [SMALL_STATE(2219)] = 95990, + [SMALL_STATE(2220)] = 96006, + [SMALL_STATE(2221)] = 96022, + [SMALL_STATE(2222)] = 96038, + [SMALL_STATE(2223)] = 96052, + [SMALL_STATE(2224)] = 96066, + [SMALL_STATE(2225)] = 96082, + [SMALL_STATE(2226)] = 96096, + [SMALL_STATE(2227)] = 96112, + [SMALL_STATE(2228)] = 96128, + [SMALL_STATE(2229)] = 96144, + [SMALL_STATE(2230)] = 96158, + [SMALL_STATE(2231)] = 96174, + [SMALL_STATE(2232)] = 96190, + [SMALL_STATE(2233)] = 96204, + [SMALL_STATE(2234)] = 96218, + [SMALL_STATE(2235)] = 96232, + [SMALL_STATE(2236)] = 96246, + [SMALL_STATE(2237)] = 96260, + [SMALL_STATE(2238)] = 96276, + [SMALL_STATE(2239)] = 96292, + [SMALL_STATE(2240)] = 96306, + [SMALL_STATE(2241)] = 96320, + [SMALL_STATE(2242)] = 96334, + [SMALL_STATE(2243)] = 96348, + [SMALL_STATE(2244)] = 96362, + [SMALL_STATE(2245)] = 96376, + [SMALL_STATE(2246)] = 96392, + [SMALL_STATE(2247)] = 96408, + [SMALL_STATE(2248)] = 96424, + [SMALL_STATE(2249)] = 96440, + [SMALL_STATE(2250)] = 96454, + [SMALL_STATE(2251)] = 96468, + [SMALL_STATE(2252)] = 96484, + [SMALL_STATE(2253)] = 96498, + [SMALL_STATE(2254)] = 96512, + [SMALL_STATE(2255)] = 96526, + [SMALL_STATE(2256)] = 96540, + [SMALL_STATE(2257)] = 96554, + [SMALL_STATE(2258)] = 96568, + [SMALL_STATE(2259)] = 96582, + [SMALL_STATE(2260)] = 96598, + [SMALL_STATE(2261)] = 96614, + [SMALL_STATE(2262)] = 96630, + [SMALL_STATE(2263)] = 96646, + [SMALL_STATE(2264)] = 96662, + [SMALL_STATE(2265)] = 96678, + [SMALL_STATE(2266)] = 96694, + [SMALL_STATE(2267)] = 96710, + [SMALL_STATE(2268)] = 96726, + [SMALL_STATE(2269)] = 96742, + [SMALL_STATE(2270)] = 96758, + [SMALL_STATE(2271)] = 96772, + [SMALL_STATE(2272)] = 96788, + [SMALL_STATE(2273)] = 96804, + [SMALL_STATE(2274)] = 96820, + [SMALL_STATE(2275)] = 96836, + [SMALL_STATE(2276)] = 96852, + [SMALL_STATE(2277)] = 96868, + [SMALL_STATE(2278)] = 96884, + [SMALL_STATE(2279)] = 96900, + [SMALL_STATE(2280)] = 96916, + [SMALL_STATE(2281)] = 96932, + [SMALL_STATE(2282)] = 96948, + [SMALL_STATE(2283)] = 96964, + [SMALL_STATE(2284)] = 96980, + [SMALL_STATE(2285)] = 96994, + [SMALL_STATE(2286)] = 97010, + [SMALL_STATE(2287)] = 97026, + [SMALL_STATE(2288)] = 97042, + [SMALL_STATE(2289)] = 97058, + [SMALL_STATE(2290)] = 97074, + [SMALL_STATE(2291)] = 97090, + [SMALL_STATE(2292)] = 97106, + [SMALL_STATE(2293)] = 97122, + [SMALL_STATE(2294)] = 97138, + [SMALL_STATE(2295)] = 97154, + [SMALL_STATE(2296)] = 97170, + [SMALL_STATE(2297)] = 97186, + [SMALL_STATE(2298)] = 97202, + [SMALL_STATE(2299)] = 97218, + [SMALL_STATE(2300)] = 97234, + [SMALL_STATE(2301)] = 97250, + [SMALL_STATE(2302)] = 97266, + [SMALL_STATE(2303)] = 97280, + [SMALL_STATE(2304)] = 97294, + [SMALL_STATE(2305)] = 97310, + [SMALL_STATE(2306)] = 97326, + [SMALL_STATE(2307)] = 97342, + [SMALL_STATE(2308)] = 97358, + [SMALL_STATE(2309)] = 97374, + [SMALL_STATE(2310)] = 97390, + [SMALL_STATE(2311)] = 97406, + [SMALL_STATE(2312)] = 97422, + [SMALL_STATE(2313)] = 97438, + [SMALL_STATE(2314)] = 97454, + [SMALL_STATE(2315)] = 97470, + [SMALL_STATE(2316)] = 97486, + [SMALL_STATE(2317)] = 97502, + [SMALL_STATE(2318)] = 97518, + [SMALL_STATE(2319)] = 97532, + [SMALL_STATE(2320)] = 97548, + [SMALL_STATE(2321)] = 97564, + [SMALL_STATE(2322)] = 97580, + [SMALL_STATE(2323)] = 97596, + [SMALL_STATE(2324)] = 97612, + [SMALL_STATE(2325)] = 97628, + [SMALL_STATE(2326)] = 97644, + [SMALL_STATE(2327)] = 97660, + [SMALL_STATE(2328)] = 97676, + [SMALL_STATE(2329)] = 97692, + [SMALL_STATE(2330)] = 97708, + [SMALL_STATE(2331)] = 97724, + [SMALL_STATE(2332)] = 97740, + [SMALL_STATE(2333)] = 97756, + [SMALL_STATE(2334)] = 97772, + [SMALL_STATE(2335)] = 97788, + [SMALL_STATE(2336)] = 97802, + [SMALL_STATE(2337)] = 97816, + [SMALL_STATE(2338)] = 97832, + [SMALL_STATE(2339)] = 97848, + [SMALL_STATE(2340)] = 97864, + [SMALL_STATE(2341)] = 97880, + [SMALL_STATE(2342)] = 97896, + [SMALL_STATE(2343)] = 97912, + [SMALL_STATE(2344)] = 97928, + [SMALL_STATE(2345)] = 97944, + [SMALL_STATE(2346)] = 97958, + [SMALL_STATE(2347)] = 97972, + [SMALL_STATE(2348)] = 97988, + [SMALL_STATE(2349)] = 98004, + [SMALL_STATE(2350)] = 98020, + [SMALL_STATE(2351)] = 98034, + [SMALL_STATE(2352)] = 98048, + [SMALL_STATE(2353)] = 98064, + [SMALL_STATE(2354)] = 98080, + [SMALL_STATE(2355)] = 98094, + [SMALL_STATE(2356)] = 98110, + [SMALL_STATE(2357)] = 98126, + [SMALL_STATE(2358)] = 98142, + [SMALL_STATE(2359)] = 98156, + [SMALL_STATE(2360)] = 98170, + [SMALL_STATE(2361)] = 98186, + [SMALL_STATE(2362)] = 98202, + [SMALL_STATE(2363)] = 98218, + [SMALL_STATE(2364)] = 98234, + [SMALL_STATE(2365)] = 98250, + [SMALL_STATE(2366)] = 98266, + [SMALL_STATE(2367)] = 98282, + [SMALL_STATE(2368)] = 98296, + [SMALL_STATE(2369)] = 98312, + [SMALL_STATE(2370)] = 98328, + [SMALL_STATE(2371)] = 98344, + [SMALL_STATE(2372)] = 98360, + [SMALL_STATE(2373)] = 98376, + [SMALL_STATE(2374)] = 98390, + [SMALL_STATE(2375)] = 98406, + [SMALL_STATE(2376)] = 98420, + [SMALL_STATE(2377)] = 98434, + [SMALL_STATE(2378)] = 98448, + [SMALL_STATE(2379)] = 98462, + [SMALL_STATE(2380)] = 98478, + [SMALL_STATE(2381)] = 98492, + [SMALL_STATE(2382)] = 98506, + [SMALL_STATE(2383)] = 98522, + [SMALL_STATE(2384)] = 98538, + [SMALL_STATE(2385)] = 98554, + [SMALL_STATE(2386)] = 98568, + [SMALL_STATE(2387)] = 98584, + [SMALL_STATE(2388)] = 98598, + [SMALL_STATE(2389)] = 98612, + [SMALL_STATE(2390)] = 98628, + [SMALL_STATE(2391)] = 98644, + [SMALL_STATE(2392)] = 98658, + [SMALL_STATE(2393)] = 98672, + [SMALL_STATE(2394)] = 98686, + [SMALL_STATE(2395)] = 98700, + [SMALL_STATE(2396)] = 98716, + [SMALL_STATE(2397)] = 98732, + [SMALL_STATE(2398)] = 98748, + [SMALL_STATE(2399)] = 98764, + [SMALL_STATE(2400)] = 98780, + [SMALL_STATE(2401)] = 98796, + [SMALL_STATE(2402)] = 98812, + [SMALL_STATE(2403)] = 98828, + [SMALL_STATE(2404)] = 98844, + [SMALL_STATE(2405)] = 98858, + [SMALL_STATE(2406)] = 98872, + [SMALL_STATE(2407)] = 98888, + [SMALL_STATE(2408)] = 98904, + [SMALL_STATE(2409)] = 98918, + [SMALL_STATE(2410)] = 98932, + [SMALL_STATE(2411)] = 98948, + [SMALL_STATE(2412)] = 98962, + [SMALL_STATE(2413)] = 98978, + [SMALL_STATE(2414)] = 98994, + [SMALL_STATE(2415)] = 99010, + [SMALL_STATE(2416)] = 99026, + [SMALL_STATE(2417)] = 99040, + [SMALL_STATE(2418)] = 99056, + [SMALL_STATE(2419)] = 99072, + [SMALL_STATE(2420)] = 99088, + [SMALL_STATE(2421)] = 99104, + [SMALL_STATE(2422)] = 99120, + [SMALL_STATE(2423)] = 99136, + [SMALL_STATE(2424)] = 99152, + [SMALL_STATE(2425)] = 99166, + [SMALL_STATE(2426)] = 99182, + [SMALL_STATE(2427)] = 99198, + [SMALL_STATE(2428)] = 99214, + [SMALL_STATE(2429)] = 99230, + [SMALL_STATE(2430)] = 99244, + [SMALL_STATE(2431)] = 99260, + [SMALL_STATE(2432)] = 99276, + [SMALL_STATE(2433)] = 99292, + [SMALL_STATE(2434)] = 99308, + [SMALL_STATE(2435)] = 99322, + [SMALL_STATE(2436)] = 99338, + [SMALL_STATE(2437)] = 99354, + [SMALL_STATE(2438)] = 99370, + [SMALL_STATE(2439)] = 99386, + [SMALL_STATE(2440)] = 99402, + [SMALL_STATE(2441)] = 99416, + [SMALL_STATE(2442)] = 99430, + [SMALL_STATE(2443)] = 99446, + [SMALL_STATE(2444)] = 99462, + [SMALL_STATE(2445)] = 99478, + [SMALL_STATE(2446)] = 99494, + [SMALL_STATE(2447)] = 99508, + [SMALL_STATE(2448)] = 99522, + [SMALL_STATE(2449)] = 99538, + [SMALL_STATE(2450)] = 99554, + [SMALL_STATE(2451)] = 99570, + [SMALL_STATE(2452)] = 99584, + [SMALL_STATE(2453)] = 99600, + [SMALL_STATE(2454)] = 99616, + [SMALL_STATE(2455)] = 99632, + [SMALL_STATE(2456)] = 99648, + [SMALL_STATE(2457)] = 99662, + [SMALL_STATE(2458)] = 99678, + [SMALL_STATE(2459)] = 99694, + [SMALL_STATE(2460)] = 99708, + [SMALL_STATE(2461)] = 99722, + [SMALL_STATE(2462)] = 99736, + [SMALL_STATE(2463)] = 99750, + [SMALL_STATE(2464)] = 99764, + [SMALL_STATE(2465)] = 99780, + [SMALL_STATE(2466)] = 99794, + [SMALL_STATE(2467)] = 99810, + [SMALL_STATE(2468)] = 99826, + [SMALL_STATE(2469)] = 99842, + [SMALL_STATE(2470)] = 99856, + [SMALL_STATE(2471)] = 99872, + [SMALL_STATE(2472)] = 99888, + [SMALL_STATE(2473)] = 99902, + [SMALL_STATE(2474)] = 99918, + [SMALL_STATE(2475)] = 99934, + [SMALL_STATE(2476)] = 99950, + [SMALL_STATE(2477)] = 99964, + [SMALL_STATE(2478)] = 99980, + [SMALL_STATE(2479)] = 99994, + [SMALL_STATE(2480)] = 100008, + [SMALL_STATE(2481)] = 100024, + [SMALL_STATE(2482)] = 100040, + [SMALL_STATE(2483)] = 100054, + [SMALL_STATE(2484)] = 100068, + [SMALL_STATE(2485)] = 100082, + [SMALL_STATE(2486)] = 100098, + [SMALL_STATE(2487)] = 100112, + [SMALL_STATE(2488)] = 100126, + [SMALL_STATE(2489)] = 100140, + [SMALL_STATE(2490)] = 100154, + [SMALL_STATE(2491)] = 100170, + [SMALL_STATE(2492)] = 100184, + [SMALL_STATE(2493)] = 100198, + [SMALL_STATE(2494)] = 100212, + [SMALL_STATE(2495)] = 100228, + [SMALL_STATE(2496)] = 100244, + [SMALL_STATE(2497)] = 100260, + [SMALL_STATE(2498)] = 100274, + [SMALL_STATE(2499)] = 100290, + [SMALL_STATE(2500)] = 100306, + [SMALL_STATE(2501)] = 100322, + [SMALL_STATE(2502)] = 100336, + [SMALL_STATE(2503)] = 100352, + [SMALL_STATE(2504)] = 100368, + [SMALL_STATE(2505)] = 100384, + [SMALL_STATE(2506)] = 100398, + [SMALL_STATE(2507)] = 100412, + [SMALL_STATE(2508)] = 100428, + [SMALL_STATE(2509)] = 100444, + [SMALL_STATE(2510)] = 100458, + [SMALL_STATE(2511)] = 100472, + [SMALL_STATE(2512)] = 100486, + [SMALL_STATE(2513)] = 100502, + [SMALL_STATE(2514)] = 100518, + [SMALL_STATE(2515)] = 100534, + [SMALL_STATE(2516)] = 100550, + [SMALL_STATE(2517)] = 100566, + [SMALL_STATE(2518)] = 100582, + [SMALL_STATE(2519)] = 100598, + [SMALL_STATE(2520)] = 100614, + [SMALL_STATE(2521)] = 100628, + [SMALL_STATE(2522)] = 100642, + [SMALL_STATE(2523)] = 100658, + [SMALL_STATE(2524)] = 100674, + [SMALL_STATE(2525)] = 100690, + [SMALL_STATE(2526)] = 100704, + [SMALL_STATE(2527)] = 100720, + [SMALL_STATE(2528)] = 100734, + [SMALL_STATE(2529)] = 100750, + [SMALL_STATE(2530)] = 100766, + [SMALL_STATE(2531)] = 100782, + [SMALL_STATE(2532)] = 100798, + [SMALL_STATE(2533)] = 100814, + [SMALL_STATE(2534)] = 100830, + [SMALL_STATE(2535)] = 100846, + [SMALL_STATE(2536)] = 100862, + [SMALL_STATE(2537)] = 100878, + [SMALL_STATE(2538)] = 100894, + [SMALL_STATE(2539)] = 100910, + [SMALL_STATE(2540)] = 100924, + [SMALL_STATE(2541)] = 100938, + [SMALL_STATE(2542)] = 100954, + [SMALL_STATE(2543)] = 100970, + [SMALL_STATE(2544)] = 100986, + [SMALL_STATE(2545)] = 101002, + [SMALL_STATE(2546)] = 101016, + [SMALL_STATE(2547)] = 101032, + [SMALL_STATE(2548)] = 101046, + [SMALL_STATE(2549)] = 101060, + [SMALL_STATE(2550)] = 101074, + [SMALL_STATE(2551)] = 101088, + [SMALL_STATE(2552)] = 101102, + [SMALL_STATE(2553)] = 101118, + [SMALL_STATE(2554)] = 101132, + [SMALL_STATE(2555)] = 101148, + [SMALL_STATE(2556)] = 101164, + [SMALL_STATE(2557)] = 101178, + [SMALL_STATE(2558)] = 101192, + [SMALL_STATE(2559)] = 101206, + [SMALL_STATE(2560)] = 101222, + [SMALL_STATE(2561)] = 101238, + [SMALL_STATE(2562)] = 101254, + [SMALL_STATE(2563)] = 101268, + [SMALL_STATE(2564)] = 101284, + [SMALL_STATE(2565)] = 101300, + [SMALL_STATE(2566)] = 101314, + [SMALL_STATE(2567)] = 101328, + [SMALL_STATE(2568)] = 101344, + [SMALL_STATE(2569)] = 101360, + [SMALL_STATE(2570)] = 101376, + [SMALL_STATE(2571)] = 101392, + [SMALL_STATE(2572)] = 101408, + [SMALL_STATE(2573)] = 101424, + [SMALL_STATE(2574)] = 101438, + [SMALL_STATE(2575)] = 101454, + [SMALL_STATE(2576)] = 101470, + [SMALL_STATE(2577)] = 101486, + [SMALL_STATE(2578)] = 101500, + [SMALL_STATE(2579)] = 101514, + [SMALL_STATE(2580)] = 101530, + [SMALL_STATE(2581)] = 101546, + [SMALL_STATE(2582)] = 101562, + [SMALL_STATE(2583)] = 101576, + [SMALL_STATE(2584)] = 101590, + [SMALL_STATE(2585)] = 101604, + [SMALL_STATE(2586)] = 101618, + [SMALL_STATE(2587)] = 101632, + [SMALL_STATE(2588)] = 101648, + [SMALL_STATE(2589)] = 101664, + [SMALL_STATE(2590)] = 101678, + [SMALL_STATE(2591)] = 101692, + [SMALL_STATE(2592)] = 101706, + [SMALL_STATE(2593)] = 101722, + [SMALL_STATE(2594)] = 101738, + [SMALL_STATE(2595)] = 101754, + [SMALL_STATE(2596)] = 101768, + [SMALL_STATE(2597)] = 101782, + [SMALL_STATE(2598)] = 101796, + [SMALL_STATE(2599)] = 101812, + [SMALL_STATE(2600)] = 101826, + [SMALL_STATE(2601)] = 101842, + [SMALL_STATE(2602)] = 101858, + [SMALL_STATE(2603)] = 101872, + [SMALL_STATE(2604)] = 101888, + [SMALL_STATE(2605)] = 101902, + [SMALL_STATE(2606)] = 101916, + [SMALL_STATE(2607)] = 101930, + [SMALL_STATE(2608)] = 101946, + [SMALL_STATE(2609)] = 101962, + [SMALL_STATE(2610)] = 101976, + [SMALL_STATE(2611)] = 101992, + [SMALL_STATE(2612)] = 102008, + [SMALL_STATE(2613)] = 102022, + [SMALL_STATE(2614)] = 102036, + [SMALL_STATE(2615)] = 102052, + [SMALL_STATE(2616)] = 102066, + [SMALL_STATE(2617)] = 102080, + [SMALL_STATE(2618)] = 102094, + [SMALL_STATE(2619)] = 102108, + [SMALL_STATE(2620)] = 102124, + [SMALL_STATE(2621)] = 102140, + [SMALL_STATE(2622)] = 102154, + [SMALL_STATE(2623)] = 102168, + [SMALL_STATE(2624)] = 102184, + [SMALL_STATE(2625)] = 102198, + [SMALL_STATE(2626)] = 102214, + [SMALL_STATE(2627)] = 102228, + [SMALL_STATE(2628)] = 102244, + [SMALL_STATE(2629)] = 102258, + [SMALL_STATE(2630)] = 102274, + [SMALL_STATE(2631)] = 102290, + [SMALL_STATE(2632)] = 102306, + [SMALL_STATE(2633)] = 102320, + [SMALL_STATE(2634)] = 102334, + [SMALL_STATE(2635)] = 102348, + [SMALL_STATE(2636)] = 102362, + [SMALL_STATE(2637)] = 102376, + [SMALL_STATE(2638)] = 102392, + [SMALL_STATE(2639)] = 102408, + [SMALL_STATE(2640)] = 102422, + [SMALL_STATE(2641)] = 102436, + [SMALL_STATE(2642)] = 102450, + [SMALL_STATE(2643)] = 102464, + [SMALL_STATE(2644)] = 102480, + [SMALL_STATE(2645)] = 102494, + [SMALL_STATE(2646)] = 102508, + [SMALL_STATE(2647)] = 102524, + [SMALL_STATE(2648)] = 102538, + [SMALL_STATE(2649)] = 102552, + [SMALL_STATE(2650)] = 102566, + [SMALL_STATE(2651)] = 102580, + [SMALL_STATE(2652)] = 102596, + [SMALL_STATE(2653)] = 102612, + [SMALL_STATE(2654)] = 102628, + [SMALL_STATE(2655)] = 102642, + [SMALL_STATE(2656)] = 102658, + [SMALL_STATE(2657)] = 102674, + [SMALL_STATE(2658)] = 102690, + [SMALL_STATE(2659)] = 102706, + [SMALL_STATE(2660)] = 102722, + [SMALL_STATE(2661)] = 102738, + [SMALL_STATE(2662)] = 102754, + [SMALL_STATE(2663)] = 102770, + [SMALL_STATE(2664)] = 102784, + [SMALL_STATE(2665)] = 102800, + [SMALL_STATE(2666)] = 102816, + [SMALL_STATE(2667)] = 102832, + [SMALL_STATE(2668)] = 102848, + [SMALL_STATE(2669)] = 102864, + [SMALL_STATE(2670)] = 102880, + [SMALL_STATE(2671)] = 102896, + [SMALL_STATE(2672)] = 102912, + [SMALL_STATE(2673)] = 102928, + [SMALL_STATE(2674)] = 102944, + [SMALL_STATE(2675)] = 102960, + [SMALL_STATE(2676)] = 102976, + [SMALL_STATE(2677)] = 102992, + [SMALL_STATE(2678)] = 103008, + [SMALL_STATE(2679)] = 103024, + [SMALL_STATE(2680)] = 103040, + [SMALL_STATE(2681)] = 103056, + [SMALL_STATE(2682)] = 103072, + [SMALL_STATE(2683)] = 103088, + [SMALL_STATE(2684)] = 103104, + [SMALL_STATE(2685)] = 103120, + [SMALL_STATE(2686)] = 103136, + [SMALL_STATE(2687)] = 103152, + [SMALL_STATE(2688)] = 103168, + [SMALL_STATE(2689)] = 103182, + [SMALL_STATE(2690)] = 103198, + [SMALL_STATE(2691)] = 103214, + [SMALL_STATE(2692)] = 103230, + [SMALL_STATE(2693)] = 103246, + [SMALL_STATE(2694)] = 103260, + [SMALL_STATE(2695)] = 103274, + [SMALL_STATE(2696)] = 103288, + [SMALL_STATE(2697)] = 103304, + [SMALL_STATE(2698)] = 103320, + [SMALL_STATE(2699)] = 103336, + [SMALL_STATE(2700)] = 103350, + [SMALL_STATE(2701)] = 103364, + [SMALL_STATE(2702)] = 103380, + [SMALL_STATE(2703)] = 103394, + [SMALL_STATE(2704)] = 103408, + [SMALL_STATE(2705)] = 103424, + [SMALL_STATE(2706)] = 103440, + [SMALL_STATE(2707)] = 103456, + [SMALL_STATE(2708)] = 103470, + [SMALL_STATE(2709)] = 103486, + [SMALL_STATE(2710)] = 103502, + [SMALL_STATE(2711)] = 103516, + [SMALL_STATE(2712)] = 103530, + [SMALL_STATE(2713)] = 103544, + [SMALL_STATE(2714)] = 103560, + [SMALL_STATE(2715)] = 103574, + [SMALL_STATE(2716)] = 103588, + [SMALL_STATE(2717)] = 103604, + [SMALL_STATE(2718)] = 103620, + [SMALL_STATE(2719)] = 103636, + [SMALL_STATE(2720)] = 103652, + [SMALL_STATE(2721)] = 103668, + [SMALL_STATE(2722)] = 103684, + [SMALL_STATE(2723)] = 103698, + [SMALL_STATE(2724)] = 103712, + [SMALL_STATE(2725)] = 103726, + [SMALL_STATE(2726)] = 103740, + [SMALL_STATE(2727)] = 103754, + [SMALL_STATE(2728)] = 103770, + [SMALL_STATE(2729)] = 103786, + [SMALL_STATE(2730)] = 103800, + [SMALL_STATE(2731)] = 103813, + [SMALL_STATE(2732)] = 103826, + [SMALL_STATE(2733)] = 103839, + [SMALL_STATE(2734)] = 103852, + [SMALL_STATE(2735)] = 103865, + [SMALL_STATE(2736)] = 103878, + [SMALL_STATE(2737)] = 103891, + [SMALL_STATE(2738)] = 103904, + [SMALL_STATE(2739)] = 103917, + [SMALL_STATE(2740)] = 103930, + [SMALL_STATE(2741)] = 103943, + [SMALL_STATE(2742)] = 103956, + [SMALL_STATE(2743)] = 103969, + [SMALL_STATE(2744)] = 103982, + [SMALL_STATE(2745)] = 103995, + [SMALL_STATE(2746)] = 104008, + [SMALL_STATE(2747)] = 104021, + [SMALL_STATE(2748)] = 104034, + [SMALL_STATE(2749)] = 104047, + [SMALL_STATE(2750)] = 104060, + [SMALL_STATE(2751)] = 104073, + [SMALL_STATE(2752)] = 104086, + [SMALL_STATE(2753)] = 104099, + [SMALL_STATE(2754)] = 104112, + [SMALL_STATE(2755)] = 104125, + [SMALL_STATE(2756)] = 104138, + [SMALL_STATE(2757)] = 104151, + [SMALL_STATE(2758)] = 104164, + [SMALL_STATE(2759)] = 104177, + [SMALL_STATE(2760)] = 104190, + [SMALL_STATE(2761)] = 104203, + [SMALL_STATE(2762)] = 104216, + [SMALL_STATE(2763)] = 104229, + [SMALL_STATE(2764)] = 104242, + [SMALL_STATE(2765)] = 104255, + [SMALL_STATE(2766)] = 104268, + [SMALL_STATE(2767)] = 104281, + [SMALL_STATE(2768)] = 104294, + [SMALL_STATE(2769)] = 104307, + [SMALL_STATE(2770)] = 104320, + [SMALL_STATE(2771)] = 104333, + [SMALL_STATE(2772)] = 104346, + [SMALL_STATE(2773)] = 104359, + [SMALL_STATE(2774)] = 104372, + [SMALL_STATE(2775)] = 104385, + [SMALL_STATE(2776)] = 104398, + [SMALL_STATE(2777)] = 104411, + [SMALL_STATE(2778)] = 104424, + [SMALL_STATE(2779)] = 104437, + [SMALL_STATE(2780)] = 104450, + [SMALL_STATE(2781)] = 104463, + [SMALL_STATE(2782)] = 104476, + [SMALL_STATE(2783)] = 104489, + [SMALL_STATE(2784)] = 104502, + [SMALL_STATE(2785)] = 104515, + [SMALL_STATE(2786)] = 104528, + [SMALL_STATE(2787)] = 104541, + [SMALL_STATE(2788)] = 104554, + [SMALL_STATE(2789)] = 104567, + [SMALL_STATE(2790)] = 104580, + [SMALL_STATE(2791)] = 104593, + [SMALL_STATE(2792)] = 104606, + [SMALL_STATE(2793)] = 104619, + [SMALL_STATE(2794)] = 104632, + [SMALL_STATE(2795)] = 104645, + [SMALL_STATE(2796)] = 104658, + [SMALL_STATE(2797)] = 104671, + [SMALL_STATE(2798)] = 104684, + [SMALL_STATE(2799)] = 104697, + [SMALL_STATE(2800)] = 104710, + [SMALL_STATE(2801)] = 104723, + [SMALL_STATE(2802)] = 104736, + [SMALL_STATE(2803)] = 104749, + [SMALL_STATE(2804)] = 104762, + [SMALL_STATE(2805)] = 104775, + [SMALL_STATE(2806)] = 104788, + [SMALL_STATE(2807)] = 104801, + [SMALL_STATE(2808)] = 104814, + [SMALL_STATE(2809)] = 104827, + [SMALL_STATE(2810)] = 104840, + [SMALL_STATE(2811)] = 104853, + [SMALL_STATE(2812)] = 104866, + [SMALL_STATE(2813)] = 104879, + [SMALL_STATE(2814)] = 104892, + [SMALL_STATE(2815)] = 104905, + [SMALL_STATE(2816)] = 104918, + [SMALL_STATE(2817)] = 104931, + [SMALL_STATE(2818)] = 104944, + [SMALL_STATE(2819)] = 104957, + [SMALL_STATE(2820)] = 104970, + [SMALL_STATE(2821)] = 104983, + [SMALL_STATE(2822)] = 104996, + [SMALL_STATE(2823)] = 105009, + [SMALL_STATE(2824)] = 105022, + [SMALL_STATE(2825)] = 105035, + [SMALL_STATE(2826)] = 105048, + [SMALL_STATE(2827)] = 105061, + [SMALL_STATE(2828)] = 105074, + [SMALL_STATE(2829)] = 105087, + [SMALL_STATE(2830)] = 105100, + [SMALL_STATE(2831)] = 105113, + [SMALL_STATE(2832)] = 105126, + [SMALL_STATE(2833)] = 105139, + [SMALL_STATE(2834)] = 105152, + [SMALL_STATE(2835)] = 105165, + [SMALL_STATE(2836)] = 105178, + [SMALL_STATE(2837)] = 105191, + [SMALL_STATE(2838)] = 105204, + [SMALL_STATE(2839)] = 105217, + [SMALL_STATE(2840)] = 105230, + [SMALL_STATE(2841)] = 105243, + [SMALL_STATE(2842)] = 105256, + [SMALL_STATE(2843)] = 105269, + [SMALL_STATE(2844)] = 105282, + [SMALL_STATE(2845)] = 105295, + [SMALL_STATE(2846)] = 105308, + [SMALL_STATE(2847)] = 105321, + [SMALL_STATE(2848)] = 105334, + [SMALL_STATE(2849)] = 105347, + [SMALL_STATE(2850)] = 105360, + [SMALL_STATE(2851)] = 105373, + [SMALL_STATE(2852)] = 105386, + [SMALL_STATE(2853)] = 105399, + [SMALL_STATE(2854)] = 105412, + [SMALL_STATE(2855)] = 105425, + [SMALL_STATE(2856)] = 105438, + [SMALL_STATE(2857)] = 105451, + [SMALL_STATE(2858)] = 105464, + [SMALL_STATE(2859)] = 105477, + [SMALL_STATE(2860)] = 105490, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1038), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(426), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1659), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1714), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(501), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1716), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2651), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2683), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2091), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(193), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(323), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2295), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(113), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2296), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2297), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2090), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2089), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2300), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(235), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(258), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(683), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(120), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(129), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2439), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1832), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1814), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(452), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1999), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(256), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(325), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2701), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(330), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1983), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1981), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1767), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1312), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2688), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1322), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2042), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1040), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 59), - [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 101), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1034), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(427), + [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1685), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2337), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1732), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(523), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1746), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2696), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2728), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2093), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(183), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(411), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2341), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(79), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2342), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2092), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2090), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2345), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(234), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(291), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(762), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(120), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(129), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2553), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1850), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1970), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1941), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1832), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(451), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1921), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(297), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(337), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2759), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(343), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1787), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1285), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2738), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1341), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2163), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1032), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 100), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 59), [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 37), [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1023), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(427), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1024), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(433), [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1663), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1728), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(520), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1735), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2207), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2210), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2023), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2226), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(73), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2241), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2264), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2033), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2036), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2400), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(233), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(250), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(967), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1831), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(444), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1986), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1030), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1676), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2197), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1742), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(515), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1747), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2267), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2297), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2115), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2360), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(105), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2386), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2046), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2043), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2484), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(236), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(289), + [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(909), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1877), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(454), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1924), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1042), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 72), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 72), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 72), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 77), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 77), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 77), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 81), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 81), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 81), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 36), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 36), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 36), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 99), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 99), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 99), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 93), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 93), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 89), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 89), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 89), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 70), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 70), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 89), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, .production_id = 89), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, .production_id = 89), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 77), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 99), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 36), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 89), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 89), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 72), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 81), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 69), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 69), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 98), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 98), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 98), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 92), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 92), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 88), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 88), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 88), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 88), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, .production_id = 88), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, .production_id = 88), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 80), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 80), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 80), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 76), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 76), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 76), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 71), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 71), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 71), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 36), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 36), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 36), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 71), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 98), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 36), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 88), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 76), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 80), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 88), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(101), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(99), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1650), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1292] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(209), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(101), - [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(373), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1657), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1306] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(220), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(99), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(301), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(209), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(247), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(366), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(374), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 19), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 19), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 27), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 104), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 23), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 27), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 25), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 61), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 77), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 60), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 23), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 54), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 54), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 55), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 52), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 30), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 30), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 29), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 28), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 26), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, .production_id = 62), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 104), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 63), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 22), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 22), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 20), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 99), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 13), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 103), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 93), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 89), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 36), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 80), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 89), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 97), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 81), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 92), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 72), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 13), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 20), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 22), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 25), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 26), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 28), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 29), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 30), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 30), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 52), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 54), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 55), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 54), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(220), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 6), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(273), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 19), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(392), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(340), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 6), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 19), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 28), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 6), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 103), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 28), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 26), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 103), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 79), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 13), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 20), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 21), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 25), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 6), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 29), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 30), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 30), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 52), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 54), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 55), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 54), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 20), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 60), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 61), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, .production_id = 62), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 63), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 36), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 54), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 71), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 76), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 91), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 80), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 96), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 88), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 88), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 92), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 102), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 98), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 23), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 23), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 63), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 26), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 98), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 102), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 92), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 88), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 88), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 96), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 80), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 91), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 76), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 71), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 54), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 79), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 36), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, .production_id = 62), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 61), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 60), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 23), [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 22), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 60), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 61), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, .production_id = 62), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 99), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 103), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 63), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 93), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 89), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 89), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 36), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 97), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 80), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 92), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 77), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 72), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 81), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 91), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 91), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(159), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 44), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 44), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 45), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 45), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 46), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 46), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 47), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 47), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 79), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 79), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 96), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 102), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 95), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 106), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(356), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(248), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(401), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 19), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 19), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 18), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 7), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 7), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 51), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 51), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 49), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 49), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 50), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 50), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 43), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 39), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 39), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 17), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 17), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 40), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 40), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, .production_id = 31), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, .production_id = 31), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 20), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 54), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 54), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 55), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 52), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 30), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 30), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 29), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 25), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 23), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 21), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 20), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 13), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 44), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 44), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 45), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 45), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 46), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 46), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 47), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 47), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 78), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 78), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 90), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 90), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(150), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 94), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 95), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 105), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 101), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(405), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(357), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(274), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 19), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 19), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 7), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 7), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 18), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 48), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 48), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 49), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 49), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 50), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 50), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 43), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 51), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 51), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 17), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 17), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 16), [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 16), [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 15), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 11), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 11), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 48), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 48), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 11), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 11), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 64), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 64), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 10), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 10), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 73), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 73), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 74), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 74), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 75), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 75), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 76), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 76), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 74), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 74), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 78), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 78), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 31), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 31), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 82), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 82), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 37), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 37), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 88), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 88), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 90), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, .production_id = 38), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, .production_id = 38), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 6), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 6), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 42), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 42), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 41), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 59), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 59), SHIFT(421), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), REDUCE(sym_assignment_expression, 3, .production_id = 15), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), REDUCE(sym_assignment_expression, 3, .production_id = 41), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 41), REDUCE(sym_assignment_expression, 3, .production_id = 41), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 41), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 41), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 18), - [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 57), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 59), SHIFT(418), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1965), - [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1636), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1558), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(354), - [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(2439), - [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1523), - [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1896), - [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1897), - [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1961), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(2131), - [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1513), - [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1617), - [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1528), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 4), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 89), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 99), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 77), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 100), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 105), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 6), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 34), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 33), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 44), - [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), SHIFT_REPEAT(1554), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(2137), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 94), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 84), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 58), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 11), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 11), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 11), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 11), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 10), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 10), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, .production_id = 31), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, .production_id = 31), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 37), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 37), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 42), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 42), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 41), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 64), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 64), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 6), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 6), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 72), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 72), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 73), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 73), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 74), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 74), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 75), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 75), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 73), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 73), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 40), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 40), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 77), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 77), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 89), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 39), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 39), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 31), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 31), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 87), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 87), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 81), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 81), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, .production_id = 38), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, .production_id = 38), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 59), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 59), SHIFT(418), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), REDUCE(sym_assignment_expression, 3, .production_id = 41), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 41), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), REDUCE(sym_assignment_expression, 3, .production_id = 15), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 41), REDUCE(sym_assignment_expression, 3, .production_id = 41), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 41), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 18), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 57), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 59), SHIFT(302), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1971), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1672), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1592), + [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(396), + [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(2553), + [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1932), + [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1892), + [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1541), + [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1908), + [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(2170), + [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1524), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1610), + [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1544), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 4), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 93), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 99), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 58), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 104), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 6), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 88), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 83), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), + [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), SHIFT_REPEAT(1575), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 34), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 33), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 76), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 98), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 44), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(2109), [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(2131), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 9), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(228), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1856), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1798), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1741), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(230), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 18), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2759), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(246), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 69), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 67), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, .production_id = 35), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 66), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(343), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 86), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(1893), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(245), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 64), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(356), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(401), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 32), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 31), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, .dynamic_precedence = -1), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 44), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 1), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 21), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [3382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(2042), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), - [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(218), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2095), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2106), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(331), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(1715), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(1786), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1787), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(224), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 57), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(2183), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 9), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(1490), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(1492), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(199), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 94), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 20), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 58), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 66), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 68), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 83), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 77), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 85), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 84), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 83), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 105), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 87), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 89), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 98), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 99), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 100), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4237] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(2170), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 9), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(226), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1771), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1767), + [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1874), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1750), + [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(231), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 18), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 1), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 31), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 44), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2809), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(269), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 64), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, .production_id = 35), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 68), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, .dynamic_precedence = -1), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 66), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(1895), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(284), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(366), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 85), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), + [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(2163), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(405), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(357), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 22), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 32), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 44), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(200), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2), SHIFT_REPEAT(2044), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2), SHIFT_REPEAT(2044), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2), SHIFT_REPEAT(2175), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2), SHIFT_REPEAT(2175), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2130), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(333), + [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2181), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(1744), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 1), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 1), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 9), + [3781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(195), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(2241), + [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(228), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(1777), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 57), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1814), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(1503), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 20), + [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(1505), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 1), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 1), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 98), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 99), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 104), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 93), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 58), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 88), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 86), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 84), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 82), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 83), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 97), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 76), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 82), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 44), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 67), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4346] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), }; enum ts_external_scanner_symbol_identifiers { From 2ee5450fb0ecde2d27b1b635ccd378b8278d71c0 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 19:23:15 -0500 Subject: [PATCH 7/7] 0.20.3 --- Cargo.toml | 2 +- bindings/rust/README.md | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e1f4790c..8600b38c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-javascript" description = "JavaScript grammar for tree-sitter" -version = "0.20.2" +version = "0.20.3" authors = [ "Max Brunsfeld ", "Douglas Creager ", diff --git a/bindings/rust/README.md b/bindings/rust/README.md index 10ed021a..7b72de7c 100644 --- a/bindings/rust/README.md +++ b/bindings/rust/README.md @@ -9,7 +9,7 @@ way.) ```toml [dependencies] tree-sitter = "~0.20.10" -tree-sitter-javascript = "~0.20.2" +tree-sitter-javascript = "~0.20.3" ``` Typically, you will use the [language][language func] function to add this diff --git a/package.json b/package.json index d235b9a5..a7c081f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-javascript", - "version": "0.20.2", + "version": "0.20.3", "description": "JavaScript grammar for tree-sitter", "main": "bindings/node", "keywords": [